From e64c5d8641494715296916667922ffefeb6417da Mon Sep 17 00:00:00 2001 From: Nilesh Gupta Date: Mon, 19 Apr 2021 03:06:36 +0530 Subject: [PATCH] Tests tested in playback mode TestNewA2AManagedDiskReplicationConfigWithCmk A2AZoneToZoneRecoveryPlanReplication A2ATestNewContainer A2ARemoveReplicationProtectedItemDisk A2ARecoveryPlanReplication A2ANewAsrFabric vmss test Adding tests TestNewA2AManagedDiskReplicationConfig TestNewA2ADiskReplicationConfig adding ppg test for a2a --- .../ScenarioTests/A2A/A2ATestsHelper.ps1 | 8 +- .../ScenarioTests/A2A/AsrA2ATests.cs | 16 +- .../ScenarioTests/A2A/AsrA2ATests.ps1 | 199 +- .../A2ANewAsrFabric.json | 947 +- .../A2ARecoveryPlanReplication.json | 13255 ++++---- ...A2ARemoveReplicationProtectedItemDisk.json | 21202 +++++++------ ...A2AReplicateProximityPlacementGroupVm.json | 16377 +++++----- .../A2ATestNewContainer.json | 1985 +- .../A2AVMSSReplication.json | 25826 ++++++++++++++++ .../A2AZoneToZoneRecoveryPlanReplication.json | 13753 ++++---- .../TestNewA2ADiskReplicationConfig.json | 3990 ++- ...estNewA2AManagedDiskReplicationConfig.json | 3923 ++- ...2AManagedDiskReplicationConfigWithCmk.json | 3251 +- 13 files changed, 67629 insertions(+), 37103 deletions(-) create mode 100644 src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2AVMSSReplication.json diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/A2A/A2ATestsHelper.ps1 b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/A2A/A2ATestsHelper.ps1 index a91a7f495dad..405d30f99f2e 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/A2A/A2ATestsHelper.ps1 +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/A2A/A2ATestsHelper.ps1 @@ -27,21 +27,21 @@ function getVaultRg{ function getVaultRgLocation{ - return "eastus" + return "WestCentralUS" } function getVaultLocation{ - return "eastus" + return "WestCentralUS" } function getPrimaryLocation { - return "westus" + return "EastUS" } function getPrimaryZoneLocation { - return "southeastasia" + return "EastUS" } function getPrimaryZone diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/A2A/AsrA2ATests.cs b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/A2A/AsrA2ATests.cs index 5d694124f7fb..bdb6bbb88197 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/A2A/AsrA2ATests.cs +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/A2A/AsrA2ATests.cs @@ -61,22 +61,22 @@ public void TestNewA2AManagedDiskReplicationConfigWithCmk() this.RunPowerShellTest(_logger, Constants.NewModel, "Test-NewA2AManagedDiskReplicationConfigurationWithCmk"); } -#if NETSTANDARD - [Fact(Skip = "Needs investigation, TestManagementClientHelper class wasn't initialized with the ResourceManagementClient client.")] -#else +//#if NETSTANDARD +// [Fact(Skip = "Needs investigation, TestManagementClientHelper class wasn't initialized with the ResourceManagementClient client.")] +//#else [Fact] -#endif +//#endif [Trait(Category.AcceptanceType, Category.CheckIn)] public void A2ANewAsrFabric() { this.RunPowerShellTest(_logger, Constants.NewModel, "Test-NewAsrFabric"); } -#if NETSTANDARD - [Fact(Skip = "Needs investigation, TestManagementClientHelper class wasn't initialized with the ResourceManagementClient client.")] -#else +//#if NETSTANDARD +// [Fact(Skip = "Needs investigation, TestManagementClientHelper class wasn't initialized with the ResourceManagementClient client.")] +//#else [Fact] -#endif +//#endif [Trait(Category.AcceptanceType, Category.CheckIn)] public void A2ATestNewContainer() { diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/A2A/AsrA2ATests.ps1 b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/A2A/AsrA2ATests.ps1 index cfe5110f4e10..06b7644e2469 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/A2A/AsrA2ATests.ps1 +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/ScenarioTests/A2A/AsrA2ATests.ps1 @@ -23,6 +23,71 @@ #> function Test-NewA2ADiskReplicationConfiguration { + param([string] $seed = '106') + + $primaryPolicyName = getPrimaryPolicy + $recoveryPolicyName = getRecoveryPolicy + + $primaryContainerMappingName = getPrimaryContainerMapping + $recoveryContainerMappingName = getRecoveryContainerMapping + + $primaryContainerName = getPrimaryContainer + $recoveryContainerName = getRecoveryContainer + $vaultRgLocation = getVaultRgLocation + $vaultName = getVaultName + $vaultLocation = getVaultLocation + $vaultRg = getVaultRg + $primaryLocation = getPrimaryLocation + $recoveryLocation = getRecoveryLocation + $primaryFabricName = getPrimaryFabric + $recoveryFabricName = getRecoveryFabric + $RecoveryReplicaDiskAccountType = "Premium_LRS" + $RecoveryTargetDiskAccountType = "Premium_LRS" + $policyName = getPrimaryPolicy + $mappingName = getPrimaryContainerMapping + $primaryNetMapping = getPrimaryNetworkMapping + + #create recovery side resources + $recRgName = getRecoveryResourceGroupName + New-AzResourceGroup -name $recRgName -location $recoveryLocation -force + [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(20 * 1000) + $RecoveryAzureNetworkId = createRecoveryNetworkId + $index = $RecoveryAzureNetworkId.IndexOf("/providers/") + $recRg = $RecoveryAzureNetworkId.Substring(0, $index) + + #create primary + $vmName = getAzureVmName + $v2VmId = createAzureVm + $logStg = createCacheStorageAccount + $vm = get-azVm -ResourceGroupName $vmName -Name $vmName + $vhdid = $vm.StorageProfile.OSDisk.ManagedDisk.Id + $index = $v2VmId.IndexOf("/providers/") + $Rg = $v2VmId.Substring(0, $index) + $PrimaryAzureNetworkId = $Rg + "/providers/Microsoft.Network/virtualNetworks/" + $vmName + + # vault Creation + New-AzResourceGroup -name $vaultRg -location $vaultRgLocation -force + [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(20 * 1000) + New-AzRecoveryServicesVault -ResourceGroupName $vaultRg -Name $vaultName -Location $vaultLocation + [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(20 * 1000) + $Vault = Get-AzRecoveryServicesVault -ResourceGroupName $vaultRg -Name $vaultName + Set-ASRVaultContext -Vault $Vault + + # fabric Creation + $fabJob = New-AzRecoveryServicesAsrFabric -Azure -Name $primaryFabricName -Location $primaryLocation + WaitForJobCompletion -JobId $fabJob.Name + $fab = Get-AzRecoveryServicesAsrFabric -Name $primaryFabricName + Assert-true { $fab.name -eq $primaryFabricName } + Assert-AreEqual $fab.FabricSpecificDetails.Location $primaryLocation + + $fabJob = New-AzRecoveryServicesAsrFabric -Azure -Name $recoveryFabricName -Location $recoveryLocation + WaitForJobCompletion -JobId $fabJob.Name + $fab = Get-AzRecoveryServicesAsrFabric -Name $recoveryFabricName + Assert-true { $fab.name -eq $recoveryFabricName } + Assert-AreEqual $fab.FabricSpecificDetails.Location $recoveryLocation + $pf = get-asrFabric -Name $primaryFabricName + $rf = get-asrFabric -Name $recoveryFabricName + $recoveryStorageAccountId = "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/a2a-rg/providers/Microsoft.Storage/storageAccounts/a2argdisks412" $logStorageAccountId = "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/ltrgp1705152333/providers/Microsoft.Storage/storageAccounts/stagingsa2name1705152333" $vhdUri = "https://powershelltestdiag414.blob.core.windows.net/vhds/pslinV2-520180112143232.vhd" @@ -42,6 +107,71 @@ function Test-NewA2ADiskReplicationConfiguration { NewA2ADiskReplicationConfiguration creation test. #> function Test-NewA2AManagedDiskReplicationConfiguration { + param([string] $seed = '105') + + $primaryPolicyName = getPrimaryPolicy + $recoveryPolicyName = getRecoveryPolicy + + $primaryContainerMappingName = getPrimaryContainerMapping + $recoveryContainerMappingName = getRecoveryContainerMapping + + $primaryContainerName = getPrimaryContainer + $recoveryContainerName = getRecoveryContainer + $vaultRgLocation = getVaultRgLocation + $vaultName = getVaultName + $vaultLocation = getVaultLocation + $vaultRg = getVaultRg + $primaryLocation = getPrimaryLocation + $recoveryLocation = getRecoveryLocation + $primaryFabricName = getPrimaryFabric + $recoveryFabricName = getRecoveryFabric + $RecoveryReplicaDiskAccountType = "Premium_LRS" + $RecoveryTargetDiskAccountType = "Premium_LRS" + $policyName = getPrimaryPolicy + $mappingName = getPrimaryContainerMapping + $primaryNetMapping = getPrimaryNetworkMapping + + #create recovery side resources + $recRgName = getRecoveryResourceGroupName + New-AzResourceGroup -name $recRgName -location $recoveryLocation -force + [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(20 * 1000) + $RecoveryAzureNetworkId = createRecoveryNetworkId + $index = $RecoveryAzureNetworkId.IndexOf("/providers/") + $recRg = $RecoveryAzureNetworkId.Substring(0, $index) + + #create primary + $vmName = getAzureVmName + $v2VmId = createAzureVm + $logStg = createCacheStorageAccount + $vm = get-azVm -ResourceGroupName $vmName -Name $vmName + $vhdid = $vm.StorageProfile.OSDisk.ManagedDisk.Id + $index = $v2VmId.IndexOf("/providers/") + $Rg = $v2VmId.Substring(0, $index) + $PrimaryAzureNetworkId = $Rg + "/providers/Microsoft.Network/virtualNetworks/" + $vmName + + # vault Creation + New-AzResourceGroup -name $vaultRg -location $vaultRgLocation -force + [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(20 * 1000) + New-AzRecoveryServicesVault -ResourceGroupName $vaultRg -Name $vaultName -Location $vaultLocation + [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(20 * 1000) + $Vault = Get-AzRecoveryServicesVault -ResourceGroupName $vaultRg -Name $vaultName + Set-ASRVaultContext -Vault $Vault + + # fabric Creation + $fabJob = New-AzRecoveryServicesAsrFabric -Azure -Name $primaryFabricName -Location $primaryLocation + WaitForJobCompletion -JobId $fabJob.Name + $fab = Get-AzRecoveryServicesAsrFabric -Name $primaryFabricName + Assert-true { $fab.name -eq $primaryFabricName } + Assert-AreEqual $fab.FabricSpecificDetails.Location $primaryLocation + + $fabJob = New-AzRecoveryServicesAsrFabric -Azure -Name $recoveryFabricName -Location $recoveryLocation + WaitForJobCompletion -JobId $fabJob.Name + $fab = Get-AzRecoveryServicesAsrFabric -Name $recoveryFabricName + Assert-true { $fab.name -eq $recoveryFabricName } + Assert-AreEqual $fab.FabricSpecificDetails.Location $recoveryLocation + $pf = get-asrFabric -Name $primaryFabricName + $rf = get-asrFabric -Name $recoveryFabricName + $logStorageAccountId = "fdd" $DiskId = "diskId" $RecoveryResourceGroupId = "3" @@ -144,7 +274,7 @@ function Test-NewA2AManagedDiskReplicationConfigurationWithCmk { $job = New-AzRecoveryServicesAsrProtectionContainerMapping -Name $mappingName -Policy $policy -PrimaryProtectionContainer $pc -RecoveryProtectionContainer $rc WaitForJobCompletion -JobId $job.Name $mapping = Get-AzRecoveryServicesAsrProtectionContainerMapping -Name $mappingName -ProtectionContainer $pc - + #network mapping $job = New-AzRecoveryServicesAsrNetworkMapping -AzureToAzure -Name $primaryNetMapping -PrimaryFabric $pf -PrimaryAzureNetworkId $PrimaryAzureNetworkId -RecoveryFabric $rf -RecoveryAzureNetworkId $RecoveryAzureNetworkId WaitForJobCompletion -JobId $job.Name @@ -252,7 +382,7 @@ function Test-NewContainer { #> function Test-RemoveReplicationProtectedItemDisk { - param([string] $seed = '102') + param([string] $seed = '1022') $primaryPolicyName = getPrimaryPolicy $recoveryPolicyName = getRecoveryPolicy @@ -333,7 +463,7 @@ function Test-RemoveReplicationProtectedItemDisk { $job = New-AzRecoveryServicesAsrProtectionContainerMapping -Name $mappingName -Policy $policy -PrimaryProtectionContainer $pc -RecoveryProtectionContainer $rc WaitForJobCompletion -JobId $job.Name $mapping = Get-AzRecoveryServicesAsrProtectionContainerMapping -Name $mappingName -ProtectionContainer $pc - + #network mapping $job = New-AzRecoveryServicesAsrNetworkMapping -AzureToAzure -Name $primaryNetMapping -PrimaryFabric $pf -PrimaryAzureNetworkId $PrimaryAzureNetworkId -RecoveryFabric $rf -RecoveryAzureNetworkId $RecoveryAzureNetworkId WaitForJobCompletion -JobId $job.Name @@ -343,6 +473,8 @@ function Test-RemoveReplicationProtectedItemDisk { -DiskId $vhdid -RecoveryResourceGroupId $recRg -RecoveryReplicaDiskAccountType $RecoveryReplicaDiskAccountType ` -RecoveryTargetDiskAccountType $RecoveryTargetDiskAccountType $enableDRjob = New-AzRecoveryServicesAsrReplicationProtectedItem -AzureToAzure -AzureVmId $v2VmId -Name $vmName -ProtectionContainerMapping $mapping -RecoveryResourceGroupId $recRg -AzureToAzureDiskReplicationConfiguration $v + [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(20 * 1000) + [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(20 * 1000) WaitForJobCompletion -JobId $enableDRjob.Name WaitForIRCompletion -affectedObjectId $enableDRjob.TargetObjectId @@ -377,12 +509,12 @@ function Test-RemoveReplicationProtectedItemDisk { $disk2 = New-AzRecoveryServicesAsrAzureToAzureDiskReplicationConfig -DiskId $newDisk.Id -LogStorageAccountId $storageAccount.Id -ManagedDisk -RecoveryReplicaDiskAccountType $RecoveryReplicaDiskAccountType -RecoveryResourceGroupId $pe.ProviderSpecificDetails.A2ADiskDetails[0].RecoveryResourceGroupId -RecoveryTargetDiskAccountType $RecoveryTargetDiskAccountType $addDRjob = Add-AzRecoveryServicesAsrReplicationProtectedItemDisk -ReplicationProtectedItem $pe -AzureToAzureDiskReplicationConfiguration $disk2 WaitForJobCompletion -JobId $addDRjob.Name - + #get disk to deattach Remove-AzStorageAccount -ResourceGroupName $vmName -Name $storageAccountName WaitForAddDisksIRCompletion -affectedObjectId $addDRjob.TargetObjectId -JobQueryWaitTimeInSeconds 10 -IsExpectedToPass $false [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(20 * 1000) - + $pe = Get-AzRecoveryServicesAsrReplicationProtectedItem -ProtectionContainer $pc -Name $vmName $removeDisk = $pe.ProviderSpecificDetails.A2ADiskDetails | where-object { $_.AllowedDiskLevelOperations.Count -ne 0 } @@ -402,13 +534,13 @@ function Test-RemoveReplicationProtectedItemDisk { #> function Test-ReplicateProximityPlacementGroupVm { - param([string] $seed = '910') + param([string] $seed = '9100') $primaryPolicyName = getPrimaryPolicy $recoveryPolicyName = getRecoveryPolicy - + $primaryContainerMappingName = getPrimaryContainerMapping $recoveryContainerMappingName = getRecoveryContainerMapping - + $primaryContainerName = getPrimaryContainer $recoveryContainerName = getRecoveryContainer $vaultRgLocation = getVaultRgLocation @@ -451,7 +583,7 @@ function Test-ReplicateProximityPlacementGroupVm { $index = $vm.Id.IndexOf("/providers/") $Rg = $vm.Id.Substring(0, $index) $PrimaryAzureNetworkId = $Rg + "/providers/Microsoft.Network/virtualNetworks/" + $vmName - + # vault Creation New-AzResourceGroup -name $vaultRg -location $vaultRgLocation -force [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(20 * 1000) @@ -492,7 +624,7 @@ function Test-ReplicateProximityPlacementGroupVm { $job = New-AzRecoveryServicesAsrProtectionContainerMapping -Name $mappingName -Policy $policy -PrimaryProtectionContainer $pc -RecoveryProtectionContainer $rc WaitForJobCompletion -JobId $job.Name $mapping = Get-AzRecoveryServicesAsrProtectionContainerMapping -Name $mappingName -ProtectionContainer $pc - + #network mapping $job = New-AzRecoveryServicesAsrNetworkMapping -AzureToAzure -Name $primaryNetMapping -PrimaryFabric $pf -PrimaryAzureNetworkId $PrimaryAzureNetworkId -RecoveryFabric $rf -RecoveryAzureNetworkId $RecoveryAzureNetworkId WaitForJobCompletion -JobId $job.Name @@ -517,13 +649,13 @@ function Test-ReplicateProximityPlacementGroupVm { #Validate PPG Set in replicated vm properties $pe = Get-AzRecoveryServicesAsrReplicationProtectedItem -ProtectionContainer $pc -Name $vmName Assert-NotNull($pe.providerSpecificDetails.RecoveryProximityPlacementGroupId) - - #Update Vmpropertie + + #Update Vmproperties $updateDRjob = Set-AzRecoveryServicesAsrReplicationProtectedItem -InputObject $pe -RecoveryProximityPlacementGroupId $recPpg1.Id WaitForJobCompletion -JobId $updateDRjob.Name $pe = Get-AzRecoveryServicesAsrReplicationProtectedItem -ProtectionContainer $pc -Name $vmName Assert-NotNull($pe.providerSpecificDetails.RecoveryProximityPlacementGroupId) - + #Failover $failoverjob = Start-AzRecoveryServicesAsrUnPlannedFailoverJob -ReplicationProtectedItem $pe -Direction PrimaryToRecovery -PerformSourceSideAction WaitForJobCompletion -JobId $failoverjob.Name @@ -580,7 +712,7 @@ function Test-VMNicConfig { $RecoveryAzureNetworkId = createRecoveryNetworkId $index = $RecoveryAzureNetworkId.IndexOf("/providers/") $recRg = $RecoveryAzureNetworkId.Substring(0, $index) - + #create primary $vmName = getAzureVmName New-AzResourceGroup -name $vmName -location $primaryLocation -force @@ -594,7 +726,7 @@ function Test-VMNicConfig { $index = $vm.Id.IndexOf("/providers/") $Rg = $vm.Id.Substring(0, $index) $PrimaryAzureNetworkId = $Rg + "/providers/Microsoft.Network/virtualNetworks/" + $vmName - + # vault Creation New-AzResourceGroup -name $vaultRg -location $vaultRgLocation -force [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(20 * 1000) @@ -635,7 +767,7 @@ function Test-VMNicConfig { $job = New-AzRecoveryServicesAsrProtectionContainerMapping -Name $mappingName -Policy $policy -PrimaryProtectionContainer $pc -RecoveryProtectionContainer $rc WaitForJobCompletion -JobId $job.Name $mapping = Get-AzRecoveryServicesAsrProtectionContainerMapping -Name $mappingName -ProtectionContainer $pc - + #network mapping $job = New-AzRecoveryServicesAsrNetworkMapping -AzureToAzure -Name $primaryNetMapping -PrimaryFabric $pf -PrimaryAzureNetworkId $PrimaryAzureNetworkId -RecoveryFabric $rf -RecoveryAzureNetworkId $RecoveryAzureNetworkId WaitForJobCompletion -JobId $job.Name @@ -694,9 +826,9 @@ function Test-ZoneToZoneRecoveryPlanReplication { $primaryContainerName = getPrimaryContainer $recoveryContainerName = getRecoveryContainer - $vaultRgLocation = getPrimaryZoneLocation + $vaultRgLocation = getVaultRgLocation $vaultName = getVaultName - $vaultLocation = getPrimaryZoneLocation + $vaultLocation = getVaultLocation $vaultRg = getVaultRg $primaryLocation = getPrimaryZoneLocation $recoveryLocation = getPrimaryZoneLocation @@ -729,7 +861,7 @@ function Test-ZoneToZoneRecoveryPlanReplication { $index = $vm.Id.IndexOf("/providers/") $Rg = $vm.Id.Substring(0, $index) $PrimaryAzureNetworkId = $Rg + "/providers/Microsoft.Network/virtualNetworks/" + $vmName - + # vault Creation New-AzResourceGroup -name $vaultRg -location $vaultRgLocation -force [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(20 * 1000) @@ -772,7 +904,7 @@ function Test-ZoneToZoneRecoveryPlanReplication { $enableDRjob = New-AzRecoveryServicesAsrReplicationProtectedItem -AzureToAzure -AzureVmId $vm.Id -Name $vmName -ProtectionContainerMapping $mapping -RecoveryResourceGroupId $recRg -AzureToAzureDiskReplicationConfiguration $v -RecoveryAvailabilityZone $recZone -RecoveryAzureNetworkId $RecoveryAzureNetworkId -RecoveryAzureSubnetName "frontendSubnet" WaitForJobCompletion -JobId $enableDRjob.Name WaitForIRCompletion -affectedObjectId $enableDRjob.TargetObjectId - + $pe = Get-AzRecoveryServicesAsrReplicationProtectedItem -ProtectionContainer $pc -Name $vmName Assert-NotNull($pe) @@ -855,7 +987,7 @@ function Test-RecoveryPlanReplication { $index = $vm.Id.IndexOf("/providers/") $Rg = $vm.Id.Substring(0, $index) $PrimaryAzureNetworkId = $Rg + "/providers/Microsoft.Network/virtualNetworks/" + $vmName - + # vault Creation New-AzResourceGroup -name $vaultRg -location $vaultRgLocation -force [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(20 * 1000) @@ -896,7 +1028,7 @@ function Test-RecoveryPlanReplication { $job = New-AzRecoveryServicesAsrProtectionContainerMapping -Name $mappingName -Policy $policy -PrimaryProtectionContainer $pc -RecoveryProtectionContainer $rc WaitForJobCompletion -JobId $job.Name $mapping = Get-AzRecoveryServicesAsrProtectionContainerMapping -Name $mappingName -ProtectionContainer $pc - + #network mapping $job = New-AzRecoveryServicesAsrNetworkMapping -AzureToAzure -Name $primaryNetMapping -PrimaryFabric $pf -PrimaryAzureNetworkId $PrimaryAzureNetworkId -RecoveryFabric $rf -RecoveryAzureNetworkId $RecoveryAzureNetworkId WaitForJobCompletion -JobId $job.Name @@ -920,7 +1052,7 @@ function Test-RecoveryPlanReplication { #Get Recovery Plan $RecoveryPlan = Get-AzRecoveryServicesAsrRecoveryPlan -Name $RecoveryPlanName Assert-NotNull($RecoveryPlan) - + #Failover $failoverjob = Start-AzRecoveryServicesAsrUnPlannedFailoverJob -RecoveryPlan $RecoveryPlan -Direction PrimaryToRecovery -PerformSourceSideAction WaitForJobCompletion -JobId $failoverjob.Name @@ -932,7 +1064,7 @@ function Test-RecoveryPlanReplication { #> function Test-VMSSReplication { - param([string] $seed = '1227') + param([string] $seed = '1228') $primaryPolicyName = getPrimaryPolicy $recoveryPolicyName = getRecoveryPolicy @@ -965,8 +1097,8 @@ function Test-VMSSReplication { $index = $RecoveryAzureNetworkId.IndexOf("/providers/") $recRg = $RecoveryAzureNetworkId.Substring(0, $index) #create virtual Machine scale set - $vmssConfig = New-AzVmssConfig -Location $recoveryLocation -PlatformFaultDomainCount 1 -SinglePlacementGroup 0 - $recVmss = new-azvmss -resourcegroupname $recRgName -vmscalesetname 'vmss-asr' -virtualmachinescaleset $vmssConfig + $vmssConfig = New-AzVmssConfig -Location $recoveryLocation -PlatformFaultDomainCount 1 -SinglePlacementGroup 0 + $recVmss = new-azvmss -resourcegroupname $recRgName -vmscalesetname 'vmss-asr' -virtualmachinescaleset $vmssConfig $recVmss1 = new-azvmss -resourcegroupname $recRgName -vmscalesetname 'vmss1-asr' -virtualmachinescaleset $vmssConfig #create primary @@ -1042,6 +1174,8 @@ function Test-VMSSReplication { -DiskId $vhdid -RecoveryResourceGroupId $recRg -RecoveryReplicaDiskAccountType $RecoveryReplicaDiskAccountType ` -RecoveryTargetDiskAccountType $RecoveryTargetDiskAccountType $enableDRjob = New-AzRecoveryServicesAsrReplicationProtectedItem -AzureToAzure -AzureVmId $vm.Id -Name $vmName -ProtectionContainerMapping $mapping -RecoveryResourceGroupId $recRg -AzureToAzureDiskReplicationConfiguration $v -RecoveryVirtualMachineScaleSetId $recVmss.Id + [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(20 * 1000) + [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(20 * 1000) WaitForJobCompletion -JobId $enableDRjob.Name WaitForIRCompletion -affectedObjectId $enableDRjob.TargetObjectId @@ -1061,17 +1195,4 @@ function Test-VMSSReplication { #Get recovery vm and verify $recvm = get-azVm -ResourceGroupName $recRgName -Name $vmName Assert-NotNull($recvm.virtualmachinescaleset.Id); - - #Switch replication - $vm = get-azVm -ResourceGroupName $vmName -Name $vmName - $vhdid = $recvm.StorageProfile.OSDisk.ManagedDisk.Id - $v = New-AzRecoveryServicesAsrAzureToAzureDiskReplicationConfig -managed -LogStorageAccountId $recLogStg ` - -DiskId $vhdid -RecoveryResourceGroupId $Rg -RecoveryReplicaDiskAccountType $RecoveryReplicaDiskAccountType ` - -RecoveryTargetDiskAccountType $RecoveryTargetDiskAccountType - [Microsoft.Rest.ClientRuntime.Azure.TestFramework.TestUtilities]::Wait(600 * 1000) - $Switchjob = Update-AzureRmRecoveryServicesAsrProtectionDirection -AzureToAzure -ProtectionContainerMapping $revMapping[0] -RecoveryResourceGroupId $Rg -ReplicationProtectedItem $pe -RecoveryVirtualMachineScaleSetId $vm.virtualmachinescaleset.Id -AzureToAzureDiskReplicationConfiguration $v - WaitForJobCompletion -JobId $Switchjob.Name - - $pe = Get-AzRecoveryServicesAsrReplicationProtectedItem -ProtectionContainer $rc -Name $vmName - Assert-NotNull($pe.providerSpecificDetails.RecoveryVirtualMachineScaleSetId) } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2ANewAsrFabric.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2ANewAsrFabric.json index 3a46e287f6ec..d0b1923a3868 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2ANewAsrFabric.json +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2ANewAsrFabric.json @@ -1,55 +1,48 @@ { "Entries": [ { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourcegroups/A2APowershellTestRg35?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/A2APowershellTestRg35?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], "x-ms-client-request-id": [ - "6ac8fa8d-4018-4093-abe1-db2277bedc22" + "0d553e36-5ff3-450f-adf3-6e44cffaa7fb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35\",\r\n \"name\": \"A2APowershellTestRg35\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "195" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-request-id": [ - "806144fa-f73e-4758-9ad2-7e19ca736809" + "3438650f-9743-4d28-b1f0-9ec6bb207689" ], "x-ms-correlation-request-id": [ - "806144fa-f73e-4758-9ad2-7e19ca736809" + "3438650f-9743-4d28-b1f0-9ec6bb207689" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123458Z:806144fa-f73e-4758-9ad2-7e19ca736809" + "CENTRALUSEUAP:20210417T204840Z:3438650f-9743-4d28-b1f0-9ec6bb207689" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -57,50 +50,50 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 17 Aug 2018 12:34:57 GMT" + "Sat, 17 Apr 2021 20:48:40 GMT" + ], + "Content-Length": [ + "202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35\",\r\n \"name\": \"A2APowershellTestRg35\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "91" - ], "x-ms-client-request-id": [ - "da842b71-9b5f-4ebd-940b-cb5e33840f00-2018-08-17 12:35:18Z-P" + "16992a50-ad3c-4043-88a2-e4d86e515b3b" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" - ] - }, - "ResponseBody": "{\r\n \"location\": \"eastus\",\r\n \"name\": \"A2APowershellTest35\",\r\n \"etag\": \"W/\\\"datetime'2018-08-17T12%3A35%3A22.6851602Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "384" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "98" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -109,64 +102,64 @@ "nosniff" ], "x-ms-request-id": [ - "24996be7-4024-4231-b489-f1caded73b85" + "c2620901-3503-4da6-8240-0e4c15daaade" ], "x-ms-client-request-id": [ - "da842b71-9b5f-4ebd-940b-cb5e33840f00-2018-08-17 12:35:18Z-P" + "16992a50-ad3c-4043-88a2-e4d86e515b3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "209" ], "x-ms-correlation-request-id": [ - "24996be7-4024-4231-b489-f1caded73b85" + "c2620901-3503-4da6-8240-0e4c15daaade" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123523Z:24996be7-4024-4231-b489-f1caded73b85" - ], - "Cache-Control": [ - "no-cache" + "CENTRALUSEUAP:20210417T204904Z:c2620901-3503-4da6-8240-0e4c15daaade" ], "Date": [ - "Fri, 17 Aug 2018 12:35:23 GMT" + "Sat, 17 Apr 2021 20:49:04 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Content-Length": [ + "475" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest35\",\r\n \"etag\": \"W/\\\"datetime'2021-04-17T20%3A49%3A04.0516969Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "657fe173-5bf1-4e55-a522-f04f047cdd17-2018-08-17 12:35:44Z-P" + "acc645cf-3c26-4f06-b04b-827406c33e59" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"A2APowershellTest35\",\r\n \"etag\": \"W/\\\"datetime'2018-08-17T12%3A35%3A22.6851602Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "396" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -175,64 +168,67 @@ "nosniff" ], "x-ms-request-id": [ - "00fd2592-9a27-4c3d-afb5-b1061198dfe6" + "c0ec54fe-5d58-4ece-94cf-ac62c943e8e4" ], "x-ms-client-request-id": [ - "657fe173-5bf1-4e55-a522-f04f047cdd17-2018-08-17 12:35:44Z-P" + "acc645cf-3c26-4f06-b04b-827406c33e59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14915" + "11999" ], "x-ms-correlation-request-id": [ - "00fd2592-9a27-4c3d-afb5-b1061198dfe6" + "c0ec54fe-5d58-4ece-94cf-ac62c943e8e4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123544Z:00fd2592-9a27-4c3d-afb5-b1061198dfe6" - ], - "Cache-Control": [ - "no-cache" + "CENTRALUSEUAP:20210417T204924Z:c0ec54fe-5d58-4ece-94cf-ac62c943e8e4" ], "Date": [ - "Fri, 17 Aug 2018 12:35:43 GMT" + "Sat, 17 Apr 2021 20:49:24 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Content-Length": [ + "475" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest35\",\r\n \"etag\": \"W/\\\"datetime'2021-04-17T20%3A49%3A04.0516969Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvZXh0ZW5kZWRJbmZvcm1hdGlvbi92YXVsdEV4dGVuZGVkSW5mbz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87d6523e-d08d-4005-b6d3-fd92af2f0f3c" + "26bdb4c0-b9c7-4150-8a75-db7f43879b56" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "Agent-Authentication": [ + "" + ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"A2APowershellTest35\",\r\n \"etag\": \"W/\\\"datetime'2018-08-17T12%3A35%3A47.2525147Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "396" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -241,67 +237,73 @@ "nosniff" ], "x-ms-request-id": [ - "981eee7e-f457-47ac-a043-c15188766219" + "5475aa8d-6be1-4cfc-899b-c99970396aca" ], "x-ms-client-request-id": [ - "87d6523e-d08d-4005-b6d3-fd92af2f0f3c" + "26bdb4c0-b9c7-4150-8a75-db7f43879b56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14913" + "11998" ], "x-ms-correlation-request-id": [ - "981eee7e-f457-47ac-a043-c15188766219" + "5475aa8d-6be1-4cfc-899b-c99970396aca" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123548Z:981eee7e-f457-47ac-a043-c15188766219" - ], - "Cache-Control": [ - "no-cache" + "CENTRALUSEUAP:20210417T204925Z:5475aa8d-6be1-4cfc-899b-c99970396aca" ], "Date": [ - "Fri, 17 Aug 2018 12:35:47 GMT" + "Sat, 17 Apr 2021 20:49:24 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Content-Length": [ + "86" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"ErrorCode\": \"ResourceExtendedInfoNotFound\",\r\n \"Message\": {\r\n \"Language\": \"en-US\",\r\n \"Value\": \"\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvZXh0ZW5kZWRJbmZvcm1hdGlvbi92YXVsdEV4dGVuZGVkSW5mbz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvZXh0ZW5kZWRJbmZvcm1hdGlvbi92YXVsdEV4dGVuZGVkSW5mbz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"/l1jtaV/ZUxstoWjxvo6vg==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d588b20d-ac54-4a82-92ad-ff3364d0e1ae-2018-08-17 12:35:45Z-Ps" + "26bdb4c0-b9c7-4150-8a75-db7f43879b56" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ "" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" - ] - }, - "ResponseBody": "{\r\n \"ErrorCode\": \"ResourceExtendedInfoNotFound\",\r\n \"Message\": {\r\n \"Language\": \"en-US\",\r\n \"Value\": \"\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "86" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "102" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -310,73 +312,64 @@ "nosniff" ], "x-ms-request-id": [ - "b99366e4-a789-4853-9882-384eef534ee2" + "88be984c-7b34-4a2f-81ec-6d1224afe8a3" ], "x-ms-client-request-id": [ - "d588b20d-ac54-4a82-92ad-ff3364d0e1ae-2018-08-17 12:35:45Z-Ps" + "26bdb4c0-b9c7-4150-8a75-db7f43879b56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14914" + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "b99366e4-a789-4853-9882-384eef534ee2" + "88be984c-7b34-4a2f-81ec-6d1224afe8a3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123545Z:b99366e4-a789-4853-9882-384eef534ee2" - ], - "Cache-Control": [ - "no-cache" + "CENTRALUSEUAP:20210417T204926Z:88be984c-7b34-4a2f-81ec-6d1224afe8a3" ], "Date": [ - "Fri, 17 Aug 2018 12:35:44 GMT" + "Sat, 17 Apr 2021 20:49:26 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Content-Length": [ + "410" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 404 + "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"8b84b9de-6823-4fd0-8f10-244194d2df6f\",\r\n \"properties\": {\r\n \"integrityKey\": \"/l1jtaV/ZUxstoWjxvo6vg==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvZXh0ZW5kZWRJbmZvcm1hdGlvbi92YXVsdEV4dGVuZGVkSW5mbz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"W0VxdXqmv3oKzzAfoPKEFw==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "102" - ], "x-ms-client-request-id": [ - "f1bc145f-2c19-4f12-90d5-4e1eb19d45d2-2018-08-17 12:35:45Z-Ps" + "26bdb4c0-b9c7-4150-8a75-db7f43879b56" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], - "Agent-Authentication": [ - "" - ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"2556a2a6-76e6-4fb0-af0e-b164d56fcc62\",\r\n \"properties\": {\r\n \"integrityKey\": \"W0VxdXqmv3oKzzAfoPKEFw==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "410" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -385,652 +378,614 @@ "nosniff" ], "x-ms-request-id": [ - "9c5ed91c-58cb-4061-a39b-541ed30147d1" + "666e8f76-18c1-41dc-86f2-dc77b2ee54a8" ], "x-ms-client-request-id": [ - "f1bc145f-2c19-4f12-90d5-4e1eb19d45d2-2018-08-17 12:35:45Z-Ps" + "26bdb4c0-b9c7-4150-8a75-db7f43879b56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "x-ms-correlation-request-id": [ - "9c5ed91c-58cb-4061-a39b-541ed30147d1" + "666e8f76-18c1-41dc-86f2-dc77b2ee54a8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123547Z:9c5ed91c-58cb-4061-a39b-541ed30147d1" - ], - "Cache-Control": [ - "no-cache" + "CENTRALUSEUAP:20210417T204926Z:666e8f76-18c1-41dc-86f2-dc77b2ee54a8" ], "Date": [ - "Fri, 17 Aug 2018 12:35:46 GMT" + "Sat, 17 Apr 2021 20:49:26 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Content-Length": [ + "487" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest35\",\r\n \"etag\": \"W/\\\"datetime'2021-04-17T20%3A49%3A26.0504812Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35\",\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/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationFabrics/a2aPrimaryFabric35?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMzNT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationFabrics/a2aPrimaryFabric35?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMzNT9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westus\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"EastUS\"\r\n }\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "119" - ], "x-ms-client-request-id": [ - "4903b9b4-83b1-4e89-b8eb-eb68c95a4911-2018-08-17 12:35:48Z-Ps" + "20204878-a6e4-428b-b5b9-04ecbe035f15" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505748522)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110548522)\\/\",\"ClientRequestId\":\"4903b9b4-83b1-4e89-b8eb-eb68c95a4911-2018-08-17 12:35:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ru9Sni5PF8WCW3e6hN63oTKPmK8nm+seBdWjk1rtzZU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618688966769)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619293766769)\\/\",\"ClientRequestId\":\"6050a722-4883-40db-9b7e-87818ce2962a-2021-04-17 20:49:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uOM5wjQl5AFd0EiCqAybVhQKMor5/fSKef9p/vVOVWA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "119" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationFabrics/a2aPrimaryFabric35/operationresults/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a?api-version=2021-02-10" + ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85", - "4903b9b4-83b1-4e89-b8eb-eb68c95a4911-2018-08-17 12:35:48Z-Ps 8/17/2018 12:35:52 PM" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationOperationStatus/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85?api-version=2018-07-10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationOperationStatus/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "4903b9b4-83b1-4e89-b8eb-eb68c95a4911-2018-08-17 12:35:48Z-Ps" + "20204878-a6e4-428b-b5b9-04ecbe035f15" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "c614ed75-c04b-4644-988e-666a2d6c185b" + "aa63f8cc-75b4-4d7b-a008-720a02ff1f7b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123552Z:c614ed75-c04b-4644-988e-666a2d6c185b" - ], - "Cache-Control": [ - "no-cache" + "CENTRALUSEUAP:20210417T204928Z:aa63f8cc-75b4-4d7b-a008-720a02ff1f7b" ], "Date": [ - "Fri, 17 Aug 2018 12:35:51 GMT" + "Sat, 17 Apr 2021 20:49:28 GMT" ], - "Location": [ - "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationFabrics/a2aPrimaryFabric35/operationresults/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85?api-version=2018-07-10" + "Expires": [ + "-1" ], - "X-Powered-By": [ - "ASP.NET" + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvcmVwbGljYXRpb25Kb2JzLzRkM2QxYzJhLTdmMzItNDhhOC1iM2FiLTVjZjZiYWI5ZWU4NT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvcmVwbGljYXRpb25Kb2JzLzE4ZjBjYWVjLTc4ZjktNDdhZi1hYTFlLWNjYjZhOGExNWEwYT9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a0caf5c-e416-4577-92c0-6c9dd38a774f-2018-08-17 12:35:52Z-Ps" + "20204878-a6e4-428b-b5b9-04ecbe035f15" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505752824)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110552824)\\/\",\"ClientRequestId\":\"5a0caf5c-e416-4577-92c0-6c9dd38a774f-2018-08-17 12:35:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"R0KKvCjEfpt4qYzW4JXsdHbrAcWjTrfw1o9Krnocjs0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618688969515)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619293769515)\\/\",\"ClientRequestId\":\"7610504e-e708-4d72-b715-e67fd59d3dc1-2021-04-17 20:49:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"O1SJdwH8kL+qj4W/MqK5FgyJzdliOwZ+4O38Tc2zpCw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85\",\r\n \"name\": \"4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4903b9b4-83b1-4e89-b8eb-eb68c95a4911-2018-08-17 12:35:48Z-Ps ActivityId: c614ed75-c04b-4644-988e-666a2d6c185b\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-17T12:35:52.4607913Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:35:51.9530288Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2bc712d0-5ab4-5ce4-b974-d84ed8dc0706\",\r\n \"targetObjectName\": \"a2aPrimaryFabric35\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"2bc712d0-5ab4-5ce4-b974-d84ed8dc0706\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric35\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "5a0caf5c-e416-4577-92c0-6c9dd38a774f-2018-08-17 12:35:52Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "20204878-a6e4-428b-b5b9-04ecbe035f15" ], "x-ms-correlation-request-id": [ - "065fe6b3-e02f-4bea-82d9-665262ef2cfd" + "9947877c-cc34-4234-839b-889c0ad2cef7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123553Z:065fe6b3-e02f-4bea-82d9-665262ef2cfd" + "CENTRALUSEUAP:20210417T204929Z:9947877c-cc34-4234-839b-889c0ad2cef7" ], "Date": [ - "Fri, 17 Aug 2018 12:35:52 GMT" + "Sat, 17 Apr 2021 20:49:29 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a\",\r\n \"name\": \"18f0caec-78f9-47af-aa1e-ccb6a8a15a0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"20204878-a6e4-428b-b5b9-04ecbe035f15 ActivityId: aa63f8cc-75b4-4d7b-a008-720a02ff1f7b\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T20:49:29.3718539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T20:49:28.7222251Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d38018b5-2d86-5ed1-a71a-ed2af5b39643\",\r\n \"targetObjectName\": \"a2aPrimaryFabric35\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d38018b5-2d86-5ed1-a71a-ed2af5b39643\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric35\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvcmVwbGljYXRpb25Kb2JzLzRkM2QxYzJhLTdmMzItNDhhOC1iM2FiLTVjZjZiYWI5ZWU4NT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvcmVwbGljYXRpb25Kb2JzLzE4ZjBjYWVjLTc4ZjktNDdhZi1hYTFlLWNjYjZhOGExNWEwYT9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48b8ff6d-fbea-4dfd-a84b-29dc4a48fde0-2018-08-17 12:35:53Z-Ps" + "17d7eaf1-aea3-4437-b4bf-650b91889ae3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505753845)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110553845)\\/\",\"ClientRequestId\":\"48b8ff6d-fbea-4dfd-a84b-29dc4a48fde0-2018-08-17 12:35:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QzIPVkngHpkizP1ZWo0+/o2NOaK3sTJ62F/al6S/cH8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618688969990)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619293769990)\\/\",\"ClientRequestId\":\"151be607-83b2-4619-a420-e2453974b546-2021-04-17 20:49:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"T/7xDj48tC+WHmstfFz/93P3urXfhWlxsAsQvL0JbuU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85\",\r\n \"name\": \"4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4903b9b4-83b1-4e89-b8eb-eb68c95a4911-2018-08-17 12:35:48Z-Ps ActivityId: c614ed75-c04b-4644-988e-666a2d6c185b\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-17T12:35:52.4607913Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:35:51.9530288Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2bc712d0-5ab4-5ce4-b974-d84ed8dc0706\",\r\n \"targetObjectName\": \"a2aPrimaryFabric35\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"2bc712d0-5ab4-5ce4-b974-d84ed8dc0706\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric35\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "48b8ff6d-fbea-4dfd-a84b-29dc4a48fde0-2018-08-17 12:35:53Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "17d7eaf1-aea3-4437-b4bf-650b91889ae3" ], "x-ms-correlation-request-id": [ - "7ba39dce-6570-4929-9f77-0aa2b7ca3908" + "d5c90a64-c3dc-451a-a3c8-13259a14475a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123554Z:7ba39dce-6570-4929-9f77-0aa2b7ca3908" + "CENTRALUSEUAP:20210417T204930Z:d5c90a64-c3dc-451a-a3c8-13259a14475a" ], "Date": [ - "Fri, 17 Aug 2018 12:35:53 GMT" + "Sat, 17 Apr 2021 20:49:29 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a\",\r\n \"name\": \"18f0caec-78f9-47af-aa1e-ccb6a8a15a0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"20204878-a6e4-428b-b5b9-04ecbe035f15 ActivityId: aa63f8cc-75b4-4d7b-a008-720a02ff1f7b\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T20:49:29.3718539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T20:49:28.7222251Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d38018b5-2d86-5ed1-a71a-ed2af5b39643\",\r\n \"targetObjectName\": \"a2aPrimaryFabric35\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d38018b5-2d86-5ed1-a71a-ed2af5b39643\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric35\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvcmVwbGljYXRpb25Kb2JzLzRkM2QxYzJhLTdmMzItNDhhOC1iM2FiLTVjZjZiYWI5ZWU4NT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvcmVwbGljYXRpb25Kb2JzLzE4ZjBjYWVjLTc4ZjktNDdhZi1hYTFlLWNjYjZhOGExNWEwYT9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45688fca-54d6-436b-b9d2-6ce0c3671329-2018-08-17 12:36:14Z-Ps" + "2c7f148a-f5f2-4eef-849a-53ec13c58e7c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505774672)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110574672)\\/\",\"ClientRequestId\":\"45688fca-54d6-436b-b9d2-6ce0c3671329-2018-08-17 12:36:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zQ8dB18E84n2eNgb84bOtF7WNMZwrH14OtkUD97oj0k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618688990394)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619293790394)\\/\",\"ClientRequestId\":\"22395cc9-6dfa-4ecd-98e6-2f8e0bb67baf-2021-04-17 20:49:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XhZcZ9Kfn9ZO0GqUnaZF5vv2/b1U0ypk+iNGsp8ljdM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85\",\r\n \"name\": \"4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4903b9b4-83b1-4e89-b8eb-eb68c95a4911-2018-08-17 12:35:48Z-Ps ActivityId: c614ed75-c04b-4644-988e-666a2d6c185b\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-17T12:35:52.4607913Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:35:51.9530288Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2bc712d0-5ab4-5ce4-b974-d84ed8dc0706\",\r\n \"targetObjectName\": \"a2aPrimaryFabric35\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"2bc712d0-5ab4-5ce4-b974-d84ed8dc0706\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric35\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "45688fca-54d6-436b-b9d2-6ce0c3671329-2018-08-17 12:36:14Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14912" + "2c7f148a-f5f2-4eef-849a-53ec13c58e7c" ], "x-ms-correlation-request-id": [ - "25d9b7f6-eaf9-4443-9bf3-80063042f2bc" + "000e355d-998d-4885-8fb3-1989b6d18e44" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123615Z:25d9b7f6-eaf9-4443-9bf3-80063042f2bc" + "CENTRALUSEUAP:20210417T204950Z:000e355d-998d-4885-8fb3-1989b6d18e44" ], "Date": [ - "Fri, 17 Aug 2018 12:36:14 GMT" + "Sat, 17 Apr 2021 20:49:50 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a\",\r\n \"name\": \"18f0caec-78f9-47af-aa1e-ccb6a8a15a0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"20204878-a6e4-428b-b5b9-04ecbe035f15 ActivityId: aa63f8cc-75b4-4d7b-a008-720a02ff1f7b\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T20:49:29.3718539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T20:49:28.7222251Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d38018b5-2d86-5ed1-a71a-ed2af5b39643\",\r\n \"targetObjectName\": \"a2aPrimaryFabric35\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d38018b5-2d86-5ed1-a71a-ed2af5b39643\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric35\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvcmVwbGljYXRpb25Kb2JzLzRkM2QxYzJhLTdmMzItNDhhOC1iM2FiLTVjZjZiYWI5ZWU4NT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvcmVwbGljYXRpb25Kb2JzLzE4ZjBjYWVjLTc4ZjktNDdhZi1hYTFlLWNjYjZhOGExNWEwYT9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5396420e-969c-4f6e-9849-345b8b22d985-2018-08-17 12:36:35Z-Ps" + "575f5327-b134-4581-b882-425cb9e041eb" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505795994)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110595994)\\/\",\"ClientRequestId\":\"5396420e-969c-4f6e-9849-345b8b22d985-2018-08-17 12:36:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tn3zQnJZ2p2VT7klLzRXUG5hBb1wkViPGRvy+BAwID8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689010764)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619293810764)\\/\",\"ClientRequestId\":\"d4b39381-892d-4292-a1df-95897c43664e-2021-04-17 20:50:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ELJc9kd5IxMD/rH5Z7k288Ym/v7akON0wFWQES55++g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85\",\r\n \"name\": \"4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4903b9b4-83b1-4e89-b8eb-eb68c95a4911-2018-08-17 12:35:48Z-Ps ActivityId: c614ed75-c04b-4644-988e-666a2d6c185b\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-17T12:35:52.4607913Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:35:51.9530288Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2bc712d0-5ab4-5ce4-b974-d84ed8dc0706\",\r\n \"targetObjectName\": \"a2aPrimaryFabric35\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"2bc712d0-5ab4-5ce4-b974-d84ed8dc0706\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric35\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "5396420e-969c-4f6e-9849-345b8b22d985-2018-08-17 12:36:35Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14910" + "575f5327-b134-4581-b882-425cb9e041eb" ], "x-ms-correlation-request-id": [ - "2cb56551-a2fd-4cb6-9dbb-82283c752bfa" + "e423cd63-07a8-432e-abe2-c8bee220d9fd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123637Z:2cb56551-a2fd-4cb6-9dbb-82283c752bfa" + "CENTRALUSEUAP:20210417T205010Z:e423cd63-07a8-432e-abe2-c8bee220d9fd" ], "Date": [ - "Fri, 17 Aug 2018 12:36:37 GMT" + "Sat, 17 Apr 2021 20:50:10 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a\",\r\n \"name\": \"18f0caec-78f9-47af-aa1e-ccb6a8a15a0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"20204878-a6e4-428b-b5b9-04ecbe035f15 ActivityId: aa63f8cc-75b4-4d7b-a008-720a02ff1f7b\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T20:49:29.3718539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T20:49:28.7222251Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d38018b5-2d86-5ed1-a71a-ed2af5b39643\",\r\n \"targetObjectName\": \"a2aPrimaryFabric35\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d38018b5-2d86-5ed1-a71a-ed2af5b39643\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric35\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvcmVwbGljYXRpb25Kb2JzLzRkM2QxYzJhLTdmMzItNDhhOC1iM2FiLTVjZjZiYWI5ZWU4NT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvcmVwbGljYXRpb25Kb2JzLzE4ZjBjYWVjLTc4ZjktNDdhZi1hYTFlLWNjYjZhOGExNWEwYT9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c840cac6-9d25-47f6-8c43-0f744413da3f-2018-08-17 12:36:58Z-Ps" + "de80a87f-20bc-4c74-86ea-3a810ea169d3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505818233)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110618233)\\/\",\"ClientRequestId\":\"c840cac6-9d25-47f6-8c43-0f744413da3f-2018-08-17 12:36:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XhzCfU52kqnaJCeN0pZudIkC3bsdbds6WJbmz1ZEVxc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689031178)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619293831178)\\/\",\"ClientRequestId\":\"ae66090b-8311-4f03-a48d-07fd7aa23533-2021-04-17 20:50:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sVae7lrAkjI93eX9xhK2LsqYcuz+FiZUCncr9x7ZZpw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85\",\r\n \"name\": \"4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4903b9b4-83b1-4e89-b8eb-eb68c95a4911-2018-08-17 12:35:48Z-Ps ActivityId: c614ed75-c04b-4644-988e-666a2d6c185b\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-17T12:35:52.4607913Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:35:51.9530288Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2bc712d0-5ab4-5ce4-b974-d84ed8dc0706\",\r\n \"targetObjectName\": \"a2aPrimaryFabric35\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"2bc712d0-5ab4-5ce4-b974-d84ed8dc0706\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric35\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c840cac6-9d25-47f6-8c43-0f744413da3f-2018-08-17 12:36:58Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14909" + "de80a87f-20bc-4c74-86ea-3a810ea169d3" ], "x-ms-correlation-request-id": [ - "2d8cb520-843b-4b06-9bdd-6a7cbb3dd431" + "c62d5ce8-7f6a-471b-89ed-b7a63b246171" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123658Z:2d8cb520-843b-4b06-9bdd-6a7cbb3dd431" + "CENTRALUSEUAP:20210417T205031Z:c62d5ce8-7f6a-471b-89ed-b7a63b246171" ], "Date": [ - "Fri, 17 Aug 2018 12:36:57 GMT" + "Sat, 17 Apr 2021 20:50:30 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a\",\r\n \"name\": \"18f0caec-78f9-47af-aa1e-ccb6a8a15a0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"20204878-a6e4-428b-b5b9-04ecbe035f15 ActivityId: aa63f8cc-75b4-4d7b-a008-720a02ff1f7b\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T20:49:29.3718539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T20:49:28.7222251Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d38018b5-2d86-5ed1-a71a-ed2af5b39643\",\r\n \"targetObjectName\": \"a2aPrimaryFabric35\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d38018b5-2d86-5ed1-a71a-ed2af5b39643\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric35\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvcmVwbGljYXRpb25Kb2JzLzRkM2QxYzJhLTdmMzItNDhhOC1iM2FiLTVjZjZiYWI5ZWU4NT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvcmVwbGljYXRpb25Kb2JzLzE4ZjBjYWVjLTc4ZjktNDdhZi1hYTFlLWNjYjZhOGExNWEwYT9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd672710-cb22-4e60-be32-20149905335d-2018-08-17 12:37:19Z-Ps" + "45035982-66e0-4ea8-bf72-cb6c66e421c0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505839068)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110639068)\\/\",\"ClientRequestId\":\"cd672710-cb22-4e60-be32-20149905335d-2018-08-17 12:37:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"G4zaekH1XK/EaTmTB4flGNofMoUqtKCZczARmc3NEC8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689051559)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619293851559)\\/\",\"ClientRequestId\":\"782d0df0-d0e7-4a62-9338-a9b9d4815c7a-2021-04-17 20:50:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9pmAMqZj2lHWP7hrggIdo2ZRGSoh0VJ6R5+bo+uDJ7E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85\",\r\n \"name\": \"4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4903b9b4-83b1-4e89-b8eb-eb68c95a4911-2018-08-17 12:35:48Z-Ps ActivityId: c614ed75-c04b-4644-988e-666a2d6c185b\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-17T12:36:59.1530792Z\",\r\n \"endTime\": \"2018-08-17T12:36:59.3405376Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:35:51.9530288Z\",\r\n \"endTime\": \"2018-08-17T12:36:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2bc712d0-5ab4-5ce4-b974-d84ed8dc0706\",\r\n \"targetObjectName\": \"a2aPrimaryFabric35\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"2bc712d0-5ab4-5ce4-b974-d84ed8dc0706\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric35\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1377" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/4d3d1c2a-7f32-48a8-b3ab-5cf6bab9ee85" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "cd672710-cb22-4e60-be32-20149905335d-2018-08-17 12:37:19Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14907" + "45035982-66e0-4ea8-bf72-cb6c66e421c0" ], "x-ms-correlation-request-id": [ - "43e62357-d6b8-4259-93c5-837351e5bd69" + "3676d68a-2c68-4b7a-902c-15a73afd8597" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123719Z:43e62357-d6b8-4259-93c5-837351e5bd69" + "CENTRALUSEUAP:20210417T205051Z:3676d68a-2c68-4b7a-902c-15a73afd8597" ], "Date": [ - "Fri, 17 Aug 2018 12:37:19 GMT" + "Sat, 17 Apr 2021 20:50:51 GMT" + ], + "Content-Length": [ + "1353" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationJobs/18f0caec-78f9-47af-aa1e-ccb6a8a15a0a\",\r\n \"name\": \"18f0caec-78f9-47af-aa1e-ccb6a8a15a0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"20204878-a6e4-428b-b5b9-04ecbe035f15 ActivityId: aa63f8cc-75b4-4d7b-a008-720a02ff1f7b\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T20:50:36.0523048Z\",\r\n \"endTime\": \"2021-04-17T20:50:36.2173052Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T20:49:28.7222251Z\",\r\n \"endTime\": \"2021-04-17T20:50:36Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d38018b5-2d86-5ed1-a71a-ed2af5b39643\",\r\n \"targetObjectName\": \"a2aPrimaryFabric35\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d38018b5-2d86-5ed1-a71a-ed2af5b39643\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric35\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationFabrics/a2aPrimaryFabric35?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMzNT9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationFabrics/a2aPrimaryFabric35?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzUvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMzNT9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "298d2fca-2643-497a-9eab-7bd41a59fde1-2018-08-17 12:37:20Z-Ps" + "9e7c0602-98b5-4243-93b0-7e983fd8a238" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505840050)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110640050)\\/\",\"ClientRequestId\":\"298d2fca-2643-497a-9eab-7bd41a59fde1-2018-08-17 12:37:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bf9zw4Vl0TaXdtIABGmAFI6d5qoazJV4Pfc8cW11ppU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689051956)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619293851956)\\/\",\"ClientRequestId\":\"c38669aa-83f6-432a-b80c-61eec0260731-2021-04-17 20:50:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XH100oxkDO6WnI0VIRV9k2tQ3c5zsEvo9GX+XItW4yk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationFabrics/a2aPrimaryFabric35\",\r\n \"properties\": {\r\n \"friendlyName\": \"West US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"2bc712d0-5ab4-5ce4-b974-d84ed8dc0706\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westus\",\r\n \"containerIds\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "668" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "298d2fca-2643-497a-9eab-7bd41a59fde1-2018-08-17 12:37:20Z-Ps 8/17/2018 12:37:21 PM" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "9e7c0602-98b5-4243-93b0-7e983fd8a238 4/17/2021 8:50:52 PM" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "298d2fca-2643-497a-9eab-7bd41a59fde1-2018-08-17 12:37:20Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14906" + "9e7c0602-98b5-4243-93b0-7e983fd8a238" ], "x-ms-correlation-request-id": [ - "ed637edc-e2c0-46d5-ba90-719420c06ca9" + "ba48ae57-35fa-4a7b-aa74-bdb579eb2ce6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123721Z:ed637edc-e2c0-46d5-ba90-719420c06ca9" + "CENTRALUSEUAP:20210417T205052Z:ba48ae57-35fa-4a7b-aa74-bdb579eb2ce6" ], "Date": [ - "Fri, 17 Aug 2018 12:37:21 GMT" + "Sat, 17 Apr 2021 20:50:51 GMT" + ], + "Content-Length": [ + "679" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg35/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest35/replicationFabrics/a2aPrimaryFabric35\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"d38018b5-2d86-5ed1-a71a-ed2af5b39643\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "7c943c1b-5122-4097-90c8-861411bdd574" + "SubscriptionId": "509099b2-9d2c-4636-b43e-bd5cafb6be69" } -} +} \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2ARecoveryPlanReplication.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2ARecoveryPlanReplication.json index 4fcf7292ab67..68d2f51d19e5 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2ARecoveryPlanReplication.json +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2ARecoveryPlanReplication.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/recRG918?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlZ3JvdXBzL3JlY1JHOTE4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recRG918?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL3JlY1JHOTE4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "347af774-937b-4dc0-a4a0-65f94c076752" + "b2acb042-56a0-472a-8676-3eb5f90e4714" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "28" + "35" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1191" ], "x-ms-request-id": [ - "b32defcc-cbbf-4669-a12e-6c938048046e" + "7bea3bcc-a656-4d64-b2b6-551b1f5c90d1" ], "x-ms-correlation-request-id": [ - "b32defcc-cbbf-4669-a12e-6c938048046e" + "7bea3bcc-a656-4d64-b2b6-551b1f5c90d1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104341Z:b32defcc-cbbf-4669-a12e-6c938048046e" + "CENTRALUSEUAP:20210417T210724Z:7bea3bcc-a656-4d64-b2b6-551b1f5c90d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:43:40 GMT" + "Sat, 17 Apr 2021 21:07:23 GMT" ], "Content-Length": [ - "169" + "176" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918\",\r\n \"name\": \"recRG918\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918\",\r\n \"name\": \"recRG918\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL3JlY1JHOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrOTE4P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrOTE4P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa32a84a-3a4a-427b-9faf-db54d6a3c330" + "966f4344-cf95-42be-8b20-c9e5a80e878c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.20.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "14391749-6439-4006-8e2b-f7c22317c785" + "0cdfa83a-b23f-44ec-9bd9-834a9e8e6fab" ], "x-ms-correlation-request-id": [ - "14391749-6439-4006-8e2b-f7c22317c785" + "0cdfa83a-b23f-44ec-9bd9-834a9e8e6fab" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104402Z:14391749-6439-4006-8e2b-f7c22317c785" + "CENTRALUSEUAP:20210417T210745Z:0cdfa83a-b23f-44ec-9bd9-834a9e8e6fab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:44:02 GMT" + "Sat, 17 Apr 2021 21:07:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,23 +120,26 @@ "-1" ], "Content-Length": [ - "167" + "235" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918' under resource group 'recRG918' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918' under resource group 'recRG918' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL3JlY1JHOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrOTE4P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrOTE4P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "966f4344-cf95-42be-8b20-c9e5a80e878c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.20.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -147,16 +150,16 @@ "no-cache" ], "ETag": [ - "W/\"e97415c2-e99a-412b-8170-1dfb9566458b\"" + "W/\"9dfa01cf-be21-4cfc-8c1f-f33e9a83de02\"" ], "x-ms-request-id": [ - "5b6e7dd8-0af8-4f48-a16a-fbac06c96f6d" + "493e3228-b7ca-46ae-b6a2-0cc8e7bd0ea2" ], "x-ms-correlation-request-id": [ - "9e2e07f3-1eb6-43ac-a56e-a07ede3bec09" + "0ffeeefb-591c-4fab-a71d-f48067da02c6" ], "x-ms-arm-service-request-id": [ - "bfc54898-5e83-4595-b536-0f4139a72a43" + "5f1b1ec8-413e-4ead-b1a7-b71f46155b42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -166,19 +169,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11982" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104416Z:9e2e07f3-1eb6-43ac-a56e-a07ede3bec09" + "CENTRALUSEUAP:20210417T210752Z:0ffeeefb-591c-4fab-a71d-f48067da02c6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:44:15 GMT" + "Sat, 17 Apr 2021 21:07:52 GMT" ], "Content-Length": [ - "1333" + "1306" ], "Content-Type": [ "application/json; charset=utf-8" @@ -187,26 +190,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918\",\r\n \"etag\": \"W/\\\"e97415c2-e99a-412b-8170-1dfb9566458b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"05fdf83c-2714-4994-92c0-758cb3a7e274\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"e97415c2-e99a-412b-8170-1dfb9566458b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918\",\r\n \"etag\": \"W/\\\"9dfa01cf-be21-4cfc-8c1f-f33e9a83de02\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"620036b6-76c4-4d98-9857-479bc480474a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"9dfa01cf-be21-4cfc-8c1f-f33e9a83de02\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL3JlY1JHOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrOTE4P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrOTE4P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "455590f9-e50d-4d78-8c97-50704d75e24f" + "966f4344-cf95-42be-8b20-c9e5a80e878c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.20.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -217,16 +220,16 @@ "no-cache" ], "ETag": [ - "W/\"e97415c2-e99a-412b-8170-1dfb9566458b\"" + "W/\"9dfa01cf-be21-4cfc-8c1f-f33e9a83de02\"" ], "x-ms-request-id": [ - "842aad2e-eb31-4e12-b2e3-5917e0eb526f" + "394e3a97-edb5-4a33-80ae-0c2e538a3adf" ], "x-ms-correlation-request-id": [ - "6c38d4f6-2b4d-424e-897b-60d7581269cf" + "97531d72-8d21-4825-8ee4-576971e76557" ], "x-ms-arm-service-request-id": [ - "f3c77cf3-1a16-4ef5-acc6-13270e090038" + "2b51712c-6edf-490e-9008-8582763105b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -236,19 +239,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11981" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104416Z:6c38d4f6-2b4d-424e-897b-60d7581269cf" + "CENTRALUSEUAP:20210417T210752Z:97531d72-8d21-4825-8ee4-576971e76557" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:44:15 GMT" + "Sat, 17 Apr 2021 21:07:52 GMT" ], "Content-Length": [ - "1333" + "1306" ], "Content-Type": [ "application/json; charset=utf-8" @@ -257,32 +260,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918\",\r\n \"etag\": \"W/\\\"e97415c2-e99a-412b-8170-1dfb9566458b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"05fdf83c-2714-4994-92c0-758cb3a7e274\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"e97415c2-e99a-412b-8170-1dfb9566458b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918\",\r\n \"etag\": \"W/\\\"9dfa01cf-be21-4cfc-8c1f-f33e9a83de02\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"620036b6-76c4-4d98-9857-479bc480474a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"9dfa01cf-be21-4cfc-8c1f-f33e9a83de02\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL3JlY1JHOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrOTE4P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrOTE4P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"frontendSubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"frontendSubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a3fb63c3-f5db-4c0f-8f31-e759140badd5" + "966f4344-cf95-42be-8b20-c9e5a80e878c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.20.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "685" + "692" ] }, "ResponseHeaders": { @@ -296,19 +299,19 @@ "3" ], "x-ms-request-id": [ - "88b95bd5-e2b8-4105-9c80-8aff4cd7131e" + "deb7b418-bdee-40a9-ad7f-14f0abe5b636" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/eastus/operations/88b95bd5-e2b8-4105-9c80-8aff4cd7131e?api-version=2020-03-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westcentralus/operations/deb7b418-bdee-40a9-ad7f-14f0abe5b636?api-version=2020-11-01" ], "x-ms-correlation-request-id": [ - "b603999c-e4af-4bdd-beb6-98e21873547f" + "dfbc2263-ea7e-4539-b479-df827c9c3787" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "79f9b141-42ba-491a-8e3d-28ff67ed0fee" + "f16aa36c-d259-40df-8648-86f8e34aeb8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -318,19 +321,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104411Z:b603999c-e4af-4bdd-beb6-98e21873547f" + "CENTRALUSEUAP:20210417T210748Z:dfbc2263-ea7e-4539-b479-df827c9c3787" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:44:11 GMT" + "Sat, 17 Apr 2021 21:07:48 GMT" ], "Content-Length": [ - "1331" + "1304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -339,20 +342,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918\",\r\n \"etag\": \"W/\\\"df709776-aff2-4b14-a461-2b7a60c1f338\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"05fdf83c-2714-4994-92c0-758cb3a7e274\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"df709776-aff2-4b14-a461-2b7a60c1f338\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918\",\r\n \"etag\": \"W/\\\"d9e5076c-6add-417c-b889-07eaa6ad49a6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"620036b6-76c4-4d98-9857-479bc480474a\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"d9e5076c-6add-417c-b889-07eaa6ad49a6\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/eastus/operations/88b95bd5-e2b8-4105-9c80-8aff4cd7131e?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODhiOTViZDUtZTJiOC00MTA1LTljODAtOGFmZjRjZDcxMzFlP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westcentralus/operations/deb7b418-bdee-40a9-ad7f-14f0abe5b636?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2RlYjdiNDE4LWJkZWUtNDBhOS1hZDdmLTE0ZjBhYmU1YjYzNj9hcGktdmVyc2lvbj0yMDIwLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "966f4344-cf95-42be-8b20-c9e5a80e878c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.20.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -363,13 +369,13 @@ "no-cache" ], "x-ms-request-id": [ - "31fa0832-a87d-4808-8a71-98c869aa5a30" + "5ac38105-2b3c-4d0e-87f6-88e7522a0a1a" ], "x-ms-correlation-request-id": [ - "43cf3e32-e330-4ba7-a1bb-7238904caf68" + "bf976f43-eeb0-4fc8-92b5-10e69c8efc28" ], "x-ms-arm-service-request-id": [ - "356a2739-3e3a-4817-baf5-8e18b989ca2d" + "3c747016-be34-4b8f-9b25-397930412a1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,16 +385,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11983" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104415Z:43cf3e32-e330-4ba7-a1bb-7238904caf68" + "CENTRALUSEUAP:20210417T210752Z:bf976f43-eeb0-4fc8-92b5-10e69c8efc28" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:44:15 GMT" + "Sat, 17 Apr 2021 21:07:51 GMT" ], "Content-Length": [ "29" @@ -404,28 +410,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL3JlY1JHOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9wcm94aW1pdHlQbGFjZW1lbnRHcm91cHMvUFBHMS1hc3I/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9wcm94aW1pdHlQbGFjZW1lbnRHcm91cHMvUFBHMS1hc3I/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8482b64b-f828-48dc-ab87-36e7159998f4" + "baeb4fa3-29d1-45ea-b4fa-3d35f80282d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "28" + "35" ] }, "ResponseHeaders": { @@ -442,29 +448,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1bbc6468-1a08-4aa5-a415-0bef9884d9ca" + "1185f2e6-e062-4d3b-a51d-6fe7451afb94" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "9b84cac2-2299-4da4-89ed-8df20de6a4c5" + "06882d45-ce5d-4c33-a426-8dbd7ce1e22a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104421Z:9b84cac2-2299-4da4-89ed-8df20de6a4c5" + "CENTRALUSEUAP:20210417T210755Z:06882d45-ce5d-4c33-a426-8dbd7ce1e22a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:44:21 GMT" + "Sat, 17 Apr 2021 21:07:55 GMT" ], "Content-Length": [ - "330" + "337" ], "Content-Type": [ "application/json; charset=utf-8" @@ -473,32 +479,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PPG1-asr\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PPG1-asr\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Compute/proximityPlacementGroups/PPG2-asr?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL3JlY1JHOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9wcm94aW1pdHlQbGFjZW1lbnRHcm91cHMvUFBHMi1hc3I/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Compute/proximityPlacementGroups/PPG2-asr?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9wcm94aW1pdHlQbGFjZW1lbnRHcm91cHMvUFBHMi1hc3I/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "20d72eb1-720d-4edd-8341-3419dec4934d" + "b5b2f9d8-b475-4600-82f4-ad148374edda" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "28" + "35" ] }, "ResponseHeaders": { @@ -515,29 +521,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "6d2d63cf-6dda-48fb-8250-4130c1611816" + "ff41695f-a06f-4b6c-b209-2f2f71d2283a" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "dafe3d71-03c3-4e7c-a940-d50bcbcb0bd9" + "57bf309e-bb7f-4822-bb50-c3bb0372217a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104425Z:dafe3d71-03c3-4e7c-a940-d50bcbcb0bd9" + "CENTRALUSEUAP:20210417T210756Z:57bf309e-bb7f-4822-bb50-c3bb0372217a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:44:24 GMT" + "Sat, 17 Apr 2021 21:07:56 GMT" ], "Content-Length": [ - "330" + "337" ], "Content-Type": [ "application/json; charset=utf-8" @@ -546,26 +552,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PPG2-asr\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Compute/proximityPlacementGroups/PPG2-asr\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PPG2-asr\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Compute/proximityPlacementGroups/PPG2-asr\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2aVM918?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlZ3JvdXBzL2EyYVZNOTE4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM918?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNOTE4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f92abb6b-0a1c-4672-94c6-f278a80f290c" + "4af19147-6224-4777-9d28-8bc63ae5435d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" @@ -582,16 +588,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-request-id": [ - "b9c39174-4bd6-4c3b-acf7-d6c184d784b8" + "bf030144-d10f-4d7f-91b3-5e56e8f6770d" ], "x-ms-correlation-request-id": [ - "b9c39174-4bd6-4c3b-acf7-d6c184d784b8" + "bf030144-d10f-4d7f-91b3-5e56e8f6770d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104428Z:b9c39174-4bd6-4c3b-acf7-d6c184d784b8" + "CENTRALUSEUAP:20210417T210757Z:bf030144-d10f-4d7f-91b3-5e56e8f6770d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -600,7 +606,7 @@ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:44:27 GMT" + "Sat, 17 Apr 2021 21:07:57 GMT" ], "Content-Length": [ "169" @@ -612,26 +618,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918\",\r\n \"name\": \"a2aVM918\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918\",\r\n \"name\": \"a2aVM918\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Storage/storageAccounts/cache918?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvY2FjaGU5MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Storage/storageAccounts/cache918?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvY2FjaGU5MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c727a3bf-b3c6-4c58-b3f1-09c4de547943" + "2fbdf9a7-8e49-45e3-9161-1b5c62f94937" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" @@ -648,13 +654,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Storage/locations/westus/asyncoperations/e298689d-6c10-40e0-8f86-eea49acbd031?monitor=true&api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/189124cb-ed50-4a6c-b3aa-14bae6872e3c?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "e298689d-6c10-40e0-8f86-eea49acbd031" + "189124cb-ed50-4a6c-b3aa-14bae6872e3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -663,19 +669,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1189" ], "x-ms-correlation-request-id": [ - "f65baa24-fad0-47fa-89b6-78c69d9c1ea2" + "a6a2cf04-f471-4a49-8d38-145f95da7db0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104455Z:f65baa24-fad0-47fa-89b6-78c69d9c1ea2" + "CENTRALUSEUAP:20210417T210821Z:a6a2cf04-f471-4a49-8d38-145f95da7db0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:44:55 GMT" + "Sat, 17 Apr 2021 21:08:21 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -691,16 +697,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Storage/locations/westus/asyncoperations/e298689d-6c10-40e0-8f86-eea49acbd031?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy9lMjk4Njg5ZC02YzEwLTQwZTAtOGY4Ni1lZWE0OWFjYmQwMzE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/189124cb-ed50-4a6c-b3aa-14bae6872e3c?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8xODkxMjRjYi1lZDUwLTRhNmMtYjNhYS0xNGJhZTY4NzJlM2M/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -711,7 +717,7 @@ "no-cache" ], "x-ms-request-id": [ - "33101c23-262c-4098-9ccf-51116020e5c9" + "ad5e59bd-93ca-4d93-8732-4b745fbcff6c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -720,19 +726,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11983" ], "x-ms-correlation-request-id": [ - "bcc79d32-cacd-4dc4-8475-4176a2a5dc11" + "3587338b-6436-4a47-8510-a0aed5091572" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104513Z:bcc79d32-cacd-4dc4-8475-4176a2a5dc11" + "CENTRALUSEUAP:20210417T210838Z:3587338b-6436-4a47-8510-a0aed5091572" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:13 GMT" + "Sat, 17 Apr 2021 21:08:37 GMT" ], "Content-Length": [ "1027" @@ -744,32 +750,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Storage/storageAccounts/cache918\",\r\n \"name\": \"cache918\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-03T10:44:55.3409852Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-03T10:44:55.3409852Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-05-03T10:44:55.2619904Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cache918.blob.core.windows.net/\",\r\n \"queue\": \"https://cache918.queue.core.windows.net/\",\r\n \"table\": \"https://cache918.table.core.windows.net/\",\r\n \"file\": \"https://cache918.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Storage/storageAccounts/cache918\",\r\n \"name\": \"cache918\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-17T21:08:20.0376903Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-17T21:08:20.0376903Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-04-17T21:08:19.9126842Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cache918.blob.core.windows.net/\",\r\n \"queue\": \"https://cache918.queue.core.windows.net/\",\r\n \"table\": \"https://cache918.table.core.windows.net/\",\r\n \"file\": \"https://cache918.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Storage/storageAccounts/rlog918?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL3JlY1JHOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvcmxvZzkxOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Storage/storageAccounts/rlog918?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvcmxvZzkxOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "952325b1-c054-4cee-93b8-50fab9f55fad" + "c8e35cbf-d360-4ec2-b599-80e180862ee5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "98" + "105" ] }, "ResponseHeaders": { @@ -780,13 +786,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Storage/locations/eastus/asyncoperations/611b86b0-bf24-4007-a56d-eaad18e862a9?monitor=true&api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/76f212d4-cf2e-4c9f-b9b3-116a01926e5c?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "611b86b0-bf24-4007-a56d-eaad18e862a9" + "76f212d4-cf2e-4c9f-b9b3-116a01926e5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -795,19 +801,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1188" ], "x-ms-correlation-request-id": [ - "65913800-4437-4894-8d2f-291256108639" + "ae5c4b52-98af-432f-a01d-e4e5d0eae03c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104521Z:65913800-4437-4894-8d2f-291256108639" + "CENTRALUSEUAP:20210417T210841Z:ae5c4b52-98af-432f-a01d-e4e5d0eae03c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:21 GMT" + "Sat, 17 Apr 2021 21:08:41 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -823,16 +829,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Storage/locations/eastus/asyncoperations/611b86b0-bf24-4007-a56d-eaad18e862a9?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy82MTFiODZiMC1iZjI0LTQwMDctYTU2ZC1lYWFkMThlODYyYTk/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/76f212d4-cf2e-4c9f-b9b3-116a01926e5c?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvNzZmMjEyZDQtY2YyZS00YzlmLWI5YjMtMTE2YTAxOTI2ZTVjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -843,7 +849,7 @@ "no-cache" ], "x-ms-request-id": [ - "8ade31ce-dd95-4922-8743-804256c9e217" + "db848f2f-e818-427c-b67b-fcf5fea47c75" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -852,22 +858,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11982" ], "x-ms-correlation-request-id": [ - "f976c53e-0e25-467d-9e53-3e01b8165382" + "e70a8430-2d49-434d-9421-cd6b1ba823da" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104539Z:f976c53e-0e25-467d-9e53-3e01b8165382" + "CENTRALUSEUAP:20210417T210859Z:e70a8430-2d49-434d-9421-cd6b1ba823da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:38 GMT" + "Sat, 17 Apr 2021 21:08:58 GMT" ], "Content-Length": [ - "1021" + "1035" ], "Content-Type": [ "application/json" @@ -876,26 +882,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Storage/storageAccounts/rlog918\",\r\n \"name\": \"rlog918\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-03T10:45:21.3394606Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-03T10:45:21.3394606Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-05-03T10:45:21.2769987Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rlog918.blob.core.windows.net/\",\r\n \"queue\": \"https://rlog918.queue.core.windows.net/\",\r\n \"table\": \"https://rlog918.table.core.windows.net/\",\r\n \"file\": \"https://rlog918.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Storage/storageAccounts/rlog918\",\r\n \"name\": \"rlog918\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-17T21:08:40.2225286Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-17T21:08:40.2225286Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-04-17T21:08:40.1600495Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rlog918.blob.core.windows.net/\",\r\n \"queue\": \"https://rlog918.queue.core.windows.net/\",\r\n \"table\": \"https://rlog918.table.core.windows.net/\",\r\n \"file\": \"https://rlog918.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM918?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9wcm94aW1pdHlQbGFjZW1lbnRHcm91cHMvYTJhVk05MTg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM918?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9wcm94aW1pdHlQbGFjZW1lbnRHcm91cHMvYTJhVk05MTg/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2c7b4c03-0f38-4ea2-828a-fa8171610992" + "9c6da0ed-79b4-43b7-83ee-1d68772ec41a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -912,32 +918,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutDeletePPG3Min;99,Microsoft.Compute/PutDeletePPG30Min;497" + "Microsoft.Compute/PutDeletePPG3Min;99,Microsoft.Compute/PutDeletePPG30Min;499" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "8d3a3ff3-8b06-4bf3-8fd6-75164fd997f7" + "eed058e4-5a5b-48c9-be36-125e93effdec" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1195" ], "x-ms-correlation-request-id": [ - "b5bf0a5d-a9bc-4a6d-b11b-f131c0a89427" + "45478e3f-df30-44ce-ba1a-5545b0a18d6d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104545Z:b5bf0a5d-a9bc-4a6d-b11b-f131c0a89427" + "CENTRALUSEUAP:20210417T210901Z:45478e3f-df30-44ce-ba1a-5545b0a18d6d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:45 GMT" + "Sat, 17 Apr 2021 21:09:00 GMT" ], "Content-Length": [ "330" @@ -949,26 +955,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM918\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM918\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Compute/images/RHEL?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9pbWFnZXMvUkhFTD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Compute/images/RHEL?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9pbWFnZXMvUkhFTD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67bb11a3-2d96-4c6b-9741-0aa2d313d68a" + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -982,13 +988,13 @@ "gateway" ], "x-ms-request-id": [ - "4c98d087-8941-4f35-a0bc-75af35dc7904" + "eb308097-020e-4041-9368-6f5b6f98979a" ], "x-ms-correlation-request-id": [ - "4c98d087-8941-4f35-a0bc-75af35dc7904" + "eb308097-020e-4041-9368-6f5b6f98979a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104546Z:4c98d087-8941-4f35-a0bc-75af35dc7904" + "CENTRALUSEUAP:20210417T210901Z:eb308097-020e-4041-9368-6f5b6f98979a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -997,7 +1003,7 @@ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:45 GMT" + "Sat, 17 Apr 2021 21:09:00 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1006,29 +1012,29 @@ "-1" ], "Content-Length": [ - "141" + "209" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/images/RHEL' under resource group 'a2aVM918' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/images/RHEL' under resource group 'a2aVM918' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Compute?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "477b0a2c-d26a-4552-b24a-eef2b21cd632" + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1039,16 +1045,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11981" ], "x-ms-request-id": [ - "0e9981dd-d345-45cf-9776-ad3b716c158f" + "8a48027a-e90a-44ef-8555-7a051ebbec34" ], "x-ms-correlation-request-id": [ - "0e9981dd-d345-45cf-9776-ad3b716c158f" + "8a48027a-e90a-44ef-8555-7a051ebbec34" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104546Z:0e9981dd-d345-45cf-9776-ad3b716c158f" + "CENTRALUSEUAP:20210417T210902Z:8a48027a-e90a-44ef-8555-7a051ebbec34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,7 +1063,7 @@ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:45 GMT" + "Sat, 17 Apr 2021 21:09:02 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1066,29 +1072,29 @@ "-1" ], "Content-Length": [ - "33516" + "59552" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/vsmoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Japan West\",\r\n \"France Central\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMExtensions\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMExtensions/versions\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n },\r\n {\r\n \"applicationId\": \"579d9c9d-4c83-4efc-8124-7eba65ed3356\",\r\n \"roleDefinitionId\": \"8c99c4ce-d744-4597-a2f0-0a0044d67560\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotEvictionRates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotPriceHistory\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/sharedGalleries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"diskAccesses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roles\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/csoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsVersions\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsFamilies\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/publicIPAddresses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups/capacityReservations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Compute/virtualMachines/a2aVM918?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk05MTg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Compute/virtualMachines/a2aVM918?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk05MTg/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91f02a26-6b6b-4a29-8269-50daff0e8ed9" + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1102,13 +1108,13 @@ "gateway" ], "x-ms-request-id": [ - "e5a80f24-cdaa-4dd5-ae36-bca50ca37851" + "ded5eb0e-78ad-44e8-b79b-6eec89e293ee" ], "x-ms-correlation-request-id": [ - "e5a80f24-cdaa-4dd5-ae36-bca50ca37851" + "ded5eb0e-78ad-44e8-b79b-6eec89e293ee" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104547Z:e5a80f24-cdaa-4dd5-ae36-bca50ca37851" + "CENTRALUSEUAP:20210417T210903Z:ded5eb0e-78ad-44e8-b79b-6eec89e293ee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1117,7 +1123,7 @@ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:46 GMT" + "Sat, 17 Apr 2021 21:09:02 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1126,23 +1132,26 @@ "-1" ], "Content-Length": [ - "154" + "222" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/a2aVM918' under resource group 'a2aVM918' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/a2aVM918' under resource group 'a2aVM918' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Compute/virtualMachines/a2aVM918?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk05MTg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Compute/virtualMachines/a2aVM918?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk05MTg/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1153,35 +1162,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31985" + "Microsoft.Compute/LowCostGet3Min;3993,Microsoft.Compute/LowCostGet30Min;31988" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "4c39b613-7e8d-4837-bd95-fa83dba7e952" + "d2a0f719-bb4d-4bb7-94d6-fb1219d13208" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11984" ], "x-ms-correlation-request-id": [ - "fb7956c6-f9f2-4880-9ec6-603267e8939b" + "335419e6-ec53-45b0-be20-a23d092f865c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104730Z:fb7956c6-f9f2-4880-9ec6-603267e8939b" + "CENTRALUSEUAP:20210417T211036Z:335419e6-ec53-45b0-be20-a23d092f865c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:47:30 GMT" + "Sat, 17 Apr 2021 21:10:36 GMT" ], "Content-Length": [ - "1877" + "2092" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1190,26 +1199,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Compute/virtualMachines/a2aVM918\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"vmId\": \"8ac234da-940f-4e49-9f55-8819a978d98d\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2AVM918/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM918\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM918_OsDisk_1_0c12d1210b1c49f783b52ff5249c77bb\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2AVM918/providers/Microsoft.Compute/disks/a2aVM918_OsDisk_1_0c12d1210b1c49f783b52ff5249c77bb\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM918\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Compute/virtualMachines/a2aVM918\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"bde3f2d8-f5fa-421d-9d55-4bb125b79b4f\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM918/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM918\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM918_OsDisk_1_5d9da26740f94b2eb974cf23bc75b546\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Compute/disks/a2aVM918_OsDisk_1_5d9da26740f94b2eb974cf23bc75b546\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM918\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Compute/virtualMachines/a2aVM918?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk05MTg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Compute/virtualMachines/a2aVM918?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk05MTg/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba9eb5c9-99ec-417b-b65d-13c9982278a0" + "53b48b44-76c9-41b5-bb9a-9e8adf0c7f5a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1220,35 +1229,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31984" + "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31987" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d5490e64-c48c-42c6-bdae-779d8766eb07" + "76e5e03c-22a7-4e0c-a280-f90fdd738e36" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11983" ], "x-ms-correlation-request-id": [ - "93f10aee-4f18-41de-a697-fc03df328ad8" + "4558f2e8-72de-4e42-b1a9-f38fc0dbab2b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104731Z:93f10aee-4f18-41de-a697-fc03df328ad8" + "CENTRALUSEUAP:20210417T211036Z:4558f2e8-72de-4e42-b1a9-f38fc0dbab2b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:47:30 GMT" + "Sat, 17 Apr 2021 21:10:36 GMT" ], "Content-Length": [ - "1877" + "2092" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1257,26 +1266,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Compute/virtualMachines/a2aVM918\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"vmId\": \"8ac234da-940f-4e49-9f55-8819a978d98d\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2AVM918/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM918\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM918_OsDisk_1_0c12d1210b1c49f783b52ff5249c77bb\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2AVM918/providers/Microsoft.Compute/disks/a2aVM918_OsDisk_1_0c12d1210b1c49f783b52ff5249c77bb\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM918\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Compute/virtualMachines/a2aVM918\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"bde3f2d8-f5fa-421d-9d55-4bb125b79b4f\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM918/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM918\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM918_OsDisk_1_5d9da26740f94b2eb974cf23bc75b546\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Compute/disks/a2aVM918_OsDisk_1_5d9da26740f94b2eb974cf23bc75b546\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM918\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2aVM918?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlZ3JvdXBzL2EyYVZNOTE4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM918?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNOTE4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e4dcb38-63d6-44b5-bd2e-90a9abf39662" + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1287,16 +1296,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11980" ], "x-ms-request-id": [ - "6d085a33-5d3c-4f47-a2d0-880311e37310" + "90956dca-0a4b-422f-aaca-e6a7c344a5b4" ], "x-ms-correlation-request-id": [ - "6d085a33-5d3c-4f47-a2d0-880311e37310" + "90956dca-0a4b-422f-aaca-e6a7c344a5b4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104547Z:6d085a33-5d3c-4f47-a2d0-880311e37310" + "CENTRALUSEUAP:20210417T210903Z:90956dca-0a4b-422f-aaca-e6a7c344a5b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1305,7 +1314,7 @@ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:47 GMT" + "Sat, 17 Apr 2021 21:09:03 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1317,26 +1326,26 @@ "169" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918\",\r\n \"name\": \"a2aVM918\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918\",\r\n \"name\": \"a2aVM918\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTkxOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTkxOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64b3e605-e0ca-454a-abc3-4fa7338db8d9" + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1350,13 +1359,13 @@ "gateway" ], "x-ms-request-id": [ - "b5f04622-9809-4a6e-8fa0-eb9c2eb2e8f0" + "ec17a28f-6480-4346-b60a-7f07cb3b74ac" ], "x-ms-correlation-request-id": [ - "b5f04622-9809-4a6e-8fa0-eb9c2eb2e8f0" + "ec17a28f-6480-4346-b60a-7f07cb3b74ac" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104548Z:b5f04622-9809-4a6e-8fa0-eb9c2eb2e8f0" + "CENTRALUSEUAP:20210417T210904Z:ec17a28f-6480-4346-b60a-7f07cb3b74ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1365,7 +1374,7 @@ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:47 GMT" + "Sat, 17 Apr 2021 21:09:04 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1374,23 +1383,26 @@ "-1" ], "Content-Length": [ - "156" + "224" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/a2aVM918' under resource group 'a2aVM918' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/a2aVM918' under resource group 'a2aVM918' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTkxOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTkxOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1401,16 +1413,16 @@ "no-cache" ], "ETag": [ - "W/\"6cf033b2-d007-41c2-ab78-3fb910279d8c\"" + "W/\"7e921b66-2e59-4e1e-8dd5-b12a0be068a5\"" ], "x-ms-request-id": [ - "395704f4-fb02-4307-8de9-4fec22ed5513" + "982f74d9-051a-41c7-9bd3-54785b494ee7" ], "x-ms-correlation-request-id": [ - "069b2ec4-46d5-492f-9dc1-2212286cb123" + "e57229ab-9238-4c64-b415-aea57a2b68c0" ], "x-ms-arm-service-request-id": [ - "8315b284-4743-43b7-9fa7-5ee2fdb3a906" + "aaf411fe-5537-4a78-96ce-34364e61de58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1420,16 +1432,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11977" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104605Z:069b2ec4-46d5-492f-9dc1-2212286cb123" + "CENTRALUSEUAP:20210417T210913Z:e57229ab-9238-4c64-b415-aea57a2b68c0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:46:04 GMT" + "Sat, 17 Apr 2021 21:09:12 GMT" ], "Content-Length": [ "1913" @@ -1441,26 +1453,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918\",\r\n \"etag\": \"W/\\\"6cf033b2-d007-41c2-ab78-3fb910279d8c\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c226d7f6-3c4b-4d13-b34f-e9c5f747fa0c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918/ipConfigurations/a2aVM918\",\r\n \"etag\": \"W/\\\"6cf033b2-d007-41c2-ab78-3fb910279d8c\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/publicIPAddresses/a2aVM918\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918/subnets/a2aVM918\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ehjgrp5uzc3udiedl4l5yadh4d.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918\",\r\n \"etag\": \"W/\\\"7e921b66-2e59-4e1e-8dd5-b12a0be068a5\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f30b298c-17aa-417d-97e1-f41080d2efef\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918/ipConfigurations/a2aVM918\",\r\n \"etag\": \"W/\\\"7e921b66-2e59-4e1e-8dd5-b12a0be068a5\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/publicIPAddresses/a2aVM918\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918/subnets/a2aVM918\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ldrhxmgacxoedgnru2n5tecrhb.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk05MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk05MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf9ee677-b086-4311-9264-bb152e8f0a00" + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1474,13 +1486,13 @@ "gateway" ], "x-ms-request-id": [ - "a4ecb8b6-a286-411b-95f2-43a774fe246d" + "6d16aa3f-ba4f-412c-9821-6d6866485906" ], "x-ms-correlation-request-id": [ - "a4ecb8b6-a286-411b-95f2-43a774fe246d" + "6d16aa3f-ba4f-412c-9821-6d6866485906" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104548Z:a4ecb8b6-a286-411b-95f2-43a774fe246d" + "CENTRALUSEUAP:20210417T210904Z:6d16aa3f-ba4f-412c-9821-6d6866485906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1489,7 +1501,7 @@ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:48 GMT" + "Sat, 17 Apr 2021 21:09:04 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1498,23 +1510,26 @@ "-1" ], "Content-Length": [ - "154" + "222" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/a2aVM918' under resource group 'a2aVM918' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/a2aVM918' under resource group 'a2aVM918' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk05MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk05MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1525,16 +1540,16 @@ "no-cache" ], "ETag": [ - "W/\"e49fff77-5df4-43a5-bd34-188ce717bc37\"" + "W/\"35c5bedd-6933-4f1f-b752-32381ebe8719\"" ], "x-ms-request-id": [ - "cf500715-72e6-43b7-b3ef-59c397f46354" + "24594c42-f445-4e01-aa33-1c42db521038" ], "x-ms-correlation-request-id": [ - "312941d5-568d-42d2-ad79-55734fa595e5" + "4a1cf0a5-e0d4-42ef-a3cb-1e1bfd82b9ea" ], "x-ms-arm-service-request-id": [ - "6489425f-12b9-4407-b9c0-21ae8146b3d5" + "dfe54a31-925b-440d-a544-494d23522d3e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1544,19 +1559,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11978" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104600Z:312941d5-568d-42d2-ad79-55734fa595e5" + "CENTRALUSEUAP:20210417T210911Z:4a1cf0a5-e0d4-42ef-a3cb-1e1bfd82b9ea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:59 GMT" + "Sat, 17 Apr 2021 21:09:11 GMT" ], "Content-Length": [ - "1108" + "1074" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1565,26 +1580,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918\",\r\n \"etag\": \"W/\\\"e49fff77-5df4-43a5-bd34-188ce717bc37\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"bf68d221-c8f4-41bb-a083-5f97fc0067f3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918/subnets/a2aVM918\",\r\n \"etag\": \"W/\\\"e49fff77-5df4-43a5-bd34-188ce717bc37\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918\",\r\n \"etag\": \"W/\\\"35c5bedd-6933-4f1f-b752-32381ebe8719\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b07be258-15c0-41dc-99b1-a71bf9905139\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918/subnets/a2aVM918\",\r\n \"etag\": \"W/\\\"35c5bedd-6933-4f1f-b752-32381ebe8719\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/publicIPAddresses/a2aVM918?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTkxOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/publicIPAddresses/a2aVM918?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTkxOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f066b08-d90a-4ac7-8429-38cf8bf08989" + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1598,13 +1613,13 @@ "gateway" ], "x-ms-request-id": [ - "87d8df08-7324-415f-8d69-a80e2d52c9b6" + "b3b8075d-0022-4ed5-a4f2-31d1fce058c4" ], "x-ms-correlation-request-id": [ - "87d8df08-7324-415f-8d69-a80e2d52c9b6" + "b3b8075d-0022-4ed5-a4f2-31d1fce058c4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104548Z:87d8df08-7324-415f-8d69-a80e2d52c9b6" + "CENTRALUSEUAP:20210417T210905Z:b3b8075d-0022-4ed5-a4f2-31d1fce058c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1613,7 +1628,7 @@ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:48 GMT" + "Sat, 17 Apr 2021 21:09:05 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1622,23 +1637,26 @@ "-1" ], "Content-Length": [ - "156" + "224" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/a2aVM918' under resource group 'a2aVM918' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/a2aVM918' under resource group 'a2aVM918' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/publicIPAddresses/a2aVM918?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTkxOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/publicIPAddresses/a2aVM918?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTkxOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1649,16 +1667,16 @@ "no-cache" ], "ETag": [ - "W/\"7e8a7937-f31c-4877-8824-3a6b9279952f\"" + "W/\"189efcdd-68a9-4c55-bf26-a83a1b851a55\"" ], "x-ms-request-id": [ - "6892136d-f5d4-4213-afc4-2eb414ab8116" + "d4ff7e30-8f76-4860-ab7d-6f80ba1dc2e4" ], "x-ms-correlation-request-id": [ - "d25a164b-95bb-4aae-804f-55213fed63b7" + "1435a797-f902-44bf-9616-361a05465758" ], "x-ms-arm-service-request-id": [ - "72227c53-6b2b-4611-853b-bc8c78fcfd6f" + "b5bd4a55-95c1-475b-ad09-f42ec4716a99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1668,16 +1686,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11976" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104559Z:d25a164b-95bb-4aae-804f-55213fed63b7" + "CENTRALUSEUAP:20210417T210910Z:1435a797-f902-44bf-9616-361a05465758" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:58 GMT" + "Sat, 17 Apr 2021 21:09:10 GMT" ], "Content-Length": [ "753" @@ -1689,26 +1707,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/publicIPAddresses/a2aVM918\",\r\n \"etag\": \"W/\\\"7e8a7937-f31c-4877-8824-3a6b9279952f\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"48893b81-5011-4881-89d8-ee01b31715d2\",\r\n \"ipAddress\": \"13.64.95.148\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain918\",\r\n \"fqdn\": \"domain918.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/publicIPAddresses/a2aVM918\",\r\n \"etag\": \"W/\\\"189efcdd-68a9-4c55-bf26-a83a1b851a55\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fe00de9d-4626-4ab6-9ee1-bc394711a379\",\r\n \"ipAddress\": \"20.39.55.230\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain918\",\r\n \"fqdn\": \"domain918.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk05MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk05MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d503485c-3e20-4c04-8f46-48cba4405aee" + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1722,13 +1740,13 @@ "gateway" ], "x-ms-request-id": [ - "08af54ff-8095-411b-88f8-ee16ee79a898" + "c984fc87-3939-420e-b40f-5bd9e97b8fae" ], "x-ms-correlation-request-id": [ - "08af54ff-8095-411b-88f8-ee16ee79a898" + "c984fc87-3939-420e-b40f-5bd9e97b8fae" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104549Z:08af54ff-8095-411b-88f8-ee16ee79a898" + "CENTRALUSEUAP:20210417T210906Z:c984fc87-3939-420e-b40f-5bd9e97b8fae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1737,7 +1755,7 @@ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:49 GMT" + "Sat, 17 Apr 2021 21:09:05 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1746,23 +1764,26 @@ "-1" ], "Content-Length": [ - "160" + "228" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/a2aVM918' under resource group 'a2aVM918' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/a2aVM918' under resource group 'a2aVM918' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk05MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk05MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1773,16 +1794,16 @@ "no-cache" ], "ETag": [ - "W/\"a3da3d62-57f6-49a2-801a-6ed0bbc19ba0\"" + "W/\"39bc8b3b-efb9-49b3-b9e2-5ebc6f655aeb\"" ], "x-ms-request-id": [ - "63e2f8c2-77ac-4898-8bc8-aa33d3edfb9e" + "93eb3cdf-ee01-4288-9061-a4ab86bf4e17" ], "x-ms-correlation-request-id": [ - "04e1a8c5-a8f7-4e19-94bc-74f43f8b57ea" + "bdfbdb86-a9dd-408e-a78f-5c1ee9ebdc6a" ], "x-ms-arm-service-request-id": [ - "32b548d6-1bbf-4359-93d8-9585735ea7ff" + "1326e793-7a81-4844-8c19-f6bd25a8e9bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1792,16 +1813,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11974" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104601Z:04e1a8c5-a8f7-4e19-94bc-74f43f8b57ea" + "CENTRALUSEUAP:20210417T210911Z:bdfbdb86-a9dd-408e-a78f-5c1ee9ebdc6a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:46:00 GMT" + "Sat, 17 Apr 2021 21:09:11 GMT" ], "Content-Length": [ "7388" @@ -1813,32 +1834,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918\",\r\n \"etag\": \"W/\\\"a3da3d62-57f6-49a2-801a-6ed0bbc19ba0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d22ecb07-cc54-4692-bf49-22a02195a3b7\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM91822\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/securityRules/a2aVM91822\",\r\n \"etag\": \"W/\\\"a3da3d62-57f6-49a2-801a-6ed0bbc19ba0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"a3da3d62-57f6-49a2-801a-6ed0bbc19ba0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"a3da3d62-57f6-49a2-801a-6ed0bbc19ba0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"a3da3d62-57f6-49a2-801a-6ed0bbc19ba0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"a3da3d62-57f6-49a2-801a-6ed0bbc19ba0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"a3da3d62-57f6-49a2-801a-6ed0bbc19ba0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"a3da3d62-57f6-49a2-801a-6ed0bbc19ba0\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918\",\r\n \"etag\": \"W/\\\"39bc8b3b-efb9-49b3-b9e2-5ebc6f655aeb\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"6617af45-aac5-46c2-8ee9-d098b6c48edc\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM91822\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/securityRules/a2aVM91822\",\r\n \"etag\": \"W/\\\"39bc8b3b-efb9-49b3-b9e2-5ebc6f655aeb\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"39bc8b3b-efb9-49b3-b9e2-5ebc6f655aeb\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"39bc8b3b-efb9-49b3-b9e2-5ebc6f655aeb\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"39bc8b3b-efb9-49b3-b9e2-5ebc6f655aeb\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"39bc8b3b-efb9-49b3-b9e2-5ebc6f655aeb\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"39bc8b3b-efb9-49b3-b9e2-5ebc6f655aeb\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"39bc8b3b-efb9-49b3-b9e2-5ebc6f655aeb\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk05MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk05MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"name\": \"a2aVM918\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"a2aVM91822\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5e8d8045-1456-4c25-8ebe-d1a52bd27ad2" + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "300" + "451" ] }, "ResponseHeaders": { @@ -1852,19 +1873,19 @@ "3" ], "x-ms-request-id": [ - "97175bb0-5ec6-43e9-8444-e312ad7412d3" + "97baf5a4-25f5-4bb5-a05a-66c2ad4e07f5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/westus/operations/97175bb0-5ec6-43e9-8444-e312ad7412d3?api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/97baf5a4-25f5-4bb5-a05a-66c2ad4e07f5?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "9ec88a15-6595-4b13-b299-46b88b4dd7ae" + "d9dc807e-7fec-4454-b251-ce5709d029a4" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "cad73b3f-16f4-4e6f-82d2-fbeacc4ff441" + "29057773-4319-487c-aef7-a69c9b766c31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1874,19 +1895,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1194" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104556Z:9ec88a15-6595-4b13-b299-46b88b4dd7ae" + "CENTRALUSEUAP:20210417T210907Z:d9dc807e-7fec-4454-b251-ce5709d029a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:56 GMT" + "Sat, 17 Apr 2021 21:09:07 GMT" ], "Content-Length": [ - "1106" + "7380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1895,32 +1916,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918\",\r\n \"etag\": \"W/\\\"600d841c-b220-4cc2-beb7-fe047625367b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"bf68d221-c8f4-41bb-a083-5f97fc0067f3\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918/subnets/a2aVM918\",\r\n \"etag\": \"W/\\\"600d841c-b220-4cc2-beb7-fe047625367b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918\",\r\n \"etag\": \"W/\\\"96bb1164-a5fe-4a86-ad02-712f6d0fba0d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"6617af45-aac5-46c2-8ee9-d098b6c48edc\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM91822\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/securityRules/a2aVM91822\",\r\n \"etag\": \"W/\\\"96bb1164-a5fe-4a86-ad02-712f6d0fba0d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"96bb1164-a5fe-4a86-ad02-712f6d0fba0d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"96bb1164-a5fe-4a86-ad02-712f6d0fba0d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"96bb1164-a5fe-4a86-ad02-712f6d0fba0d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"96bb1164-a5fe-4a86-ad02-712f6d0fba0d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"96bb1164-a5fe-4a86-ad02-712f6d0fba0d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"96bb1164-a5fe-4a86-ad02-712f6d0fba0d\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/publicIPAddresses/a2aVM918?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTkxOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk05MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain918\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"name\": \"a2aVM918\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0592e398-f8ba-4106-a9ad-349f65c809a0" + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "202" + "300" ] }, "ResponseHeaders": { @@ -1931,44 +1952,44 @@ "no-cache" ], "Retry-After": [ - "1" + "3" ], "x-ms-request-id": [ - "d4cb178e-8d19-4e72-b570-ad8c3e9c4e8c" + "8d7850c0-417a-4e53-b265-52ddd12a0674" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/westus/operations/d4cb178e-8d19-4e72-b570-ad8c3e9c4e8c?api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/8d7850c0-417a-4e53-b265-52ddd12a0674?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "d77c525e-2fc0-4e04-a109-c10c54792794" + "a6be8339-6b81-4206-aa89-ca1d376107fc" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "0d6ca046-e5f1-4d1c-8c4e-708892215aaa" + "1f7aeec9-a83b-458e-8fd3-ed6d18f50d9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104557Z:d77c525e-2fc0-4e04-a109-c10c54792794" + "CENTRALUSEUAP:20210417T210908Z:a6be8339-6b81-4206-aa89-ca1d376107fc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:56 GMT" + "Sat, 17 Apr 2021 21:09:07 GMT" ], "Content-Length": [ - "718" + "1072" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1977,32 +1998,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/publicIPAddresses/a2aVM918\",\r\n \"etag\": \"W/\\\"662bef5a-3411-4f0f-bd7e-37e75214359c\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"48893b81-5011-4881-89d8-ee01b31715d2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain918\",\r\n \"fqdn\": \"domain918.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918\",\r\n \"etag\": \"W/\\\"9720e32e-35be-450b-a451-9c504ab316c8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b07be258-15c0-41dc-99b1-a71bf9905139\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918/subnets/a2aVM918\",\r\n \"etag\": \"W/\\\"9720e32e-35be-450b-a451-9c504ab316c8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk05MTg/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/publicIPAddresses/a2aVM918?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTkxOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"a2aVM91822\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain918\"\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4eba7870-91d1-4626-8cc6-4cfabb4c7f9e" + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "451" + "202" ] }, "ResponseHeaders": { @@ -2013,22 +2034,22 @@ "no-cache" ], "Retry-After": [ - "3" + "1" ], "x-ms-request-id": [ - "f5f848c3-8ad2-4362-8a47-596a8c5171fb" + "34f95876-f8c8-4416-b15d-13598b148db0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/westus/operations/f5f848c3-8ad2-4362-8a47-596a8c5171fb?api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/34f95876-f8c8-4416-b15d-13598b148db0?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "4d20ef26-c6c9-43c8-b5ad-4ecce50a0906" + "0e77c5d7-0da0-4bab-be02-aee678df1d2a" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "40f12b57-abd4-4196-b4e6-3673cb634398" + "0b82deb5-aa16-4213-9493-acc00628fc5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2038,19 +2059,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104557Z:4d20ef26-c6c9-43c8-b5ad-4ecce50a0906" + "CENTRALUSEUAP:20210417T210908Z:0e77c5d7-0da0-4bab-be02-aee678df1d2a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:56 GMT" + "Sat, 17 Apr 2021 21:09:07 GMT" ], "Content-Length": [ - "7380" + "718" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2059,20 +2080,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918\",\r\n \"etag\": \"W/\\\"61ffebea-d882-4af8-825d-c4435eabbb32\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d22ecb07-cc54-4692-bf49-22a02195a3b7\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM91822\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/securityRules/a2aVM91822\",\r\n \"etag\": \"W/\\\"61ffebea-d882-4af8-825d-c4435eabbb32\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"61ffebea-d882-4af8-825d-c4435eabbb32\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"61ffebea-d882-4af8-825d-c4435eabbb32\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"61ffebea-d882-4af8-825d-c4435eabbb32\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"61ffebea-d882-4af8-825d-c4435eabbb32\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"61ffebea-d882-4af8-825d-c4435eabbb32\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"61ffebea-d882-4af8-825d-c4435eabbb32\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/publicIPAddresses/a2aVM918\",\r\n \"etag\": \"W/\\\"0d7f90a3-0973-4c15-811f-b31f9ff8df22\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fe00de9d-4626-4ab6-9ee1-bc394711a379\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain918\",\r\n \"fqdn\": \"domain918.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/westus/operations/d4cb178e-8d19-4e72-b570-ad8c3e9c4e8c?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDRjYjE3OGUtOGQxOS00ZTcyLWI1NzAtYWQ4YzNlOWM0ZThjP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/34f95876-f8c8-4416-b15d-13598b148db0?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzRmOTU4NzYtZjhjOC00NDE2LWIxNWQtMTM1OThiMTQ4ZGIwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -2083,13 +2107,13 @@ "no-cache" ], "x-ms-request-id": [ - "95bc2254-b034-473e-86f9-48e9e510c1cb" + "8048f4be-7998-43c0-9081-a0fa7760d3e8" ], "x-ms-correlation-request-id": [ - "3696731e-95e6-4f89-bc6e-587a1f5978a4" + "a8e8cce8-57d4-436a-bc28-969bf547619c" ], "x-ms-arm-service-request-id": [ - "47bfc6b1-8726-41c4-8f2e-a7c4a50f1f4e" + "d0cbe43f-5961-42aa-835b-051f154013af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2099,16 +2123,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11977" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104559Z:3696731e-95e6-4f89-bc6e-587a1f5978a4" + "CENTRALUSEUAP:20210417T210909Z:a8e8cce8-57d4-436a-bc28-969bf547619c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:58 GMT" + "Sat, 17 Apr 2021 21:09:08 GMT" ], "Content-Length": [ "29" @@ -2124,16 +2148,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/westus/operations/97175bb0-5ec6-43e9-8444-e312ad7412d3?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTcxNzViYjAtNWVjNi00M2U5LTg0NDQtZTMxMmFkNzQxMmQzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/97baf5a4-25f5-4bb5-a05a-66c2ad4e07f5?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTdiYWY1YTQtMjVmNS00YmI1LWEwNWEtNjZjMmFkNGUwN2Y1P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -2144,13 +2171,13 @@ "no-cache" ], "x-ms-request-id": [ - "64bbc4d4-7de0-4bc8-bf82-846cc9fd368c" + "614ddc40-fb12-42d4-b80c-3c68d8c74499" ], "x-ms-correlation-request-id": [ - "901e8d5f-4c02-4caa-8d44-776b283ba13e" + "a9505729-5162-4e58-9cf7-bf85343e0cb6" ], "x-ms-arm-service-request-id": [ - "1ea96797-2d96-44b9-ad75-a55802b5d210" + "b5d75486-2bf7-4ebf-89df-019e17f6b2a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2160,16 +2187,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11975" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104559Z:901e8d5f-4c02-4caa-8d44-776b283ba13e" + "CENTRALUSEUAP:20210417T210910Z:a9505729-5162-4e58-9cf7-bf85343e0cb6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:45:59 GMT" + "Sat, 17 Apr 2021 21:09:10 GMT" ], "Content-Length": [ "29" @@ -2185,16 +2212,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/westus/operations/f5f848c3-8ad2-4362-8a47-596a8c5171fb?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZjVmODQ4YzMtOGFkMi00MzYyLThhNDctNTk2YThjNTE3MWZiP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/8d7850c0-417a-4e53-b265-52ddd12a0674?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGQ3ODUwYzAtNDE3YS00ZTUzLWIyNjUtNTJkZGQxMmEwNjc0P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -2205,13 +2235,13 @@ "no-cache" ], "x-ms-request-id": [ - "8971f1bd-5ff5-456e-ba0f-d73cb5b35ae8" + "40f6f878-2a1a-4796-8161-aa9b3e7a08f8" ], "x-ms-correlation-request-id": [ - "d168d5fb-9441-4088-abb9-574b34f7a726" + "af37122c-2b2e-44c2-aae1-3f43d1abdf46" ], "x-ms-arm-service-request-id": [ - "15b81877-e696-4b7d-b3d5-33ce4c393096" + "0281ca59-f946-40d4-9af8-204128c83a0c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2221,16 +2251,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11979" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104600Z:d168d5fb-9441-4088-abb9-574b34f7a726" + "CENTRALUSEUAP:20210417T210911Z:af37122c-2b2e-44c2-aae1-3f43d1abdf46" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:46:00 GMT" + "Sat, 17 Apr 2021 21:09:11 GMT" ], "Content-Length": [ "29" @@ -2246,22 +2276,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTkxOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTkxOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918/subnets/a2aVM918\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/publicIPAddresses/a2aVM918\"\r\n }\r\n },\r\n \"name\": \"a2aVM918\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918/subnets/a2aVM918\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/publicIPAddresses/a2aVM918\"\r\n }\r\n },\r\n \"name\": \"a2aVM918\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9959ee86-9c5a-4050-b99d-42985d04ad90" + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2278,19 +2308,19 @@ "no-cache" ], "x-ms-request-id": [ - "5184ea2e-af40-492b-9ead-9c3e683f27f8" + "a10b7b62-de0c-4753-a2be-ebb42dc1d480" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/westus/operations/5184ea2e-af40-492b-9ead-9c3e683f27f8?api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/a10b7b62-de0c-4753-a2be-ebb42dc1d480?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "b94f6f49-1edd-47aa-b1d9-05c9dd6bef54" + "d1cfc8f7-9a5b-4565-8d6e-f9d738ff0208" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "8530d1fb-1f1d-43dc-bb82-cdcf8667177c" + "e62cd3c7-1ce8-429d-a988-210610c6428d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2300,16 +2330,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104605Z:b94f6f49-1edd-47aa-b1d9-05c9dd6bef54" + "CENTRALUSEUAP:20210417T210912Z:d1cfc8f7-9a5b-4565-8d6e-f9d738ff0208" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:46:04 GMT" + "Sat, 17 Apr 2021 21:09:12 GMT" ], "Content-Length": [ "1913" @@ -2321,26 +2351,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918\",\r\n \"etag\": \"W/\\\"6cf033b2-d007-41c2-ab78-3fb910279d8c\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c226d7f6-3c4b-4d13-b34f-e9c5f747fa0c\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918/ipConfigurations/a2aVM918\",\r\n \"etag\": \"W/\\\"6cf033b2-d007-41c2-ab78-3fb910279d8c\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/publicIPAddresses/a2aVM918\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918/subnets/a2aVM918\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ehjgrp5uzc3udiedl4l5yadh4d.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918\",\r\n \"etag\": \"W/\\\"7e921b66-2e59-4e1e-8dd5-b12a0be068a5\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"f30b298c-17aa-417d-97e1-f41080d2efef\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918/ipConfigurations/a2aVM918\",\r\n \"etag\": \"W/\\\"7e921b66-2e59-4e1e-8dd5-b12a0be068a5\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/publicIPAddresses/a2aVM918\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918/subnets/a2aVM918\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"ldrhxmgacxoedgnru2n5tecrhb.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkSecurityGroups/a2aVM918\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Compute/virtualMachines/a2aVM918?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk05MTg/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Compute/virtualMachines/a2aVM918?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTE4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk05MTg/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM918\",\r\n \"adminUsername\": \"adminUser\",\r\n \"adminPassword\": \"System.Security.SecureString\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918\"\r\n }\r\n ]\r\n },\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM918\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM918\",\r\n \"adminUsername\": \"adminUser\",\r\n \"adminPassword\": \"System.Security.SecureString\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918\"\r\n }\r\n ]\r\n },\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM918\"\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "46f2bff2-e8bf-4ce8-b1aa-24e8ec8bcdbd" + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2360,41 +2390,41 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Compute/locations/westus/operations/5a19083a-dbf8-4202-8394-429198422fba?api-version=2019-12-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/5ff248c9-f094-4321-adf9-305b9ca3d71a?api-version=2020-12-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199" + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5a19083a-dbf8-4202-8394-429198422fba" + "5ff248c9-f094-4321-adf9-305b9ca3d71a" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "9816b38a-7892-4e51-b071-dc93b440fd4a" + "6c0f8412-75ca-4177-8f73-10a1b6b1e87f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104609Z:9816b38a-7892-4e51-b071-dc93b440fd4a" + "CENTRALUSEUAP:20210417T210914Z:6c0f8412-75ca-4177-8f73-10a1b6b1e87f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:46:08 GMT" + "Sat, 17 Apr 2021 21:09:14 GMT" ], "Content-Length": [ - "1624" + "1839" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2403,20 +2433,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Compute/virtualMachines/a2aVM918\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"vmId\": \"8ac234da-940f-4e49-9f55-8819a978d98d\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2AVM918/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM918\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM918\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM918\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Compute/virtualMachines/a2aVM918\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"bde3f2d8-f5fa-421d-9d55-4bb125b79b4f\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM918/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM918\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM918\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Compute/locations/westus/operations/5a19083a-dbf8-4202-8394-429198422fba?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWExOTA4M2EtZGJmOC00MjAyLTgzOTQtNDI5MTk4NDIyZmJhP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/5ff248c9-f094-4321-adf9-305b9ca3d71a?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWZmMjQ4YzktZjA5NC00MzIxLWFkZjktMzA1YjljYTNkNzFhP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2430,32 +2463,32 @@ "35" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29980" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29993" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0d91a44f-493c-4f58-bb41-9559c338db96" + "b6b37db9-4bc8-4f00-ba60-ef06946d8f55" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11987" ], "x-ms-correlation-request-id": [ - "3907a758-5e8b-446c-a9a9-ac8fd419420d" + "ab13fc18-0575-4a01-a464-c09cb1399fee" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104619Z:3907a758-5e8b-446c-a9a9-ac8fd419420d" + "CENTRALUSEUAP:20210417T210925Z:ab13fc18-0575-4a01-a464-c09cb1399fee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:46:18 GMT" + "Sat, 17 Apr 2021 21:09:25 GMT" ], "Content-Length": [ "134" @@ -2467,20 +2500,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-05-03T16:16:07.8515833+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5a19083a-dbf8-4202-8394-429198422fba\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-04-18T02:39:14.3356708+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ff248c9-f094-4321-adf9-305b9ca3d71a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Compute/locations/westus/operations/5a19083a-dbf8-4202-8394-429198422fba?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWExOTA4M2EtZGJmOC00MjAyLTgzOTQtNDI5MTk4NDIyZmJhP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/5ff248c9-f094-4321-adf9-305b9ca3d71a?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWZmMjQ4YzktZjA5NC00MzIxLWFkZjktMzA1YjljYTNkNzFhP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2491,32 +2527,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29979" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29992" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b95458e4-3249-4d6a-ad48-9fccf4f435ed" + "7a5257d7-5dfa-4ca0-9332-ccd5d253f3aa" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11986" ], "x-ms-correlation-request-id": [ - "d42536e7-8c62-44c6-98c0-ed4e2d7b7474" + "f785abbb-4de4-4316-819c-49a188b920ba" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104654Z:d42536e7-8c62-44c6-98c0-ed4e2d7b7474" + "CENTRALUSEUAP:20210417T211000Z:f785abbb-4de4-4316-819c-49a188b920ba" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:46:54 GMT" + "Sat, 17 Apr 2021 21:10:00 GMT" ], "Content-Length": [ "134" @@ -2528,20 +2564,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-05-03T16:16:07.8515833+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5a19083a-dbf8-4202-8394-429198422fba\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-04-18T02:39:14.3356708+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5ff248c9-f094-4321-adf9-305b9ca3d71a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Compute/locations/westus/operations/5a19083a-dbf8-4202-8394-429198422fba?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNWExOTA4M2EtZGJmOC00MjAyLTgzOTQtNDI5MTk4NDIyZmJhP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/5ff248c9-f094-4321-adf9-305b9ca3d71a?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWZmMjQ4YzktZjA5NC00MzIxLWFkZjktMzA1YjljYTNkNzFhP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "71b1d3f3-b47d-4654-b27f-1a8e38b2581d" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2552,35 +2591,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29977" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29990" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "11342004-244a-45a4-913f-62d4918554a4" + "e3f52037-94a3-490c-97e0-f43b5fc033ad" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11985" ], "x-ms-correlation-request-id": [ - "44f233e6-d3bc-4dcc-9a34-2e7d4facdd60" + "5b8ec06a-aa7b-4ef5-925a-dea47731408a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104730Z:44f233e6-d3bc-4dcc-9a34-2e7d4facdd60" + "CENTRALUSEUAP:20210417T211035Z:5b8ec06a-aa7b-4ef5-925a-dea47731408a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:47:29 GMT" + "Sat, 17 Apr 2021 21:10:35 GMT" ], "Content-Length": [ - "184" + "183" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2589,32 +2628,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-05-03T16:16:07.8515833+05:30\",\r\n \"endTime\": \"2020-05-03T16:17:12.9617867+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5a19083a-dbf8-4202-8394-429198422fba\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-04-18T02:39:14.3356708+05:30\",\r\n \"endTime\": \"2021-04-18T02:40:18.617031+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5ff248c9-f094-4321-adf9-305b9ca3d71a\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/A2APowershellTestRg918?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/A2APowershellTestRg918?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTg/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ab872e7c-7671-4e6e-9fb9-84c08e7131ca" + "3719b625-9cac-4fe4-b3a1-b7f2d25c78d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "28" + "35" ] }, "ResponseHeaders": { @@ -2625,16 +2664,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1187" ], "x-ms-request-id": [ - "9f795f56-1f34-42ab-ae56-48b96189b9c1" + "c39905be-69a4-47df-a90b-465f81478487" ], "x-ms-correlation-request-id": [ - "9f795f56-1f34-42ab-ae56-48b96189b9c1" + "c39905be-69a4-47df-a90b-465f81478487" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104733Z:9f795f56-1f34-42ab-ae56-48b96189b9c1" + "CENTRALUSEUAP:20210417T211037Z:c39905be-69a4-47df-a90b-465f81478487" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2643,10 +2682,10 @@ "nosniff" ], "Date": [ - "Sun, 03 May 2020 10:47:32 GMT" + "Sat, 17 Apr 2021 21:10:37 GMT" ], "Content-Length": [ - "197" + "204" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2655,32 +2694,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918\",\r\n \"name\": \"A2APowershellTestRg918\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918\",\r\n \"name\": \"A2APowershellTestRg918\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "60c07325-d2f2-4f8c-984b-2898c9b19a23-2020-05-03 10:47:53Z-P" + "df38d714-d323-48b1-b5d8-6d17fdedf35f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "91" + "98" ] }, "ResponseHeaders": { @@ -2694,10 +2733,10 @@ "nosniff" ], "x-ms-request-id": [ - "1277977a-ceea-457e-98de-38d64af554da" + "ca43e9c0-9712-4c17-93d9-25c16f33465b" ], "x-ms-client-request-id": [ - "60c07325-d2f2-4f8c-984b-2898c9b19a23-2020-05-03 10:47:53Z-P" + "df38d714-d323-48b1-b5d8-6d17fdedf35f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2706,19 +2745,19 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "199" + "208" ], "x-ms-correlation-request-id": [ - "1277977a-ceea-457e-98de-38d64af554da" + "ca43e9c0-9712-4c17-93d9-25c16f33465b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104804Z:1277977a-ceea-457e-98de-38d64af554da" + "CENTRALUSEUAP:20210417T211101Z:ca43e9c0-9712-4c17-93d9-25c16f33465b" ], "Date": [ - "Sun, 03 May 2020 10:48:03 GMT" + "Sat, 17 Apr 2021 21:11:01 GMT" ], "Content-Length": [ - "471" + "478" ], "Content-Type": [ "application/json" @@ -2727,26 +2766,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"eastus\",\r\n \"name\": \"A2APowershellTest918\",\r\n \"etag\": \"W/\\\"datetime'2020-05-03T10%3A48%3A02.1845589Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest918\",\r\n \"etag\": \"W/\\\"datetime'2021-04-17T21%3A11%3A01.1521441Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c05dcef1-3f83-46db-ae85-3a2c2d5ff0d5-2020-05-03 10:48:24Z-P" + "655dd9fe-833b-4a9a-8bdf-cb425ba63188" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, "ResponseHeaders": { @@ -2760,10 +2799,10 @@ "nosniff" ], "x-ms-request-id": [ - "6eb15366-0704-4319-945d-f56ce3ab8251" + "05ac5177-7d6a-4c81-95b1-a880d772d180" ], "x-ms-client-request-id": [ - "c05dcef1-3f83-46db-ae85-3a2c2d5ff0d5-2020-05-03 10:48:24Z-P" + "655dd9fe-833b-4a9a-8bdf-cb425ba63188" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2772,19 +2811,19 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11979" ], "x-ms-correlation-request-id": [ - "6eb15366-0704-4319-945d-f56ce3ab8251" + "05ac5177-7d6a-4c81-95b1-a880d772d180" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104824Z:6eb15366-0704-4319-945d-f56ce3ab8251" + "CENTRALUSEUAP:20210417T211121Z:05ac5177-7d6a-4c81-95b1-a880d772d180" ], "Date": [ - "Sun, 03 May 2020 10:48:24 GMT" + "Sat, 17 Apr 2021 21:11:21 GMT" ], "Content-Length": [ - "471" + "478" ], "Content-Type": [ "application/json" @@ -2793,17 +2832,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"eastus\",\r\n \"name\": \"A2APowershellTest918\",\r\n \"etag\": \"W/\\\"datetime'2020-05-03T10%3A48%3A02.1845589Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest918\",\r\n \"etag\": \"W/\\\"datetime'2021-04-17T21%3A11%3A01.1521441Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9leHRlbmRlZEluZm9ybWF0aW9uL3ZhdWx0RXh0ZW5kZWRJbmZvP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9leHRlbmRlZEluZm9ybWF0aW9uL3ZhdWx0RXh0ZW5kZWRJbmZvP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fe718dd-d8dc-43e8-9825-ba7b703c3dfd-2020-05-03 10:48:24Z-Ps" + "d88b39a3-08a2-42e6-9fda-65cccd78a94f" ], "Accept-Language": [ "en-US" @@ -2812,10 +2851,10 @@ "" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, "ResponseHeaders": { @@ -2829,10 +2868,10 @@ "nosniff" ], "x-ms-request-id": [ - "e5e2658a-2dad-422c-ab39-883235ffae7d" + "24ec1d0d-da07-4be5-898f-b9341541bcc0" ], "x-ms-client-request-id": [ - "8fe718dd-d8dc-43e8-9825-ba7b703c3dfd-2020-05-03 10:48:24Z-Ps" + "d88b39a3-08a2-42e6-9fda-65cccd78a94f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2841,16 +2880,16 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11978" ], "x-ms-correlation-request-id": [ - "e5e2658a-2dad-422c-ab39-883235ffae7d" + "24ec1d0d-da07-4be5-898f-b9341541bcc0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104825Z:e5e2658a-2dad-422c-ab39-883235ffae7d" + "CENTRALUSEUAP:20210417T211122Z:24ec1d0d-da07-4be5-898f-b9341541bcc0" ], "Date": [ - "Sun, 03 May 2020 10:48:24 GMT" + "Sat, 17 Apr 2021 21:11:21 GMT" ], "Content-Length": [ "86" @@ -2866,13 +2905,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9leHRlbmRlZEluZm9ybWF0aW9uL3ZhdWx0RXh0ZW5kZWRJbmZvP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9leHRlbmRlZEluZm9ybWF0aW9uL3ZhdWx0RXh0ZW5kZWRJbmZvP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"D90jFvz1dr/mkF2vX0bCUQ==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"kTho5OgaN8EZQm+vGF0i1A==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6d18f257-7819-43f9-a264-5cc6401ceb6a-2020-05-03 10:48:25Z-Ps" + "d88b39a3-08a2-42e6-9fda-65cccd78a94f" ], "Accept-Language": [ "en-US" @@ -2881,10 +2920,10 @@ "" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2904,10 +2943,10 @@ "nosniff" ], "x-ms-request-id": [ - "32986bc8-e24d-4df9-9d6b-9bf6fb2749ed" + "49e16429-878d-4d5c-b836-5d6ccf5952ea" ], "x-ms-client-request-id": [ - "6d18f257-7819-43f9-a264-5cc6401ceb6a-2020-05-03 10:48:25Z-Ps" + "d88b39a3-08a2-42e6-9fda-65cccd78a94f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2916,16 +2955,16 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1186" ], "x-ms-correlation-request-id": [ - "32986bc8-e24d-4df9-9d6b-9bf6fb2749ed" + "49e16429-878d-4d5c-b836-5d6ccf5952ea" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104826Z:32986bc8-e24d-4df9-9d6b-9bf6fb2749ed" + "CENTRALUSEUAP:20210417T211122Z:49e16429-878d-4d5c-b836-5d6ccf5952ea" ], "Date": [ - "Sun, 03 May 2020 10:48:25 GMT" + "Sat, 17 Apr 2021 21:11:21 GMT" ], "Content-Length": [ "412" @@ -2937,26 +2976,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"b0e90563-86f6-40b7-a0b3-eee673a93e11\",\r\n \"properties\": {\r\n \"integrityKey\": \"D90jFvz1dr/mkF2vX0bCUQ==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"5682aa61-4d8f-4fd5-ac88-4f14f89d3a80\",\r\n \"properties\": {\r\n \"integrityKey\": \"kTho5OgaN8EZQm+vGF0i1A==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f4c72f6-1ae2-43c7-82fc-db4764dc8964" + "d88b39a3-08a2-42e6-9fda-65cccd78a94f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, "ResponseHeaders": { @@ -2970,10 +3009,10 @@ "nosniff" ], "x-ms-request-id": [ - "dd14e3b2-4614-4624-b7f5-2c6dfcff5fe3" + "4d72c2a5-22b4-4243-be6a-8c17e716143f" ], "x-ms-client-request-id": [ - "5f4c72f6-1ae2-43c7-82fc-db4764dc8964" + "d88b39a3-08a2-42e6-9fda-65cccd78a94f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2982,19 +3021,19 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11977" ], "x-ms-correlation-request-id": [ - "dd14e3b2-4614-4624-b7f5-2c6dfcff5fe3" + "4d72c2a5-22b4-4243-be6a-8c17e716143f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104826Z:dd14e3b2-4614-4624-b7f5-2c6dfcff5fe3" + "CENTRALUSEUAP:20210417T211123Z:4d72c2a5-22b4-4243-be6a-8c17e716143f" ], "Date": [ - "Sun, 03 May 2020 10:48:26 GMT" + "Sat, 17 Apr 2021 21:11:23 GMT" ], "Content-Length": [ - "483" + "490" ], "Content-Type": [ "application/json" @@ -3003,29 +3042,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"A2APowershellTest918\",\r\n \"etag\": \"W/\\\"datetime'2020-05-03T10%3A48%3A26.1726068Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918\",\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\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest918\",\r\n \"etag\": \"W/\\\"datetime'2021-04-17T21%3A11%3A22.6936265Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918\",\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/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westus\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"EastUS\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dd209569-2fe0-43a5-ba8c-ac2953ada076-2020-05-03 10:48:26Z-Ps" + "8aac4060-a6c9-420f-b637-29bec088a0ca" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499306907)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104106907)\\/\",\"ClientRequestId\":\"dd209569-2fe0-43a5-ba8c-ac2953ada076-2020-05-03 10:48:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"t9azfVrcStRJlh4uWhfu1m4e+2N2keSjHFgwpPJkaNM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690283299)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295083299)\\/\",\"ClientRequestId\":\"03a95fa4-df24-4f00-a98d-7bd5aaa93ff6-2021-04-17 21:11:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4PgPcDEgxFKtuMKTU1LRjiOC/6n+jMS/xZhtCKqc4yQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3042,41 +3081,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/operationresults/117cfb76-c33e-4931-9992-71c6d66c5b35?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/operationresults/7c6394b2-1366-4bff-bdd2-7da2f884ce0a?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35", - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/117cfb76-c33e-4931-9992-71c6d66c5b35?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/7c6394b2-1366-4bff-bdd2-7da2f884ce0a?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "dd209569-2fe0-43a5-ba8c-ac2953ada076-2020-05-03 10:48:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "8aac4060-a6c9-420f-b637-29bec088a0ca" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-correlation-request-id": [ - "674c78cc-760f-4198-b435-9cb77a6457f9" + "4c0384ee-f590-47c0-8a62-4a1031a16d17" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104828Z:674c78cc-760f-4198-b435-9cb77a6457f9" + "CENTRALUSEUAP:20210417T211125Z:4c0384ee-f590-47c0-8a62-4a1031a16d17" ], "Date": [ - "Sun, 03 May 2020 10:48:27 GMT" + "Sat, 17 Apr 2021 21:11:24 GMT" ], "Expires": [ "-1" @@ -3089,25 +3125,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvMTE3Y2ZiNzYtYzMzZS00OTMxLTk5OTItNzFjNmQ2NmM1YjM1P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvN2M2Mzk0YjItMTM2Ni00YmZmLWJkZDItN2RhMmY4ODRjZTBhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a5b557b-300b-4f47-b7d9-cabbe095e57b-2020-05-03 10:48:28Z-Ps" + "8aac4060-a6c9-420f-b637-29bec088a0ca" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499308414)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104108414)\\/\",\"ClientRequestId\":\"4a5b557b-300b-4f47-b7d9-cabbe095e57b-2020-05-03 10:48:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5SQ6CUN5yJNPc+B/V80+N+Br4apc6LTuOiKcB8Cs0Hw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690285534)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295085534)\\/\",\"ClientRequestId\":\"8421c07e-e2dd-426d-b2f7-31776b715e9e-2021-04-17 21:11:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ltV0jqfdd7VPN4rHQac63VZr+Rr2UlW5LOKnS59cuQs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3118,38 +3154,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11982" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "4a5b557b-300b-4f47-b7d9-cabbe095e57b-2020-05-03 10:48:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8aac4060-a6c9-420f-b637-29bec088a0ca" ], "x-ms-correlation-request-id": [ - "1e2fde3b-5743-4d4d-a90f-f7608fbe5550" + "ef8bc0bd-f26a-4bab-a4d7-cf2a977f6c33" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104828Z:1e2fde3b-5743-4d4d-a90f-f7608fbe5550" + "CENTRALUSEUAP:20210417T211125Z:ef8bc0bd-f26a-4bab-a4d7-cf2a977f6c33" ], "Date": [ - "Sun, 03 May 2020 10:48:27 GMT" + "Sat, 17 Apr 2021 21:11:25 GMT" ], "Content-Length": [ - "1343" + "1319" ], "Content-Type": [ "application/json" @@ -3158,29 +3191,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"dd209569-2fe0-43a5-ba8c-ac2953ada076-2020-05-03 10:48:26Z-Ps ActivityId: 674c78cc-760f-4198-b435-9cb77a6457f9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-05-03T10:48:28.0749781Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"8aac4060-a6c9-420f-b637-29bec088a0ca ActivityId: 4c0384ee-f590-47c0-8a62-4a1031a16d17\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:11:25.1606903Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvMTE3Y2ZiNzYtYzMzZS00OTMxLTk5OTItNzFjNmQ2NmM1YjM1P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvN2M2Mzk0YjItMTM2Ni00YmZmLWJkZDItN2RhMmY4ODRjZTBhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3133b153-ba86-4f7b-8be5-eccc3e2637c9-2020-05-03 10:48:28Z-Ps" + "283f5a87-f43b-44b6-9b6e-61403beb978c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499308907)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104108907)\\/\",\"ClientRequestId\":\"3133b153-ba86-4f7b-8be5-eccc3e2637c9-2020-05-03 10:48:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cvSICCqsPkqigBXyi7Oa0TS1cZLCMFQ7omS7atcDoHI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690285974)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295085974)\\/\",\"ClientRequestId\":\"15f979af-76a9-4af1-8b6d-444e4907ddbd-2021-04-17 21:11:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vdLDUNQBIrxWqH5AUqglgGOcu1G7Bji6RQwgjNieMH4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3191,38 +3224,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11981" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3133b153-ba86-4f7b-8be5-eccc3e2637c9-2020-05-03 10:48:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "283f5a87-f43b-44b6-9b6e-61403beb978c" ], "x-ms-correlation-request-id": [ - "edd0c426-dada-4614-92cb-e589ba4d072c" + "aee60029-5de9-49d4-8a7e-d40b018464c2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104829Z:edd0c426-dada-4614-92cb-e589ba4d072c" + "CENTRALUSEUAP:20210417T211126Z:aee60029-5de9-49d4-8a7e-d40b018464c2" ], "Date": [ - "Sun, 03 May 2020 10:48:29 GMT" + "Sat, 17 Apr 2021 21:11:25 GMT" ], "Content-Length": [ - "1343" + "1319" ], "Content-Type": [ "application/json" @@ -3231,29 +3261,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"dd209569-2fe0-43a5-ba8c-ac2953ada076-2020-05-03 10:48:26Z-Ps ActivityId: 674c78cc-760f-4198-b435-9cb77a6457f9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-05-03T10:48:28.0749781Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"8aac4060-a6c9-420f-b637-29bec088a0ca ActivityId: 4c0384ee-f590-47c0-8a62-4a1031a16d17\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:11:25.1606903Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvMTE3Y2ZiNzYtYzMzZS00OTMxLTk5OTItNzFjNmQ2NmM1YjM1P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvN2M2Mzk0YjItMTM2Ni00YmZmLWJkZDItN2RhMmY4ODRjZTBhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7b0a945-3c44-478d-9fa2-420f6ae5f697-2020-05-03 10:48:49Z-Ps" + "9e07c985-b8b9-457a-b688-5bf7d3cc52c7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499329563)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104129563)\\/\",\"ClientRequestId\":\"d7b0a945-3c44-478d-9fa2-420f6ae5f697-2020-05-03 10:48:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"x+eDHaMs0H0tZJhpjff3fGFj8uA37aYyKO/pkyf1jME=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690306361)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295106361)\\/\",\"ClientRequestId\":\"67b6e128-adca-484e-bb7c-88c6cde9b553-2021-04-17 21:11:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EzYzH85lw0v16uedJoi2gC1gjVzyhX9W2H+RkBjpV10=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3264,38 +3294,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11980" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d7b0a945-3c44-478d-9fa2-420f6ae5f697-2020-05-03 10:48:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9e07c985-b8b9-457a-b688-5bf7d3cc52c7" ], "x-ms-correlation-request-id": [ - "486fae0b-d50e-4eca-be3e-33497592a591" + "72a8dc44-129c-47a8-987b-b6e41991cd6a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104849Z:486fae0b-d50e-4eca-be3e-33497592a591" + "CENTRALUSEUAP:20210417T211146Z:72a8dc44-129c-47a8-987b-b6e41991cd6a" ], "Date": [ - "Sun, 03 May 2020 10:48:49 GMT" + "Sat, 17 Apr 2021 21:11:46 GMT" ], "Content-Length": [ - "1343" + "1319" ], "Content-Type": [ "application/json" @@ -3304,29 +3331,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"dd209569-2fe0-43a5-ba8c-ac2953ada076-2020-05-03 10:48:26Z-Ps ActivityId: 674c78cc-760f-4198-b435-9cb77a6457f9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-05-03T10:48:28.0749781Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"8aac4060-a6c9-420f-b637-29bec088a0ca ActivityId: 4c0384ee-f590-47c0-8a62-4a1031a16d17\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:11:25.1606903Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvMTE3Y2ZiNzYtYzMzZS00OTMxLTk5OTItNzFjNmQ2NmM1YjM1P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvN2M2Mzk0YjItMTM2Ni00YmZmLWJkZDItN2RhMmY4ODRjZTBhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fb1d365-f415-4796-887f-025af9513957-2020-05-03 10:49:10Z-Ps" + "41f1f6d7-ad95-4f1e-a82e-7be94e2cdef8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499350118)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104150118)\\/\",\"ClientRequestId\":\"7fb1d365-f415-4796-887f-025af9513957-2020-05-03 10:49:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"am+Fqeu2jIodqeFtXV4TTV2Evjx8Zmg5Tzs9wjcoNmU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690326741)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295126741)\\/\",\"ClientRequestId\":\"cbc698c5-be80-482b-bcb4-ddc2588e3698-2021-04-17 21:12:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cxQjv0+ElHu/OYyodk+i21Ag2ITdYC921tnLvvnpllA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3337,38 +3364,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11979" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7fb1d365-f415-4796-887f-025af9513957-2020-05-03 10:49:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "41f1f6d7-ad95-4f1e-a82e-7be94e2cdef8" ], "x-ms-correlation-request-id": [ - "3458723e-2088-4eb2-a7cd-491fa21e2094" + "f39e8360-7493-4296-9ce8-c1cd2c2b4ad6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104910Z:3458723e-2088-4eb2-a7cd-491fa21e2094" + "CENTRALUSEUAP:20210417T211206Z:f39e8360-7493-4296-9ce8-c1cd2c2b4ad6" ], "Date": [ - "Sun, 03 May 2020 10:49:10 GMT" + "Sat, 17 Apr 2021 21:12:06 GMT" ], "Content-Length": [ - "1343" + "1319" ], "Content-Type": [ "application/json" @@ -3377,29 +3401,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"dd209569-2fe0-43a5-ba8c-ac2953ada076-2020-05-03 10:48:26Z-Ps ActivityId: 674c78cc-760f-4198-b435-9cb77a6457f9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-05-03T10:48:28.0749781Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"8aac4060-a6c9-420f-b637-29bec088a0ca ActivityId: 4c0384ee-f590-47c0-8a62-4a1031a16d17\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:11:25.1606903Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvMTE3Y2ZiNzYtYzMzZS00OTMxLTk5OTItNzFjNmQ2NmM1YjM1P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvN2M2Mzk0YjItMTM2Ni00YmZmLWJkZDItN2RhMmY4ODRjZTBhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f3599f5-c62b-4721-81ac-b606e129217e-2020-05-03 10:49:31Z-Ps" + "0aff1b52-c13d-48a9-a8d7-269eb2790521" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499371078)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104171078)\\/\",\"ClientRequestId\":\"5f3599f5-c62b-4721-81ac-b606e129217e-2020-05-03 10:49:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"w5AET6wGMl07SL4+bAZHUQDgFQEqIjF5gw9IXvCaNo4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690347144)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295147144)\\/\",\"ClientRequestId\":\"87cd812f-5a27-40d3-bfb7-498522706372-2021-04-17 21:12:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"S5ih+fch26eBj9YdeyTaY+lrmu+HQgW1mc0QPKTCDDo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3409,39 +3433,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "5f3599f5-c62b-4721-81ac-b606e129217e-2020-05-03 10:49:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "0aff1b52-c13d-48a9-a8d7-269eb2790521" ], "x-ms-correlation-request-id": [ - "9e5f650f-e3e8-472e-abe1-98fef4fc4a33" + "65beae0e-b6c7-411e-ab77-116e05033acd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104931Z:9e5f650f-e3e8-472e-abe1-98fef4fc4a33" + "CENTRALUSEUAP:20210417T211227Z:65beae0e-b6c7-411e-ab77-116e05033acd" ], "Date": [ - "Sun, 03 May 2020 10:49:31 GMT" + "Sat, 17 Apr 2021 21:12:27 GMT" ], "Content-Length": [ - "1343" + "1319" ], "Content-Type": [ "application/json" @@ -3450,29 +3471,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"dd209569-2fe0-43a5-ba8c-ac2953ada076-2020-05-03 10:48:26Z-Ps ActivityId: 674c78cc-760f-4198-b435-9cb77a6457f9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-05-03T10:48:28.0749781Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"8aac4060-a6c9-420f-b637-29bec088a0ca ActivityId: 4c0384ee-f590-47c0-8a62-4a1031a16d17\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:11:25.1606903Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvMTE3Y2ZiNzYtYzMzZS00OTMxLTk5OTItNzFjNmQ2NmM1YjM1P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvN2M2Mzk0YjItMTM2Ni00YmZmLWJkZDItN2RhMmY4ODRjZTBhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "978936a2-2c95-4c40-8dbf-f92be1a6eb93-2020-05-03 10:49:51Z-Ps" + "d603dc9f-0296-43d3-b6ec-c5ff8310f7eb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499391649)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104191649)\\/\",\"ClientRequestId\":\"978936a2-2c95-4c40-8dbf-f92be1a6eb93-2020-05-03 10:49:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ewYRMj/O9wyHcfwUsz/DzfS92aaC6wbF4bj8fVUPP28=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690367521)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295167521)\\/\",\"ClientRequestId\":\"d46a5994-8294-40f1-aa0d-6098bd70bc0d-2021-04-17 21:12:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5V0jthKnY8iFLtdgdwusYOoH9GoIW5Rev/ZPMe/itcQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3483,38 +3504,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11977" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "978936a2-2c95-4c40-8dbf-f92be1a6eb93-2020-05-03 10:49:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d603dc9f-0296-43d3-b6ec-c5ff8310f7eb" ], "x-ms-correlation-request-id": [ - "3940c086-8a3b-44bf-a38b-398705401030" + "38c0a338-148d-4383-b686-42c3d0e6f605" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104953Z:3940c086-8a3b-44bf-a38b-398705401030" + "CENTRALUSEUAP:20210417T211247Z:38c0a338-148d-4383-b686-42c3d0e6f605" ], "Date": [ - "Sun, 03 May 2020 10:49:52 GMT" + "Sat, 17 Apr 2021 21:12:47 GMT" ], "Content-Length": [ - "1381" + "1357" ], "Content-Type": [ "application/json" @@ -3523,29 +3541,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"dd209569-2fe0-43a5-ba8c-ac2953ada076-2020-05-03 10:48:26Z-Ps ActivityId: 674c78cc-760f-4198-b435-9cb77a6457f9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-05-03T10:49:33.0246515Z\",\r\n \"endTime\": \"2020-05-03T10:49:33.3373353Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"8aac4060-a6c9-420f-b637-29bec088a0ca ActivityId: 4c0384ee-f590-47c0-8a62-4a1031a16d17\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:12:30.4163726Z\",\r\n \"endTime\": \"2021-04-17T21:12:30.6314283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5d9e7aa-3cb2-4055-80de-4045e2c46e02-2020-05-03 10:49:53Z-Ps" + "7c04ab3c-0d6e-4327-bbad-7685b1096983" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499393346)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104193346)\\/\",\"ClientRequestId\":\"f5d9e7aa-3cb2-4055-80de-4045e2c46e02-2020-05-03 10:49:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qi8mTVSEQpY+Eln0zZjqTuZsd56IZ5Ygna2g/8vvO1M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690368045)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295168045)\\/\",\"ClientRequestId\":\"56e788a4-d658-4765-9127-c8834bcf05e4-2021-04-17 21:12:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZJz9t/RA7IxxzNAi6eIdPOoSVNMo99S7aXdws3OvyqY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3556,35 +3574,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11976" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "f5d9e7aa-3cb2-4055-80de-4045e2c46e02-2020-05-03 10:49:53Z-Ps 5/3/2020 10:49:53 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "7c04ab3c-0d6e-4327-bbad-7685b1096983 4/17/2021 9:12:48 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f5d9e7aa-3cb2-4055-80de-4045e2c46e02-2020-05-03 10:49:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7c04ab3c-0d6e-4327-bbad-7685b1096983" ], "x-ms-correlation-request-id": [ - "f650f72f-257a-4856-85d3-bde25f5b5e8f" + "e10266c7-9e41-464a-942f-76c3b1462e70" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104953Z:f650f72f-257a-4856-85d3-bde25f5b5e8f" + "CENTRALUSEUAP:20210417T211248Z:e10266c7-9e41-464a-942f-76c3b1462e70" ], "Date": [ - "Sun, 03 May 2020 10:49:53 GMT" + "Sat, 17 Apr 2021 21:12:48 GMT" ], "Content-Length": [ "683" @@ -3596,29 +3611,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918\",\r\n \"properties\": {\r\n \"friendlyName\": \"West US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e02c9466-e0af-4eec-8efa-606dbe688513-2020-05-03 10:51:20Z-Ps" + "86b0451c-fd01-49c9-8b51-6e3fa04c1664" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499480365)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104280365)\\/\",\"ClientRequestId\":\"e02c9466-e0af-4eec-8efa-606dbe688513-2020-05-03 10:51:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"c2O5N1gsH1GxzLYgumuUH2WGgse+2+FDr/urUv859wU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690451979)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295251979)\\/\",\"ClientRequestId\":\"ca4c74db-3fbe-43af-bf30-ed528640f345-2021-04-17 21:14:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"y2ra2Fb0J9+EEklk/doRo0kv+jZhGbj+mnGotnVP3+I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3629,35 +3644,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11968" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "e02c9466-e0af-4eec-8efa-606dbe688513-2020-05-03 10:51:20Z-Ps 5/3/2020 10:51:20 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "86b0451c-fd01-49c9-8b51-6e3fa04c1664 4/17/2021 9:14:12 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e02c9466-e0af-4eec-8efa-606dbe688513-2020-05-03 10:51:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "86b0451c-fd01-49c9-8b51-6e3fa04c1664" ], "x-ms-correlation-request-id": [ - "d6de092e-9bb0-4735-a20d-01be3bc04044" + "101d636c-7cb3-4d96-a32e-e210572bc2d0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105120Z:d6de092e-9bb0-4735-a20d-01be3bc04044" + "CENTRALUSEUAP:20210417T211412Z:101d636c-7cb3-4d96-a32e-e210572bc2d0" ], "Date": [ - "Sun, 03 May 2020 10:51:19 GMT" + "Sat, 17 Apr 2021 21:14:11 GMT" ], "Content-Length": [ "683" @@ -3669,35 +3681,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918\",\r\n \"properties\": {\r\n \"friendlyName\": \"West US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTg/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"WestCentralUS\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8b853494-64fd-4828-a661-024c398423e5-2020-05-03 10:49:53Z-Ps" + "102a211b-a4a3-4c20-bdff-862765253f74" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499393961)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104193961)\\/\",\"ClientRequestId\":\"8b853494-64fd-4828-a661-024c398423e5-2020-05-03 10:49:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"07c/O/ZqtI5LdFqQ+z7A43egiqWPcRwkUcjDZUQuzQo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690368523)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295168523)\\/\",\"ClientRequestId\":\"3b54644d-dd85-4824-84e6-64fd741e142d-2021-04-17 21:12:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"v6YpVnQvLbhLqxzCiYXcp8tih04GGKJoo0vW1Aus9yM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "119" + "126" ] }, "ResponseHeaders": { @@ -3708,41 +3720,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/operationresults/84388125-5f4b-4ab2-b2ff-83572cd9433b?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/operationresults/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b", - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/84388125-5f4b-4ab2-b2ff-83572cd9433b?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "8b853494-64fd-4828-a661-024c398423e5-2020-05-03 10:49:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "102a211b-a4a3-4c20-bdff-862765253f74" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1191" ], "x-ms-correlation-request-id": [ - "37498f4c-f2d8-4be6-ad5e-b909feacc9ec" + "15166bb4-f1df-473f-9934-aa97c0ccf22c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104954Z:37498f4c-f2d8-4be6-ad5e-b909feacc9ec" + "CENTRALUSEUAP:20210417T211248Z:15166bb4-f1df-473f-9934-aa97c0ccf22c" ], "Date": [ - "Sun, 03 May 2020 10:49:53 GMT" + "Sat, 17 Apr 2021 21:12:48 GMT" ], "Expires": [ "-1" @@ -3755,25 +3764,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvODQzODgxMjUtNWY0Yi00YWIyLWIyZmYtODM1NzJjZDk0MzNiP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvZjgxNjQwOTAtNWRmNC00ZjhmLTgxYTktNDRjYTJhNGI4YWUzP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09c37529-191b-41a5-97d7-9cbedbd1f8ac-2020-05-03 10:49:54Z-Ps" + "102a211b-a4a3-4c20-bdff-862765253f74" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499394753)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104194753)\\/\",\"ClientRequestId\":\"09c37529-191b-41a5-97d7-9cbedbd1f8ac-2020-05-03 10:49:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cX3LE5YIjcFCHTwhA4hymFWYAeWAUQyAPC1ijiEIlzo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690369146)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295169146)\\/\",\"ClientRequestId\":\"123c3585-d10b-4810-a524-59b2940be10a-2021-04-17 21:12:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oI2jkBdM4pqdYzUIWGykn7pRKGUb258dZWhce1mJsDY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3784,38 +3793,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11975" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "09c37529-191b-41a5-97d7-9cbedbd1f8ac-2020-05-03 10:49:54Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "102a211b-a4a3-4c20-bdff-862765253f74" ], "x-ms-correlation-request-id": [ - "d4429a18-8ab1-475a-8346-ee93b08ec5ff" + "09409935-b813-4e21-b14f-42ef3d7885e7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104955Z:d4429a18-8ab1-475a-8346-ee93b08ec5ff" + "CENTRALUSEUAP:20210417T211249Z:09409935-b813-4e21-b14f-42ef3d7885e7" ], "Date": [ - "Sun, 03 May 2020 10:49:54 GMT" + "Sat, 17 Apr 2021 21:12:49 GMT" ], "Content-Length": [ - "1345" + "1320" ], "Content-Type": [ "application/json" @@ -3824,29 +3830,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"8b853494-64fd-4828-a661-024c398423e5-2020-05-03 10:49:53Z-Ps ActivityId: 37498f4c-f2d8-4be6-ad5e-b909feacc9ec\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-05-03T10:49:54.4959898Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"102a211b-a4a3-4c20-bdff-862765253f74 ActivityId: 15166bb4-f1df-473f-9934-aa97c0ccf22c\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:12:49.0615786Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvODQzODgxMjUtNWY0Yi00YWIyLWIyZmYtODM1NzJjZDk0MzNiP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvZjgxNjQwOTAtNWRmNC00ZjhmLTgxYTktNDRjYTJhNGI4YWUzP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18ea7395-fb86-456f-9890-5fe07c1aa153-2020-05-03 10:49:55Z-Ps" + "ca287811-b511-4c78-ba1c-7a9f8d4a1302" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499395464)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104195464)\\/\",\"ClientRequestId\":\"18ea7395-fb86-456f-9890-5fe07c1aa153-2020-05-03 10:49:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pzm9yhe/njrdKQX9dEdkP0uTB6ZRu8mDFrzEaW+vNg4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690369518)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295169518)\\/\",\"ClientRequestId\":\"34ef4135-2d88-4f25-bafb-b3dc9659ba91-2021-04-17 21:12:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"11XBMVKfQCLJwpNvS9we25iSgE1dsmaA+HMGc/Xndy4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3857,38 +3863,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11974" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "18ea7395-fb86-456f-9890-5fe07c1aa153-2020-05-03 10:49:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ca287811-b511-4c78-ba1c-7a9f8d4a1302" ], "x-ms-correlation-request-id": [ - "3b44bac7-d92c-4a8b-a379-3318361e8c2f" + "22dfcda5-20b7-41ef-ac53-ba30749616cb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T104955Z:3b44bac7-d92c-4a8b-a379-3318361e8c2f" + "CENTRALUSEUAP:20210417T211249Z:22dfcda5-20b7-41ef-ac53-ba30749616cb" ], "Date": [ - "Sun, 03 May 2020 10:49:55 GMT" + "Sat, 17 Apr 2021 21:12:49 GMT" ], "Content-Length": [ - "1345" + "1320" ], "Content-Type": [ "application/json" @@ -3897,29 +3900,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"8b853494-64fd-4828-a661-024c398423e5-2020-05-03 10:49:53Z-Ps ActivityId: 37498f4c-f2d8-4be6-ad5e-b909feacc9ec\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-05-03T10:49:54.4959898Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"102a211b-a4a3-4c20-bdff-862765253f74 ActivityId: 15166bb4-f1df-473f-9934-aa97c0ccf22c\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:12:49.0615786Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvODQzODgxMjUtNWY0Yi00YWIyLWIyZmYtODM1NzJjZDk0MzNiP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvZjgxNjQwOTAtNWRmNC00ZjhmLTgxYTktNDRjYTJhNGI4YWUzP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2a39576-3751-42f0-aedb-00db191f4e9b-2020-05-03 10:50:16Z-Ps" + "c01c0bce-a2ef-4e5b-8d78-a2392fa2e717" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499416012)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104216012)\\/\",\"ClientRequestId\":\"c2a39576-3751-42f0-aedb-00db191f4e9b-2020-05-03 10:50:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zmeoTivD50RCkfQyZX7iTm9fhC3q9591rOT4/juYFig=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690389890)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295189890)\\/\",\"ClientRequestId\":\"02aeecb1-5717-4aa7-8a7c-9563a2954758-2021-04-17 21:13:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dWX1KsZRU6gbQldNqMx+BlGoVetA5PRj9D1IpCeO/FE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3930,38 +3933,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11973" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c2a39576-3751-42f0-aedb-00db191f4e9b-2020-05-03 10:50:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c01c0bce-a2ef-4e5b-8d78-a2392fa2e717" ], "x-ms-correlation-request-id": [ - "93991d46-5f6b-4083-9f4b-61eebb673511" + "4dab4913-c036-4657-92f2-5b5f543c6523" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105016Z:93991d46-5f6b-4083-9f4b-61eebb673511" + "CENTRALUSEUAP:20210417T211310Z:4dab4913-c036-4657-92f2-5b5f543c6523" ], "Date": [ - "Sun, 03 May 2020 10:50:15 GMT" + "Sat, 17 Apr 2021 21:13:09 GMT" ], "Content-Length": [ - "1345" + "1320" ], "Content-Type": [ "application/json" @@ -3970,29 +3970,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"8b853494-64fd-4828-a661-024c398423e5-2020-05-03 10:49:53Z-Ps ActivityId: 37498f4c-f2d8-4be6-ad5e-b909feacc9ec\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-05-03T10:49:54.4959898Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"102a211b-a4a3-4c20-bdff-862765253f74 ActivityId: 15166bb4-f1df-473f-9934-aa97c0ccf22c\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:12:49.0615786Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvODQzODgxMjUtNWY0Yi00YWIyLWIyZmYtODM1NzJjZDk0MzNiP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvZjgxNjQwOTAtNWRmNC00ZjhmLTgxYTktNDRjYTJhNGI4YWUzP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0e2a95d-d482-442c-a8bf-6c7ad3e79ecd-2020-05-03 10:50:36Z-Ps" + "f72cc6d7-8ca8-409c-82ee-8e2797934c8a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499436568)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104236568)\\/\",\"ClientRequestId\":\"b0e2a95d-d482-442c-a8bf-6c7ad3e79ecd-2020-05-03 10:50:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LH3TH7/upfl9zOwjWxSqh4V9KSyYh4ukVwIhl/mzKSs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690410350)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295210350)\\/\",\"ClientRequestId\":\"a028f5e8-62ad-4284-8678-3af67276877a-2021-04-17 21:13:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lqDXn8qkJdfIpQ6R98BubcFSH028rDGsxVlUhpuqcbI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4003,38 +4003,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11972" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b0e2a95d-d482-442c-a8bf-6c7ad3e79ecd-2020-05-03 10:50:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f72cc6d7-8ca8-409c-82ee-8e2797934c8a" ], "x-ms-correlation-request-id": [ - "6948f57c-7fab-47c8-9aa3-debd167ddb55" + "d5b34230-0eb3-4367-a654-282cd3e0e26f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105036Z:6948f57c-7fab-47c8-9aa3-debd167ddb55" + "CENTRALUSEUAP:20210417T211330Z:d5b34230-0eb3-4367-a654-282cd3e0e26f" ], "Date": [ - "Sun, 03 May 2020 10:50:35 GMT" + "Sat, 17 Apr 2021 21:13:29 GMT" ], "Content-Length": [ - "1345" + "1320" ], "Content-Type": [ "application/json" @@ -4043,29 +4040,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"8b853494-64fd-4828-a661-024c398423e5-2020-05-03 10:49:53Z-Ps ActivityId: 37498f4c-f2d8-4be6-ad5e-b909feacc9ec\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-05-03T10:49:54.4959898Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"102a211b-a4a3-4c20-bdff-862765253f74 ActivityId: 15166bb4-f1df-473f-9934-aa97c0ccf22c\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:12:49.0615786Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvODQzODgxMjUtNWY0Yi00YWIyLWIyZmYtODM1NzJjZDk0MzNiP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvZjgxNjQwOTAtNWRmNC00ZjhmLTgxYTktNDRjYTJhNGI4YWUzP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a35de7fb-76f7-42c9-97d5-c08b747a9db6-2020-05-03 10:50:57Z-Ps" + "860e0aaf-9497-46d5-ae6b-e01d1a4b9614" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499457118)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104257118)\\/\",\"ClientRequestId\":\"a35de7fb-76f7-42c9-97d5-c08b747a9db6-2020-05-03 10:50:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uq/Ozg2+yIy4TAZQ2ETc3t4ezZGEEInFtAG+xE46vOQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690430746)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295230746)\\/\",\"ClientRequestId\":\"ba239c4f-cde6-4a06-9ede-300ffb1aeaf4-2021-04-17 21:13:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"koxvgJQR4CP1txKPQ3O4otiASU3VFbnZJzdUDVGFQhg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4076,38 +4073,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11971" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a35de7fb-76f7-42c9-97d5-c08b747a9db6-2020-05-03 10:50:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "860e0aaf-9497-46d5-ae6b-e01d1a4b9614" ], "x-ms-correlation-request-id": [ - "fdd473a6-2f74-4b95-b701-c283ea28fade" + "84e49919-ce14-42e4-a103-7d5416a2ceaf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105057Z:fdd473a6-2f74-4b95-b701-c283ea28fade" + "CENTRALUSEUAP:20210417T211350Z:84e49919-ce14-42e4-a103-7d5416a2ceaf" ], "Date": [ - "Sun, 03 May 2020 10:50:57 GMT" + "Sat, 17 Apr 2021 21:13:50 GMT" ], "Content-Length": [ - "1345" + "1320" ], "Content-Type": [ "application/json" @@ -4116,29 +4110,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"8b853494-64fd-4828-a661-024c398423e5-2020-05-03 10:49:53Z-Ps ActivityId: 37498f4c-f2d8-4be6-ad5e-b909feacc9ec\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-05-03T10:49:54.4959898Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"102a211b-a4a3-4c20-bdff-862765253f74 ActivityId: 15166bb4-f1df-473f-9934-aa97c0ccf22c\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:12:49.0615786Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvODQzODgxMjUtNWY0Yi00YWIyLWIyZmYtODM1NzJjZDk0MzNiP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvZjgxNjQwOTAtNWRmNC00ZjhmLTgxYTktNDRjYTJhNGI4YWUzP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8784f02-62b0-4931-a546-bdd14dca4702-2020-05-03 10:51:18Z-Ps" + "a2f1fac2-cfd8-4e37-aa39-7089f3aa46b2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499478048)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104278048)\\/\",\"ClientRequestId\":\"b8784f02-62b0-4931-a546-bdd14dca4702-2020-05-03 10:51:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"60q7nbJhzLgyEvsRh3qEeYuE6MwgiUgQNB3Xl+6JopM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690451119)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295251119)\\/\",\"ClientRequestId\":\"146c1854-113d-45a1-ac20-75cc41990ca7-2021-04-17 21:14:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1dm5u/8DeBz3Qrgt/97mK/AmvdS6BqoaxtWHIcpHcGk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4148,39 +4142,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b8784f02-62b0-4931-a546-bdd14dca4702-2020-05-03 10:51:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "a2f1fac2-cfd8-4e37-aa39-7089f3aa46b2" ], "x-ms-correlation-request-id": [ - "bc9ff2ad-89e3-4ba3-a9e0-f36169667a92" + "88a25c3f-1295-4d50-aefe-8c2cbafcea86" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105118Z:bc9ff2ad-89e3-4ba3-a9e0-f36169667a92" + "CENTRALUSEUAP:20210417T211411Z:88a25c3f-1295-4d50-aefe-8c2cbafcea86" ], "Date": [ - "Sun, 03 May 2020 10:51:17 GMT" + "Sat, 17 Apr 2021 21:14:10 GMT" ], "Content-Length": [ - "1383" + "1358" ], "Content-Type": [ "application/json" @@ -4189,29 +4180,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"8b853494-64fd-4828-a661-024c398423e5-2020-05-03 10:49:53Z-Ps ActivityId: 37498f4c-f2d8-4be6-ad5e-b909feacc9ec\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-05-03T10:50:59.4906439Z\",\r\n \"endTime\": \"2020-05-03T10:50:59.8030954Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"102a211b-a4a3-4c20-bdff-862765253f74 ActivityId: 15166bb4-f1df-473f-9934-aa97c0ccf22c\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:13:54.3422723Z\",\r\n \"endTime\": \"2021-04-17T21:13:54.5022712Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric918\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTg/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af65105b-3056-4e96-bed5-304f32b9311b-2020-05-03 10:51:18Z-Ps" + "ab298d47-1f41-4dc5-8d8a-f87949544548" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499478615)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104278615)\\/\",\"ClientRequestId\":\"af65105b-3056-4e96-bed5-304f32b9311b-2020-05-03 10:51:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sPbpWP5jCWsxJ4EMeuGSclXqIpWvOKVBmSpv/zg4lek=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690451537)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295251537)\\/\",\"ClientRequestId\":\"e278c40c-3433-4025-af3c-6551b15decb6-2021-04-17 21:14:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XmjBraCyj6iXWXCBNogfV62ao6+1aXg3zR5wuTlK4Dg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4222,38 +4213,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11969" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "af65105b-3056-4e96-bed5-304f32b9311b-2020-05-03 10:51:18Z-Ps 5/3/2020 10:51:20 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "ab298d47-1f41-4dc5-8d8a-f87949544548 4/17/2021 9:14:11 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "af65105b-3056-4e96-bed5-304f32b9311b-2020-05-03 10:51:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ab298d47-1f41-4dc5-8d8a-f87949544548" ], "x-ms-correlation-request-id": [ - "6f832ff5-ab5d-44af-80cc-3ce0ef3472e0" + "0e46bedf-93de-49cf-a2ad-e5903c12d8e0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105120Z:6f832ff5-ab5d-44af-80cc-3ce0ef3472e0" + "CENTRALUSEUAP:20210417T211411Z:0e46bedf-93de-49cf-a2ad-e5903c12d8e0" ], "Date": [ - "Sun, 03 May 2020 10:51:19 GMT" + "Sat, 17 Apr 2021 21:14:10 GMT" ], "Content-Length": [ - "685" + "700" ], "Content-Type": [ "application/json" @@ -4262,29 +4250,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918\",\r\n \"properties\": {\r\n \"friendlyName\": \"West Central US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westcentralus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTg/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "024b4db6-223c-4e53-b357-5f9976bb0a20-2020-05-03 10:51:20Z-Ps" + "3979cab9-6027-4707-aa3c-76b7eaf53cef" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499480975)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104280975)\\/\",\"ClientRequestId\":\"024b4db6-223c-4e53-b357-5f9976bb0a20-2020-05-03 10:51:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZBrB3V7bWEqh4ytZC0mKET3KI/LxuVJR4zRWXrxvQ6k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690452390)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295252390)\\/\",\"ClientRequestId\":\"58ea8914-1074-4dd3-9538-eb0bacf2b117-2021-04-17 21:14:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nGa3KZEAIb7QgDHTr54RtVookIjX3mRvFATJkUDW3EQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4295,38 +4283,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11967" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "024b4db6-223c-4e53-b357-5f9976bb0a20-2020-05-03 10:51:20Z-Ps 5/3/2020 10:51:21 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "3979cab9-6027-4707-aa3c-76b7eaf53cef 4/17/2021 9:14:12 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "024b4db6-223c-4e53-b357-5f9976bb0a20-2020-05-03 10:51:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3979cab9-6027-4707-aa3c-76b7eaf53cef" ], "x-ms-correlation-request-id": [ - "fe0f35f8-c748-4758-b4a3-bc94dcd2dc45" + "5753bab0-14de-4145-85dd-493f18f8ed60" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105121Z:fe0f35f8-c748-4758-b4a3-bc94dcd2dc45" + "CENTRALUSEUAP:20210417T211412Z:5753bab0-14de-4145-85dd-493f18f8ed60" ], "Date": [ - "Sun, 03 May 2020 10:51:20 GMT" + "Sat, 17 Apr 2021 21:14:11 GMT" ], "Content-Length": [ - "685" + "700" ], "Content-Type": [ "application/json" @@ -4335,29 +4320,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918\",\r\n \"properties\": {\r\n \"friendlyName\": \"West Central US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westcentralus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTg/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "22c14862-1128-4a1a-b172-1e80019dac57-2020-05-03 10:51:21Z-Ps" + "5078a143-509a-453e-a176-8fb090fb6af9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499481516)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104281516)\\/\",\"ClientRequestId\":\"22c14862-1128-4a1a-b172-1e80019dac57-2020-05-03 10:51:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"In3gELW3l966ptEqy2BdSLc8xREDpfmh0UCVHnwieuw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690452796)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295252796)\\/\",\"ClientRequestId\":\"0001585a-3363-46ce-ae10-2dd86ca0c176-2021-04-17 21:14:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KjIdEt+ofPj6feyXVB2STzX+U2BmmvUQMqMHxgt2dkw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4374,41 +4359,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/operationresults/beb82f0d-0310-44a2-a4c2-e4945101ecd0?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/operationresults/342fd0ad-d27e-421a-883b-f5317366b028?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0", - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/beb82f0d-0310-44a2-a4c2-e4945101ecd0?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/342fd0ad-d27e-421a-883b-f5317366b028?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "22c14862-1128-4a1a-b172-1e80019dac57-2020-05-03 10:51:21Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "5078a143-509a-453e-a176-8fb090fb6af9" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1190" ], "x-ms-correlation-request-id": [ - "b30eff7c-c163-4438-b771-1fd2d45dc50f" + "5f818742-e5dd-49d5-8cc0-0f140b732090" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105122Z:b30eff7c-c163-4438-b771-1fd2d45dc50f" + "CENTRALUSEUAP:20210417T211413Z:5f818742-e5dd-49d5-8cc0-0f140b732090" ], "Date": [ - "Sun, 03 May 2020 10:51:21 GMT" + "Sat, 17 Apr 2021 21:14:13 GMT" ], "Expires": [ "-1" @@ -4421,25 +4403,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYmViODJmMGQtMDMxMC00NGEyLWE0YzItZTQ5NDUxMDFlY2QwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvMzQyZmQwYWQtZDI3ZS00MjFhLTg4M2ItZjUzMTczNjZiMDI4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89d91a70-8830-4017-8bdf-45d2d88c6b33-2020-05-03 10:51:22Z-Ps" + "5078a143-509a-453e-a176-8fb090fb6af9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499482383)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104282383)\\/\",\"ClientRequestId\":\"89d91a70-8830-4017-8bdf-45d2d88c6b33-2020-05-03 10:51:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HL2f6+w5l0p+f6Un4kTRdpZ5I1WN/okBqMtu5M2dvm0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690453423)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295253423)\\/\",\"ClientRequestId\":\"640da6d5-0cd6-4ca9-b78c-9b4bac48ac7a-2021-04-17 21:14:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PnZKXdEWDgMv/uhukE/bZ7wYQvTgexRAG2mABmCaVWg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4450,38 +4432,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11966" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "89d91a70-8830-4017-8bdf-45d2d88c6b33-2020-05-03 10:51:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5078a143-509a-453e-a176-8fb090fb6af9" ], "x-ms-correlation-request-id": [ - "5e2dfe21-50f8-4bdb-a5b0-a8b2bb63c4ce" + "2d7b2c42-4fde-41ce-9f8f-02c862d8012c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105122Z:5e2dfe21-50f8-4bdb-a5b0-a8b2bb63c4ce" + "CENTRALUSEUAP:20210417T211413Z:2d7b2c42-4fde-41ce-9f8f-02c862d8012c" ], "Date": [ - "Sun, 03 May 2020 10:51:21 GMT" + "Sat, 17 Apr 2021 21:14:13 GMT" ], "Content-Length": [ - "1793" + "1769" ], "Content-Type": [ "application/json" @@ -4490,29 +4469,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"22c14862-1128-4a1a-b172-1e80019dac57-2020-05-03 10:51:21Z-Ps ActivityId: b30eff7c-c163-4438-b771-1fd2d45dc50f\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-05-03T10:51:22.4796929Z\",\r\n \"endTime\": \"2020-05-03T10:51:22.4328468Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-05-03T10:51:22.4328468Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"5078a143-509a-453e-a176-8fb090fb6af9 ActivityId: 5f818742-e5dd-49d5-8cc0-0f140b732090\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-17T21:14:13.5358756Z\",\r\n \"endTime\": \"2021-04-17T21:14:13.5658801Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-17T21:14:13.5658801Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYmViODJmMGQtMDMxMC00NGEyLWE0YzItZTQ5NDUxMDFlY2QwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvMzQyZmQwYWQtZDI3ZS00MjFhLTg4M2ItZjUzMTczNjZiMDI4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "158d338f-271e-4019-a294-a856be57b744-2020-05-03 10:51:22Z-Ps" + "1c829b4c-a502-4d7c-865c-5286812538b6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499482828)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104282828)\\/\",\"ClientRequestId\":\"158d338f-271e-4019-a294-a856be57b744-2020-05-03 10:51:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"byR/JgUOR1vwcAxiZCpmKpIEsC9I5h9hhBd6UWIBJTs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690453811)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295253811)\\/\",\"ClientRequestId\":\"fdf3cfdd-7f83-4711-8a2a-78529ed73001-2021-04-17 21:14:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"S8PDRnc1NJ7SaIEXiyi4B3YhgnzxL4fnXoCDnzITKds=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4523,38 +4502,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11965" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "158d338f-271e-4019-a294-a856be57b744-2020-05-03 10:51:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1c829b4c-a502-4d7c-865c-5286812538b6" ], "x-ms-correlation-request-id": [ - "b6643515-597a-4c63-ba69-0efe2c61a304" + "7dbf17d5-5c01-449f-81b3-6adf47569e9b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105123Z:b6643515-597a-4c63-ba69-0efe2c61a304" + "CENTRALUSEUAP:20210417T211414Z:7dbf17d5-5c01-449f-81b3-6adf47569e9b" ], "Date": [ - "Sun, 03 May 2020 10:51:22 GMT" + "Sat, 17 Apr 2021 21:14:13 GMT" ], "Content-Length": [ - "1831" + "1807" ], "Content-Type": [ "application/json" @@ -4563,29 +4539,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"22c14862-1128-4a1a-b172-1e80019dac57-2020-05-03 10:51:21Z-Ps ActivityId: b30eff7c-c163-4438-b771-1fd2d45dc50f\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-05-03T10:51:22.4796929Z\",\r\n \"endTime\": \"2020-05-03T10:51:22.6377515Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-05-03T10:51:22.6377515Z\",\r\n \"endTime\": \"2020-05-03T10:51:22.6377515Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"5078a143-509a-453e-a176-8fb090fb6af9 ActivityId: 5f818742-e5dd-49d5-8cc0-0f140b732090\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-17T21:14:13.5358756Z\",\r\n \"endTime\": \"2021-04-17T21:14:13.5958766Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-17T21:14:13.5958766Z\",\r\n \"endTime\": \"2021-04-17T21:14:13.5958766Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTg/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9dafe6d1-f9ee-4270-a9a0-e7d6f9cad69e-2020-05-03 10:51:23Z-Ps" + "9c3168ad-0fea-44aa-9d2f-8d1f6b615e47" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499483296)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104283296)\\/\",\"ClientRequestId\":\"9dafe6d1-f9ee-4270-a9a0-e7d6f9cad69e-2020-05-03 10:51:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3ZNlQb8RSrP7IFirK1QZUh4Vo/D0sA0VqHL5jClvaLM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690454190)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295254190)\\/\",\"ClientRequestId\":\"2d14b3bc-5958-4b91-af1c-a44ccfaf5619-2021-04-17 21:14:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"aQaNysJDnrQn9vl03t0bwUyc/qtVdKoGU88+BB4PPXE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4596,35 +4572,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11964" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "9dafe6d1-f9ee-4270-a9a0-e7d6f9cad69e-2020-05-03 10:51:23Z-Ps 5/3/2020 10:51:23 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "9c3168ad-0fea-44aa-9d2f-8d1f6b615e47 4/17/2021 9:14:14 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9dafe6d1-f9ee-4270-a9a0-e7d6f9cad69e-2020-05-03 10:51:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9c3168ad-0fea-44aa-9d2f-8d1f6b615e47" ], "x-ms-correlation-request-id": [ - "530d70c5-7ffe-46ef-bc1d-fb0e9c5c9194" + "ad051938-d351-4886-824f-56bef4735915" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105123Z:530d70c5-7ffe-46ef-bc1d-fb0e9c5c9194" + "CENTRALUSEUAP:20210417T211414Z:ad051938-d351-4886-824f-56bef4735915" ], "Date": [ - "Sun, 03 May 2020 10:51:22 GMT" + "Sat, 17 Apr 2021 21:14:14 GMT" ], "Content-Length": [ "580" @@ -4636,29 +4609,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918\",\r\n \"name\": \"A2APrimaryContainer918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"West US\",\r\n \"friendlyName\": \"A2APrimaryContainer918\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918\",\r\n \"name\": \"A2APrimaryContainer918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"East US\",\r\n \"friendlyName\": \"A2APrimaryContainer918\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectionContainerMappings?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectionContainerMappings?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e7be61c-c2ae-4946-9463-4c7cfd2ed62e-2020-05-03 10:51:23Z-Ps" + "9c3168ad-0fea-44aa-9d2f-8d1f6b615e47" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499483728)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104283728)\\/\",\"ClientRequestId\":\"1e7be61c-c2ae-4946-9463-4c7cfd2ed62e-2020-05-03 10:51:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wmTlR2X00pTNEOUeN7FTvEqzsolZtmnaIUByvcGw/UA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690454620)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295254620)\\/\",\"ClientRequestId\":\"ba77d498-1106-40e5-b120-64f4adbffabf-2021-04-17 21:14:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ER5G8J9J4/4WVSgmpFGPUWuC4PUCgDXanIYmx7Ax8t8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4669,35 +4642,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11963" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "1e7be61c-c2ae-4946-9463-4c7cfd2ed62e-2020-05-03 10:51:23Z-Ps 5/3/2020 10:51:25 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "9c3168ad-0fea-44aa-9d2f-8d1f6b615e47 4/17/2021 9:14:14 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1e7be61c-c2ae-4946-9463-4c7cfd2ed62e-2020-05-03 10:51:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9c3168ad-0fea-44aa-9d2f-8d1f6b615e47" ], "x-ms-correlation-request-id": [ - "96f379d2-c0ba-4ebd-9f31-4cc76e8c22c8" + "f931a48a-c776-4d69-8242-5256af3e6252" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105125Z:96f379d2-c0ba-4ebd-9f31-4cc76e8c22c8" + "CENTRALUSEUAP:20210417T211414Z:f931a48a-c776-4d69-8242-5256af3e6252" ], "Date": [ - "Sun, 03 May 2020 10:51:25 GMT" + "Sat, 17 Apr 2021 21:14:14 GMT" ], "Content-Length": [ "28" @@ -4713,25 +4683,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjkxOD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjkxOD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7f9e6488-29ed-4140-8486-3cacd77f812e-2020-05-03 10:51:25Z-Ps" + "7e24b5aa-10af-4362-bc16-038a304a4e38" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499485485)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104285485)\\/\",\"ClientRequestId\":\"7f9e6488-29ed-4140-8486-3cacd77f812e-2020-05-03 10:51:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7MA2n9tG+4kDFk5RkkxjAP7Vc/KW3mtRB9phtg6gAS4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690455043)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295255043)\\/\",\"ClientRequestId\":\"e7f3540e-971d-4d3d-89df-f06357f5f9cc-2021-04-17 21:14:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yFurfUinN55kADBfzJ6IZglY//y3rntz6NxSp3gZynY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4748,41 +4718,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918/operationresults/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918/operationresults/140ab6be-6468-4684-86f7-b7fa9d8d6640?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d", - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/140ab6be-6468-4684-86f7-b7fa9d8d6640?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7f9e6488-29ed-4140-8486-3cacd77f812e-2020-05-03 10:51:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "7e24b5aa-10af-4362-bc16-038a304a4e38" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1189" ], "x-ms-correlation-request-id": [ - "7329895f-fc98-425d-a3e8-055ab33e6ee3" + "d485230c-b3e5-4831-919e-116fe9ae5b51" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105126Z:7329895f-fc98-425d-a3e8-055ab33e6ee3" + "CENTRALUSEUAP:20210417T211415Z:d485230c-b3e5-4831-919e-116fe9ae5b51" ], "Date": [ - "Sun, 03 May 2020 10:51:26 GMT" + "Sat, 17 Apr 2021 21:14:14 GMT" ], "Expires": [ "-1" @@ -4795,25 +4762,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYzBlZjM4OTgtZDQ0Yy00Y2Y0LTg2ZGMtOWFmNGZkYmQ5MTBkP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvMTQwYWI2YmUtNjQ2OC00Njg0LTg2ZjctYjdmYTlkOGQ2NjQwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a809837-da6f-4ce8-9bf5-c98635123cb4-2020-05-03 10:51:26Z-Ps" + "7e24b5aa-10af-4362-bc16-038a304a4e38" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499486225)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104286225)\\/\",\"ClientRequestId\":\"9a809837-da6f-4ce8-9bf5-c98635123cb4-2020-05-03 10:51:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WPPgdPq2TPK4CePB9GRyHp1hzkL0yuee7PrwS63Lp3c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690455587)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295255587)\\/\",\"ClientRequestId\":\"c7d77aea-4f83-42f7-87a8-997b7280cbd1-2021-04-17 21:14:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GSEceH7ynOZSE3ixdes/0gWrygd4Qh+d+ntiHno4gGE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4824,38 +4791,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11962" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9a809837-da6f-4ce8-9bf5-c98635123cb4-2020-05-03 10:51:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7e24b5aa-10af-4362-bc16-038a304a4e38" ], "x-ms-correlation-request-id": [ - "44a801cd-3167-4c80-8946-a2d973a6ed3c" + "5ef063d0-ff42-4e9d-b3db-086bdf4462b8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105126Z:44a801cd-3167-4c80-8946-a2d973a6ed3c" + "CENTRALUSEUAP:20210417T211415Z:5ef063d0-ff42-4e9d-b3db-086bdf4462b8" ], "Date": [ - "Sun, 03 May 2020 10:51:26 GMT" + "Sat, 17 Apr 2021 21:14:15 GMT" ], "Content-Length": [ - "1832" + "1816" ], "Content-Type": [ "application/json" @@ -4864,29 +4828,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f9e6488-29ed-4140-8486-3cacd77f812e-2020-05-03 10:51:25Z-Ps ActivityId: 7329895f-fc98-425d-a3e8-055ab33e6ee3\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-05-03T10:51:26.0690535Z\",\r\n \"endTime\": \"2020-05-03T10:51:26.1471834Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-05-03T10:51:26.1471834Z\",\r\n \"endTime\": \"2020-05-03T10:51:26.1471834Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7e24b5aa-10af-4362-bc16-038a304a4e38 ActivityId: d485230c-b3e5-4831-919e-116fe9ae5b51\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-17T21:14:15.4908961Z\",\r\n \"endTime\": \"2021-04-17T21:14:15.5510613Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-17T21:14:15.5510613Z\",\r\n \"endTime\": \"2021-04-17T21:14:15.5510613Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYzBlZjM4OTgtZDQ0Yy00Y2Y0LTg2ZGMtOWFmNGZkYmQ5MTBkP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvMTQwYWI2YmUtNjQ2OC00Njg0LTg2ZjctYjdmYTlkOGQ2NjQwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "297390b4-89c0-421a-b680-95eff8da8631-2020-05-03 10:51:26Z-Ps" + "a2bd4c71-6b78-46c2-89e4-13c81fcc7419" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499486672)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104286672)\\/\",\"ClientRequestId\":\"297390b4-89c0-421a-b680-95eff8da8631-2020-05-03 10:51:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0ABI4B2fCFIyqskFIBooAd7RkX0aOYP4DuIBfhS+Mqk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690455973)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295255973)\\/\",\"ClientRequestId\":\"ef021fc8-8091-440e-a618-9a6cf1bf2037-2021-04-17 21:14:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9hUBLL7+NCpzfNror1WRRPPLbx9DrQOQo3Iy2MBUFDA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4897,38 +4861,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11961" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "297390b4-89c0-421a-b680-95eff8da8631-2020-05-03 10:51:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a2bd4c71-6b78-46c2-89e4-13c81fcc7419" ], "x-ms-correlation-request-id": [ - "469fc178-f014-4dc2-bb27-aae2f0eba0c2" + "4d47f131-a83e-40fa-bd34-717ab1ec90d3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105127Z:469fc178-f014-4dc2-bb27-aae2f0eba0c2" + "CENTRALUSEUAP:20210417T211416Z:4d47f131-a83e-40fa-bd34-717ab1ec90d3" ], "Date": [ - "Sun, 03 May 2020 10:51:26 GMT" + "Sat, 17 Apr 2021 21:14:15 GMT" ], "Content-Length": [ - "1832" + "1816" ], "Content-Type": [ "application/json" @@ -4937,29 +4898,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f9e6488-29ed-4140-8486-3cacd77f812e-2020-05-03 10:51:25Z-Ps ActivityId: 7329895f-fc98-425d-a3e8-055ab33e6ee3\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-05-03T10:51:26.0690535Z\",\r\n \"endTime\": \"2020-05-03T10:51:26.1471834Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-05-03T10:51:26.1471834Z\",\r\n \"endTime\": \"2020-05-03T10:51:26.1471834Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7e24b5aa-10af-4362-bc16-038a304a4e38 ActivityId: d485230c-b3e5-4831-919e-116fe9ae5b51\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-17T21:14:15.4908961Z\",\r\n \"endTime\": \"2021-04-17T21:14:15.5510613Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-17T21:14:15.5510613Z\",\r\n \"endTime\": \"2021-04-17T21:14:15.5510613Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjkxOD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjkxOD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d2ded8b-2d9b-4c06-ad95-15a079260577-2020-05-03 10:51:27Z-Ps" + "ed19357d-47dc-43fc-9bf9-055563831823" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499487145)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104287145)\\/\",\"ClientRequestId\":\"1d2ded8b-2d9b-4c06-ad95-15a079260577-2020-05-03 10:51:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"i1KwHYGdKX8YEjJ0VwPenztzQHpg0S3VgRljehp9ceg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690456355)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295256355)\\/\",\"ClientRequestId\":\"899ccd6e-6a6c-4979-a702-2e7985ff735b-2021-04-17 21:14:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"88hdwmJqlFhNwtd2Miu8hoVNa9mlVQBIkMEEW91BSJ0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4970,38 +4931,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11960" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "1d2ded8b-2d9b-4c06-ad95-15a079260577-2020-05-03 10:51:27Z-Ps 5/3/2020 10:51:27 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "ed19357d-47dc-43fc-9bf9-055563831823 4/17/2021 9:14:16 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1d2ded8b-2d9b-4c06-ad95-15a079260577-2020-05-03 10:51:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ed19357d-47dc-43fc-9bf9-055563831823" ], "x-ms-correlation-request-id": [ - "e5cac13d-aceb-435f-8e71-2e56a43a598b" + "b9830850-33f5-4706-b1fc-5ef0dfa69750" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105127Z:e5cac13d-aceb-435f-8e71-2e56a43a598b" + "CENTRALUSEUAP:20210417T211416Z:b9830850-33f5-4706-b1fc-5ef0dfa69750" ], "Date": [ - "Sun, 03 May 2020 10:51:27 GMT" + "Sat, 17 Apr 2021 21:14:15 GMT" ], "Content-Length": [ - "584" + "592" ], "Content-Type": [ "application/json" @@ -5010,29 +4968,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918\",\r\n \"name\": \"A2ARecoveryContainer918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"East US\",\r\n \"friendlyName\": \"A2ARecoveryContainer918\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918\",\r\n \"name\": \"A2ARecoveryContainer918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"West Central US\",\r\n \"friendlyName\": \"A2ARecoveryContainer918\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918/replicationProtectionContainerMappings?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjkxOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918/replicationProtectionContainerMappings?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjkxOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39b4c819-a72f-46c0-ad28-4ac9ea39f21a-2020-05-03 10:51:27Z-Ps" + "ed19357d-47dc-43fc-9bf9-055563831823" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499487554)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104287554)\\/\",\"ClientRequestId\":\"39b4c819-a72f-46c0-ad28-4ac9ea39f21a-2020-05-03 10:51:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zB0hHiQlzm4xrAnDGxq/ZXAXHKDfKY108NB6YdiJsq8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690456732)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295256732)\\/\",\"ClientRequestId\":\"b68b3f7b-d589-48e0-a292-697df8d4493e-2021-04-17 21:14:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UBu0Ub6ebREIkWyfE+tMdl9O5+lem8oOw87oP8gObqc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5043,35 +5001,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11959" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "39b4c819-a72f-46c0-ad28-4ac9ea39f21a-2020-05-03 10:51:27Z-Ps 5/3/2020 10:51:27 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "ed19357d-47dc-43fc-9bf9-055563831823 4/17/2021 9:14:16 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "39b4c819-a72f-46c0-ad28-4ac9ea39f21a-2020-05-03 10:51:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ed19357d-47dc-43fc-9bf9-055563831823" ], "x-ms-correlation-request-id": [ - "4aa83e0f-8f89-4b01-acfd-045c0513c358" + "06ed59f4-283d-4a25-bf37-c4b28a0c2ded" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105127Z:4aa83e0f-8f89-4b01-acfd-045c0513c358" + "CENTRALUSEUAP:20210417T211416Z:06ed59f4-283d-4a25-bf37-c4b28a0c2ded" ], "Date": [ - "Sun, 03 May 2020 10:51:27 GMT" + "Sat, 17 Apr 2021 21:14:16 GMT" ], "Content-Length": [ "28" @@ -5087,25 +5042,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxOTE4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxOTE4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointHistory\": 720,\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enable\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e8ec4540-9087-4669-b2a4-57c409066f7f-2020-05-03 10:51:28Z-Ps" + "afbb91ed-4490-4d89-b808-0ae1655e590c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499488064)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104288064)\\/\",\"ClientRequestId\":\"e8ec4540-9087-4669-b2a4-57c409066f7f-2020-05-03 10:51:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pluXAdrhp9PkdqgeB7DjG0Mu+griYdMc3AmbpNj4Fu4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690457158)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295257158)\\/\",\"ClientRequestId\":\"0cc4d6d6-3818-4838-be1f-9997588c48d9-2021-04-17 21:14:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Nvdw33320slVA4WZC2dOkjfMtZig8YNm17WUT+qT9f4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5122,40 +5077,37 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918/operationresults/44a3fcf4-0601-4be6-ba18-1b8120859e1d?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918/operationresults/a19ee7f7-82a8-4934-bb89-210afee62ab9?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "e8ec4540-9087-4669-b2a4-57c409066f7f-2020-05-03 10:51:28Z-Ps 5/3/2020 10:51:28 AM" + "afbb91ed-4490-4d89-b808-0ae1655e590c 4/17/2021 9:14:17 PM" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/44a3fcf4-0601-4be6-ba18-1b8120859e1d?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/a19ee7f7-82a8-4934-bb89-210afee62ab9?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e8ec4540-9087-4669-b2a4-57c409066f7f-2020-05-03 10:51:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "afbb91ed-4490-4d89-b808-0ae1655e590c" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1188" ], "x-ms-correlation-request-id": [ - "a01bbcbe-4dba-4a9e-b992-aaf2aec5304d" + "77367b5e-8511-413d-8441-3786d7a154fe" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105128Z:a01bbcbe-4dba-4a9e-b992-aaf2aec5304d" + "CENTRALUSEUAP:20210417T211417Z:77367b5e-8511-413d-8441-3786d7a154fe" ], "Date": [ - "Sun, 03 May 2020 10:51:28 GMT" + "Sat, 17 Apr 2021 21:14:16 GMT" ], "Expires": [ "-1" @@ -5168,25 +5120,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNDRhM2ZjZjQtMDYwMS00YmU2LWJhMTgtMWI4MTIwODU5ZTFkP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYTE5ZWU3ZjctODJhOC00OTM0LWJiODktMjEwYWZlZTYyYWI5P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07b21fb8-57c7-4475-9251-aa667304e958-2020-05-03 10:51:28Z-Ps" + "afbb91ed-4490-4d89-b808-0ae1655e590c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499488880)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104288880)\\/\",\"ClientRequestId\":\"07b21fb8-57c7-4475-9251-aa667304e958-2020-05-03 10:51:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gpTFLylhIpBT4C2dDBELaoYstCEz3djSBvwMtO9cXLI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690457709)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295257709)\\/\",\"ClientRequestId\":\"072a3ea9-0169-41bc-85a0-f71ff9a42cb6-2021-04-17 21:14:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WnlHByk05TfRP0sPIwHQgaxCM/MSYZA7qbxebIdpjG4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5197,38 +5149,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11958" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "07b21fb8-57c7-4475-9251-aa667304e958-2020-05-03 10:51:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "afbb91ed-4490-4d89-b808-0ae1655e590c" ], "x-ms-correlation-request-id": [ - "7579c331-2364-47ca-83d2-169bc3aaaa19" + "82279d92-7d03-47c5-a760-d1276cb15879" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105129Z:7579c331-2364-47ca-83d2-169bc3aaaa19" + "CENTRALUSEUAP:20210417T211417Z:82279d92-7d03-47c5-a760-d1276cb15879" ], "Date": [ - "Sun, 03 May 2020 10:51:29 GMT" + "Sat, 17 Apr 2021 21:14:16 GMT" ], "Content-Length": [ - "1727" + "1733" ], "Content-Type": [ "application/json" @@ -5237,29 +5186,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e8ec4540-9087-4669-b2a4-57c409066f7f-2020-05-03 10:51:28Z-Ps ActivityId: a01bbcbe-4dba-4a9e-b992-aaf2aec5304d\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2020-05-03T10:51:29.0020932Z\",\r\n \"endTime\": \"2020-05-03T10:51:29.0489678Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2020-05-03T10:51:29.0489678Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"afbb91ed-4490-4d89-b808-0ae1655e590c ActivityId: 77367b5e-8511-413d-8441-3786d7a154fe\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2021-04-17T21:14:17.6024977Z\",\r\n \"endTime\": \"2021-04-17T21:14:17.6774963Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2021-04-17T21:14:17.6774963Z\",\r\n \"endTime\": \"2021-04-17T21:14:17.6774963Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNDRhM2ZjZjQtMDYwMS00YmU2LWJhMTgtMWI4MTIwODU5ZTFkP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYTE5ZWU3ZjctODJhOC00OTM0LWJiODktMjEwYWZlZTYyYWI5P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbe7f8ff-8d6d-46ab-97e8-ffed84480f07-2020-05-03 10:51:29Z-Ps" + "d06e2562-0c76-496f-a4a2-c6479271c98a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499489420)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104289420)\\/\",\"ClientRequestId\":\"dbe7f8ff-8d6d-46ab-97e8-ffed84480f07-2020-05-03 10:51:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lmvn9EwcCWKaZyKpfOChctcds8bPcpqBidmvPf0CBQM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690458086)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295258086)\\/\",\"ClientRequestId\":\"21821553-843b-445c-8376-cade04b36da4-2021-04-17 21:14:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FagjiCBD8YJEsJd0xVXBUY8L7TLiJwPNf83QxMpVaKQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5270,38 +5219,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11957" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "dbe7f8ff-8d6d-46ab-97e8-ffed84480f07-2020-05-03 10:51:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d06e2562-0c76-496f-a4a2-c6479271c98a" ], "x-ms-correlation-request-id": [ - "89f0afc8-a168-43bc-8dd7-48285fa98239" + "cf76e13a-790b-4577-bda5-60f31e6be8c2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105129Z:89f0afc8-a168-43bc-8dd7-48285fa98239" + "CENTRALUSEUAP:20210417T211418Z:cf76e13a-790b-4577-bda5-60f31e6be8c2" ], "Date": [ - "Sun, 03 May 2020 10:51:29 GMT" + "Sat, 17 Apr 2021 21:14:17 GMT" ], "Content-Length": [ - "1757" + "1733" ], "Content-Type": [ "application/json" @@ -5310,29 +5256,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e8ec4540-9087-4669-b2a4-57c409066f7f-2020-05-03 10:51:28Z-Ps ActivityId: a01bbcbe-4dba-4a9e-b992-aaf2aec5304d\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2020-05-03T10:51:29.0020932Z\",\r\n \"endTime\": \"2020-05-03T10:51:29.1739482Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2020-05-03T10:51:29.1739482Z\",\r\n \"endTime\": \"2020-05-03T10:51:29.1739482Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"afbb91ed-4490-4d89-b808-0ae1655e590c ActivityId: 77367b5e-8511-413d-8441-3786d7a154fe\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2021-04-17T21:14:17.6024977Z\",\r\n \"endTime\": \"2021-04-17T21:14:17.6774963Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2021-04-17T21:14:17.6774963Z\",\r\n \"endTime\": \"2021-04-17T21:14:17.6774963Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxOTE4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxOTE4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7656e5d4-f6ab-46a9-aa21-6c01f59051fb-2020-05-03 10:51:29Z-Ps" + "00354845-7473-4528-b983-f46c8988d21c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499489910)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104289910)\\/\",\"ClientRequestId\":\"7656e5d4-f6ab-46a9-aa21-6c01f59051fb-2020-05-03 10:51:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rBXHF4nA0cUDpMlQe/AM8sYA33SlPu8ZAuUNmD7AoUE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690458500)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295258500)\\/\",\"ClientRequestId\":\"7e7ce32e-14ce-45ff-92d6-3b980fcd7138-2021-04-17 21:14:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2v4SchwAAlN3Tg/UU396kQNTAIRn2h9puz7YHUeMeYY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5343,35 +5289,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11956" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "7656e5d4-f6ab-46a9-aa21-6c01f59051fb-2020-05-03 10:51:29Z-Ps 5/3/2020 10:51:30 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "00354845-7473-4528-b983-f46c8988d21c 4/17/2021 9:14:18 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7656e5d4-f6ab-46a9-aa21-6c01f59051fb-2020-05-03 10:51:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "00354845-7473-4528-b983-f46c8988d21c" ], "x-ms-correlation-request-id": [ - "afa0cfd5-959c-418a-ab33-ae6cc5cc6f8b" + "7f557e7e-f95a-422f-83d4-0e208e237b06" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105130Z:afa0cfd5-959c-418a-ab33-ae6cc5cc6f8b" + "CENTRALUSEUAP:20210417T211418Z:7f557e7e-f95a-422f-83d4-0e208e237b06" ], "Date": [ - "Sun, 03 May 2020 10:51:30 GMT" + "Sat, 17 Apr 2021 21:14:17 GMT" ], "Content-Length": [ "557" @@ -5383,29 +5326,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918\",\r\n \"name\": \"TestA2APolicy1918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestA2APolicy1918\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918\",\r\n \"name\": \"TestA2APolicy1918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestA2APolicy1918\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxOTE4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxOTE4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f6b1a13-6fb6-46fe-875d-60feb660339a-2020-05-03 10:53:18Z-Ps" + "862d0667-8819-4091-b19c-22d759917983" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499598656)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104398656)\\/\",\"ClientRequestId\":\"9f6b1a13-6fb6-46fe-875d-60feb660339a-2020-05-03 10:53:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lGm+rbwh0d57dtlnykAJBUU3vLMzYs2lKqmjlzLCofo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690564123)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295364123)\\/\",\"ClientRequestId\":\"b7675bf5-4b5b-4da8-98fc-12a6a86a43d7-2021-04-17 21:16:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tmn/OXMGyswqBSJHo+doVoHM2cuMvsUMN/5TuTS2yx8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5416,35 +5359,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11945" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "9f6b1a13-6fb6-46fe-875d-60feb660339a-2020-05-03 10:53:18Z-Ps 5/3/2020 10:53:18 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "862d0667-8819-4091-b19c-22d759917983 4/17/2021 9:16:04 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9f6b1a13-6fb6-46fe-875d-60feb660339a-2020-05-03 10:53:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "862d0667-8819-4091-b19c-22d759917983" ], "x-ms-correlation-request-id": [ - "01552c07-ac7a-43a1-8acf-2aaa527cc3ba" + "bb773f2c-dbcc-4ee8-9ac9-2bc1793e5417" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105318Z:01552c07-ac7a-43a1-8acf-2aaa527cc3ba" + "CENTRALUSEUAP:20210417T211604Z:bb773f2c-dbcc-4ee8-9ac9-2bc1793e5417" ], "Date": [ - "Sun, 03 May 2020 10:53:18 GMT" + "Sat, 17 Apr 2021 21:16:03 GMT" ], "Content-Length": [ "557" @@ -5456,29 +5396,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918\",\r\n \"name\": \"TestA2APolicy1918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestA2APolicy1918\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918\",\r\n \"name\": \"TestA2APolicy1918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestA2APolicy1918\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectionContainerMappings/A2APCM918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUENNOTE4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectionContainerMappings/A2APCM918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUENNOTE4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918\",\r\n \"policyId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918\",\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"ReplicationProviderSpecificContainerMappingInput\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918\",\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918\",\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"ReplicationProviderSpecificContainerMappingInput\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f8ca2dfb-ec07-40d4-96ce-269179262d44-2020-05-03 10:51:30Z-Ps" + "b9e364f1-03b1-4ef1-955a-24e06687f30b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499490353)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104290353)\\/\",\"ClientRequestId\":\"f8ca2dfb-ec07-40d4-96ce-269179262d44-2020-05-03 10:51:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ny3dwM9hb/rjX6k2cjropq26ksYbKDGS7TativdQ8Y8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690458898)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295258898)\\/\",\"ClientRequestId\":\"2652a939-3a40-4857-a7b9-2b486137db4b-2021-04-17 21:14:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2ZHWkTO/tSUvxCVobr531a2erd8LrzeQ8Gi+KsUGsA4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5495,41 +5435,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectionContainerMappings/A2APCM918/operationresults/b6d550ad-09de-48b8-89f0-a1ed4ce46c53?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectionContainerMappings/A2APCM918/operationresults/a668ca91-cbde-4289-832d-f1e199eab68c?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53", - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/b6d550ad-09de-48b8-89f0-a1ed4ce46c53?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/a668ca91-cbde-4289-832d-f1e199eab68c?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f8ca2dfb-ec07-40d4-96ce-269179262d44-2020-05-03 10:51:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "b9e364f1-03b1-4ef1-955a-24e06687f30b" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1187" ], "x-ms-correlation-request-id": [ - "c4af5359-2648-4386-b5d3-0d52549f4096" + "2e9bab5d-8fce-46ab-805e-0f8f686b3c04" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105131Z:c4af5359-2648-4386-b5d3-0d52549f4096" + "CENTRALUSEUAP:20210417T211419Z:2e9bab5d-8fce-46ab-805e-0f8f686b3c04" ], "Date": [ - "Sun, 03 May 2020 10:51:31 GMT" + "Sat, 17 Apr 2021 21:14:19 GMT" ], "Expires": [ "-1" @@ -5542,25 +5479,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYjZkNTUwYWQtMDlkZS00OGI4LTg5ZjAtYTFlZDRjZTQ2YzUzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYTY2OGNhOTEtY2JkZS00Mjg5LTgzMmQtZjFlMTk5ZWFiNjhjP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73633cdf-2590-4fc1-a1fb-3e32511d90fd-2020-05-03 10:51:31Z-Ps" + "b9e364f1-03b1-4ef1-955a-24e06687f30b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499491316)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104291316)\\/\",\"ClientRequestId\":\"73633cdf-2590-4fc1-a1fb-3e32511d90fd-2020-05-03 10:51:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TQFZwyJ8qb5JfW77aSC06asMWQG389LhWH4qMF/mlB8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690459556)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295259556)\\/\",\"ClientRequestId\":\"648a80d4-b783-4a2e-9cbf-9c47540ccf84-2021-04-17 21:14:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1I20u9WXZXsGuQTnyiQvEvl04ZPWBtTnypRhFL34YY8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5571,38 +5508,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11955" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "73633cdf-2590-4fc1-a1fb-3e32511d90fd-2020-05-03 10:51:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b9e364f1-03b1-4ef1-955a-24e06687f30b" ], "x-ms-correlation-request-id": [ - "24334c7f-9db7-4ee6-8594-aa1dfea34fd9" + "7b10df25-2ced-4bba-927f-8969001e97ec" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105131Z:24334c7f-9db7-4ee6-8594-aa1dfea34fd9" + "CENTRALUSEUAP:20210417T211419Z:7b10df25-2ced-4bba-927f-8969001e97ec" ], "Date": [ - "Sun, 03 May 2020 10:51:31 GMT" + "Sat, 17 Apr 2021 21:14:19 GMT" ], "Content-Length": [ - "2909" + "2877" ], "Content-Type": [ "application/json" @@ -5611,29 +5545,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f8ca2dfb-ec07-40d4-96ce-269179262d44-2020-05-03 10:51:30Z-Ps ActivityId: c4af5359-2648-4386-b5d3-0d52549f4096\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:51:31.3146043Z\",\r\n \"endTime\": \"2020-05-03T10:51:31.4864853Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-05-03T10:51:31.4864853Z\",\r\n \"endTime\": \"2020-05-03T10:51:31.4395831Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-05-03T10:51:31.4395831Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b9e364f1-03b1-4ef1-955a-24e06687f30b ActivityId: 2e9bab5d-8fce-46ab-805e-0f8f686b3c04\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:14:19.6459351Z\",\r\n \"endTime\": \"2021-04-17T21:14:19.7109203Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-17T21:14:19.7109203Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYjZkNTUwYWQtMDlkZS00OGI4LTg5ZjAtYTFlZDRjZTQ2YzUzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYTY2OGNhOTEtY2JkZS00Mjg5LTgzMmQtZjFlMTk5ZWFiNjhjP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48afc3c1-76fe-4c86-a0a3-35b70d5ce29d-2020-05-03 10:51:31Z-Ps" + "9b9bf62e-02fa-4c87-aa84-166a3e15c9fe" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499491760)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104291760)\\/\",\"ClientRequestId\":\"48afc3c1-76fe-4c86-a0a3-35b70d5ce29d-2020-05-03 10:51:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"I7Qop25/ZnJconZYc9xWxDJfoj4pKobwN89YFIJYjLw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690459937)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295259937)\\/\",\"ClientRequestId\":\"f8f3a05b-30b4-456c-97c4-2b56d5a4d3f9-2021-04-17 21:14:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FT+gWOod1ikKUA6DTNiNOm3o7fbQDMi8t9P5cUEK+xI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5644,38 +5578,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11954" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "48afc3c1-76fe-4c86-a0a3-35b70d5ce29d-2020-05-03 10:51:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9b9bf62e-02fa-4c87-aa84-166a3e15c9fe" ], "x-ms-correlation-request-id": [ - "e0bc84ff-4827-4a71-ac32-fb2b13adf96b" + "1f535368-f9c5-40c7-a591-a016233d41c6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105132Z:e0bc84ff-4827-4a71-ac32-fb2b13adf96b" + "CENTRALUSEUAP:20210417T211420Z:1f535368-f9c5-40c7-a591-a016233d41c6" ], "Date": [ - "Sun, 03 May 2020 10:51:31 GMT" + "Sat, 17 Apr 2021 21:14:19 GMT" ], "Content-Length": [ - "2907" + "2893" ], "Content-Type": [ "application/json" @@ -5684,29 +5615,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f8ca2dfb-ec07-40d4-96ce-269179262d44-2020-05-03 10:51:30Z-Ps ActivityId: c4af5359-2648-4386-b5d3-0d52549f4096\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:51:31.3146043Z\",\r\n \"endTime\": \"2020-05-03T10:51:31.4864853Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-05-03T10:51:31.4864853Z\",\r\n \"endTime\": \"2020-05-03T10:51:31.533359Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-05-03T10:51:31.533359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b9e364f1-03b1-4ef1-955a-24e06687f30b ActivityId: 2e9bab5d-8fce-46ab-805e-0f8f686b3c04\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:14:19.6459351Z\",\r\n \"endTime\": \"2021-04-17T21:14:19.7509186Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-17T21:14:19.7509186Z\",\r\n \"endTime\": \"2021-04-17T21:14:19.7809236Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-17T21:14:19.7809236Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYjZkNTUwYWQtMDlkZS00OGI4LTg5ZjAtYTFlZDRjZTQ2YzUzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYTY2OGNhOTEtY2JkZS00Mjg5LTgzMmQtZjFlMTk5ZWFiNjhjP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc46aa30-094b-48ab-9e1a-b51ca8c0c749-2020-05-03 10:51:52Z-Ps" + "ed6ef244-4db5-4149-b9c4-60640d295c0e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499512306)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104312306)\\/\",\"ClientRequestId\":\"bc46aa30-094b-48ab-9e1a-b51ca8c0c749-2020-05-03 10:51:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZoYdatRDAv6DDhUI9ojHKUKU6ZwY8QMbwidQkmN2qUY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690480314)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295280314)\\/\",\"ClientRequestId\":\"83e0ce60-bdfc-4b42-9f6e-27716849fcae-2021-04-17 21:14:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lrmMRyriaBIs2h8eogB2MPKVHS5Iw9i4m/PkSfbe4BU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5717,38 +5648,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11953" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "bc46aa30-094b-48ab-9e1a-b51ca8c0c749-2020-05-03 10:51:52Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ed6ef244-4db5-4149-b9c4-60640d295c0e" ], "x-ms-correlation-request-id": [ - "052b3321-1db8-4cc8-ad8a-506f687c80e6" + "1679f66f-6536-44af-b31a-b1988a1784f8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105152Z:052b3321-1db8-4cc8-ad8a-506f687c80e6" + "CENTRALUSEUAP:20210417T211440Z:1679f66f-6536-44af-b31a-b1988a1784f8" ], "Date": [ - "Sun, 03 May 2020 10:51:52 GMT" + "Sat, 17 Apr 2021 21:14:40 GMT" ], "Content-Length": [ - "2907" + "2893" ], "Content-Type": [ "application/json" @@ -5757,29 +5685,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f8ca2dfb-ec07-40d4-96ce-269179262d44-2020-05-03 10:51:30Z-Ps ActivityId: c4af5359-2648-4386-b5d3-0d52549f4096\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:51:31.3146043Z\",\r\n \"endTime\": \"2020-05-03T10:51:31.4864853Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-05-03T10:51:31.4864853Z\",\r\n \"endTime\": \"2020-05-03T10:51:31.533359Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-05-03T10:51:31.533359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b9e364f1-03b1-4ef1-955a-24e06687f30b ActivityId: 2e9bab5d-8fce-46ab-805e-0f8f686b3c04\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:14:19.6459351Z\",\r\n \"endTime\": \"2021-04-17T21:14:19.7509186Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-17T21:14:19.7509186Z\",\r\n \"endTime\": \"2021-04-17T21:14:19.7809236Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-17T21:14:19.7809236Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYjZkNTUwYWQtMDlkZS00OGI4LTg5ZjAtYTFlZDRjZTQ2YzUzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYTY2OGNhOTEtY2JkZS00Mjg5LTgzMmQtZjFlMTk5ZWFiNjhjP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04e670e7-9d7c-4a36-9b7d-acdb9437099e-2020-05-03 10:52:13Z-Ps" + "d8fb8f20-8960-4ee8-aaaa-224d0acedb3c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499533000)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104333000)\\/\",\"ClientRequestId\":\"04e670e7-9d7c-4a36-9b7d-acdb9437099e-2020-05-03 10:52:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gGsdfJd0lowYJ5hlxFr7+7PbiSywXWHVphpWkGcQmXg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690500708)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295300708)\\/\",\"ClientRequestId\":\"63ef88a3-aa3a-4a06-b6a3-c44ce1b16bb5-2021-04-17 21:15:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lJoeT8ZXNITLeOjQlXRW5ReRSjsvA69k8W3gGA1w8So=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5790,38 +5718,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11952" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "04e670e7-9d7c-4a36-9b7d-acdb9437099e-2020-05-03 10:52:13Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d8fb8f20-8960-4ee8-aaaa-224d0acedb3c" ], "x-ms-correlation-request-id": [ - "20ee5fbd-5a98-4f1a-bdf6-09929321a7c0" + "0d78d76e-334e-4e7a-a3b8-1bf82718c1cb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105213Z:20ee5fbd-5a98-4f1a-bdf6-09929321a7c0" + "CENTRALUSEUAP:20210417T211500Z:0d78d76e-334e-4e7a-a3b8-1bf82718c1cb" ], "Date": [ - "Sun, 03 May 2020 10:52:13 GMT" + "Sat, 17 Apr 2021 21:15:00 GMT" ], "Content-Length": [ - "2907" + "2893" ], "Content-Type": [ "application/json" @@ -5830,29 +5755,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f8ca2dfb-ec07-40d4-96ce-269179262d44-2020-05-03 10:51:30Z-Ps ActivityId: c4af5359-2648-4386-b5d3-0d52549f4096\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:51:31.3146043Z\",\r\n \"endTime\": \"2020-05-03T10:51:31.4864853Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-05-03T10:51:31.4864853Z\",\r\n \"endTime\": \"2020-05-03T10:51:31.533359Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-05-03T10:51:31.533359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b9e364f1-03b1-4ef1-955a-24e06687f30b ActivityId: 2e9bab5d-8fce-46ab-805e-0f8f686b3c04\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:14:19.6459351Z\",\r\n \"endTime\": \"2021-04-17T21:14:19.7509186Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-17T21:14:19.7509186Z\",\r\n \"endTime\": \"2021-04-17T21:14:19.7809236Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-17T21:14:19.7809236Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYjZkNTUwYWQtMDlkZS00OGI4LTg5ZjAtYTFlZDRjZTQ2YzUzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYTY2OGNhOTEtY2JkZS00Mjg5LTgzMmQtZjFlMTk5ZWFiNjhjP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff0f24d0-fc5f-4ddb-8aca-dc70256d4915-2020-05-03 10:52:33Z-Ps" + "de1e9ba3-5d13-494c-b318-7e424ffd5cda" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499553541)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104353541)\\/\",\"ClientRequestId\":\"ff0f24d0-fc5f-4ddb-8aca-dc70256d4915-2020-05-03 10:52:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wFQyDCaQbw5/wJyPSuVQz3u8qSze34ywFbETyBRmdfU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690521101)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295321101)\\/\",\"ClientRequestId\":\"9d013925-0f9b-48e9-a267-9a01e6ac6eb0-2021-04-17 21:15:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"B4QtMoDvr8CFQEi4UnELB8u/wpQ4JlppNLH3V86VtlQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5862,39 +5787,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ff0f24d0-fc5f-4ddb-8aca-dc70256d4915-2020-05-03 10:52:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "de1e9ba3-5d13-494c-b318-7e424ffd5cda" ], "x-ms-correlation-request-id": [ - "0346dc7c-edd4-43d5-8338-b0b9e7b2b11c" + "c8b0b085-8507-4fa5-a617-91c4b5d032a4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105233Z:0346dc7c-edd4-43d5-8338-b0b9e7b2b11c" + "CENTRALUSEUAP:20210417T211521Z:c8b0b085-8507-4fa5-a617-91c4b5d032a4" ], "Date": [ - "Sun, 03 May 2020 10:52:33 GMT" + "Sat, 17 Apr 2021 21:15:20 GMT" ], "Content-Length": [ - "2907" + "2893" ], "Content-Type": [ "application/json" @@ -5903,29 +5825,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f8ca2dfb-ec07-40d4-96ce-269179262d44-2020-05-03 10:51:30Z-Ps ActivityId: c4af5359-2648-4386-b5d3-0d52549f4096\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:51:31.3146043Z\",\r\n \"endTime\": \"2020-05-03T10:51:31.4864853Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-05-03T10:51:31.4864853Z\",\r\n \"endTime\": \"2020-05-03T10:51:31.533359Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-05-03T10:51:31.533359Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b9e364f1-03b1-4ef1-955a-24e06687f30b ActivityId: 2e9bab5d-8fce-46ab-805e-0f8f686b3c04\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:14:19.6459351Z\",\r\n \"endTime\": \"2021-04-17T21:14:19.7509186Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-17T21:14:19.7509186Z\",\r\n \"endTime\": \"2021-04-17T21:14:19.7809236Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-17T21:14:19.7809236Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYjZkNTUwYWQtMDlkZS00OGI4LTg5ZjAtYTFlZDRjZTQ2YzUzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYTY2OGNhOTEtY2JkZS00Mjg5LTgzMmQtZjFlMTk5ZWFiNjhjP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61c25dd2-e248-46ae-91eb-69fb6c7e5230-2020-05-03 10:52:54Z-Ps" + "c80bbb38-a87c-43a0-88bf-1bfe6293accc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499574147)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104374147)\\/\",\"ClientRequestId\":\"61c25dd2-e248-46ae-91eb-69fb6c7e5230-2020-05-03 10:52:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"aw43lZv9fwVsw0SoIfQ+ZtZfZtvpdRrXgPvgR884HAc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690541500)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295341500)\\/\",\"ClientRequestId\":\"d535afd7-3864-4a03-b533-9e3d53d459ba-2021-04-17 21:15:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Yi1H9fZqKvnoYXavA0b4ugd4FEPPN6uQcTxm8sAOer4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5936,38 +5858,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11950" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "61c25dd2-e248-46ae-91eb-69fb6c7e5230-2020-05-03 10:52:54Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c80bbb38-a87c-43a0-88bf-1bfe6293accc" ], "x-ms-correlation-request-id": [ - "8e8f921f-b8c9-4fdd-8d5c-3c82f2871d4f" + "0bddf89c-a53f-4164-b513-daa6520ee42d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105255Z:8e8f921f-b8c9-4fdd-8d5c-3c82f2871d4f" + "CENTRALUSEUAP:20210417T211541Z:0bddf89c-a53f-4164-b513-daa6520ee42d" ], "Date": [ - "Sun, 03 May 2020 10:52:55 GMT" + "Sat, 17 Apr 2021 21:15:41 GMT" ], "Content-Length": [ - "2955" + "2939" ], "Content-Type": [ "application/json" @@ -5976,29 +5895,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f8ca2dfb-ec07-40d4-96ce-269179262d44-2020-05-03 10:51:30Z-Ps ActivityId: c4af5359-2648-4386-b5d3-0d52549f4096\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:51:31.3146043Z\",\r\n \"endTime\": \"2020-05-03T10:51:31.4864853Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-05-03T10:51:31.4864853Z\",\r\n \"endTime\": \"2020-05-03T10:52:42.3291679Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-05-03T10:52:42.3291679Z\",\r\n \"endTime\": \"2020-05-03T10:52:42.5010168Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"2020-05-03T10:52:42.5010168Z\",\r\n \"endTime\": \"2020-05-03T10:52:42.5010168Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b9e364f1-03b1-4ef1-955a-24e06687f30b ActivityId: 2e9bab5d-8fce-46ab-805e-0f8f686b3c04\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:14:19.6459351Z\",\r\n \"endTime\": \"2021-04-17T21:14:19.7509186Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-17T21:14:19.7509186Z\",\r\n \"endTime\": \"2021-04-17T21:15:25.2613519Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-17T21:15:25.2613519Z\",\r\n \"endTime\": \"2021-04-17T21:15:25.3413512Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"2021-04-17T21:15:25.3413512Z\",\r\n \"endTime\": \"2021-04-17T21:15:25.3413512Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectionContainerMappings/A2APCM918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUENNOTE4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectionContainerMappings/A2APCM918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUENNOTE4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53fcded8-c786-45c0-8954-da9b67b99e02-2020-05-03 10:52:55Z-Ps" + "c86e3150-79d5-4ad7-a700-11a434b7bf70" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499575688)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104375688)\\/\",\"ClientRequestId\":\"53fcded8-c786-45c0-8954-da9b67b99e02-2020-05-03 10:52:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qWgOMe5FQJoPEOZaEA704SVI3AJpsD8FWiQW8mb+2v4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690541878)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295341878)\\/\",\"ClientRequestId\":\"5b619eb3-93fb-42d9-af43-5b75e3a2fc59-2021-04-17 21:15:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Sr6Yi3RHjjzClKJsO4hz6pYj51CeC8nGfE/OnU165KU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6009,38 +5928,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11949" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "53fcded8-c786-45c0-8954-da9b67b99e02-2020-05-03 10:52:55Z-Ps 5/3/2020 10:52:55 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "c86e3150-79d5-4ad7-a700-11a434b7bf70 4/17/2021 9:15:42 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "53fcded8-c786-45c0-8954-da9b67b99e02-2020-05-03 10:52:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c86e3150-79d5-4ad7-a700-11a434b7bf70" ], "x-ms-correlation-request-id": [ - "c63eb57c-8351-4734-91e4-0bdc7bdd9ef5" + "d43f2d3f-549c-4d9d-bbe4-ec84429e8e89" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105256Z:c63eb57c-8351-4734-91e4-0bdc7bdd9ef5" + "CENTRALUSEUAP:20210417T211542Z:d43f2d3f-549c-4d9d-bbe4-ec84429e8e89" ], "Date": [ - "Sun, 03 May 2020 10:52:55 GMT" + "Sat, 17 Apr 2021 21:15:41 GMT" ], "Content-Length": [ - "1424" + "1432" ], "Content-Type": [ "application/json" @@ -6049,29 +5965,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectionContainerMappings/A2APCM918\",\r\n \"name\": \"A2APCM918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918\",\r\n \"targetProtectionContainerFriendlyName\": \"A2ARecoveryContainer918\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"agentAutoUpdateStatus\": \"Disabled\",\r\n \"automationAccountArmId\": null,\r\n \"scheduleName\": null,\r\n \"jobScheduleName\": null\r\n },\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"A2APrimaryContainer918\",\r\n \"sourceFabricFriendlyName\": \"West US\",\r\n \"targetFabricFriendlyName\": \"East US\",\r\n \"policyFriendlyName\": \"TestA2APolicy1918\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectionContainerMappings/A2APCM918\",\r\n \"name\": \"A2APCM918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918\",\r\n \"targetProtectionContainerFriendlyName\": \"A2ARecoveryContainer918\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"agentAutoUpdateStatus\": \"Disabled\",\r\n \"automationAccountArmId\": null,\r\n \"scheduleName\": null,\r\n \"jobScheduleName\": null\r\n },\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"A2APrimaryContainer918\",\r\n \"sourceFabricFriendlyName\": \"East US\",\r\n \"targetFabricFriendlyName\": \"West Central US\",\r\n \"policyFriendlyName\": \"TestA2APolicy1918\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ANetworkMapping918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOC9yZXBsaWNhdGlvbk5ldHdvcmtzL2F6dXJlTmV0d29yay9yZXBsaWNhdGlvbk5ldHdvcmtNYXBwaW5ncy9BMkFOZXR3b3JrTWFwcGluZzkxOD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ANetworkMapping918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOC9yZXBsaWNhdGlvbk5ldHdvcmtzL2F6dXJlTmV0d29yay9yZXBsaWNhdGlvbk5ldHdvcmtNYXBwaW5ncy9BMkFOZXR3b3JrTWFwcGluZzkxOD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"recoveryFabricName\": \"a2aRecoveryFabric918\",\r\n \"recoveryNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918\",\r\n \"fabricSpecificDetails\": {\r\n \"instanceType\": \"AzureToAzure\",\r\n \"primaryNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"recoveryFabricName\": \"a2aRecoveryFabric918\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork918\",\r\n \"fabricSpecificDetails\": {\r\n \"instanceType\": \"AzureToAzure\",\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "df6db8b0-33ad-4909-8778-f86500699878-2020-05-03 10:52:56Z-Ps" + "670945a5-059d-4f43-901d-a2af81ced564" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499576189)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104376189)\\/\",\"ClientRequestId\":\"df6db8b0-33ad-4909-8778-f86500699878-2020-05-03 10:52:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GkdQJXvErPl3fi2vt1jyGcJgPpfT/u60HygWQNXyAq8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690542334)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295342334)\\/\",\"ClientRequestId\":\"7a914181-9c39-4452-9f93-77c191b819aa-2021-04-17 21:15:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7JhGreg/PyzZfDITXV2cwz+/F5fsRZ3H8u+bwCShFIw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6088,40 +6004,37 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ANetworkMapping918/operationresults/681663ce-fcde-4bf0-b80d-da23a7896518?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ANetworkMapping918/operationresults/5ee0dea8-a849-4fab-9ac2-ee5ba24da818?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "df6db8b0-33ad-4909-8778-f86500699878-2020-05-03 10:52:56Z-Ps 5/3/2020 10:52:56 AM" + "670945a5-059d-4f43-901d-a2af81ced564 4/17/2021 9:15:42 PM" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/681663ce-fcde-4bf0-b80d-da23a7896518?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/5ee0dea8-a849-4fab-9ac2-ee5ba24da818?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "df6db8b0-33ad-4909-8778-f86500699878-2020-05-03 10:52:56Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "670945a5-059d-4f43-901d-a2af81ced564" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1186" ], "x-ms-correlation-request-id": [ - "3ef339b0-9688-40fd-a73b-1d3a38ee69a8" + "ed84a50a-1ce8-4ab2-b534-5e2a0fc34a81" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105256Z:3ef339b0-9688-40fd-a73b-1d3a38ee69a8" + "CENTRALUSEUAP:20210417T211542Z:ed84a50a-1ce8-4ab2-b534-5e2a0fc34a81" ], "Date": [ - "Sun, 03 May 2020 10:52:56 GMT" + "Sat, 17 Apr 2021 21:15:42 GMT" ], "Expires": [ "-1" @@ -6134,25 +6047,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNjgxNjYzY2UtZmNkZS00YmYwLWI4MGQtZGEyM2E3ODk2NTE4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNWVlMGRlYTgtYTg0OS00ZmFiLTlhYzItZWU1YmEyNGRhODE4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1499d369-bedc-4585-ac46-8c9e49e7dcb3-2020-05-03 10:52:56Z-Ps" + "670945a5-059d-4f43-901d-a2af81ced564" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499576873)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104376873)\\/\",\"ClientRequestId\":\"1499d369-bedc-4585-ac46-8c9e49e7dcb3-2020-05-03 10:52:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rQKqbI9XJmNf1BbUhPB9R8CBpj7YCjKDzOdoAK10A+o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690542920)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295342920)\\/\",\"ClientRequestId\":\"b16fb9a8-5b74-4754-adac-43c959f1e1f8-2021-04-17 21:15:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZnsMzUBpMObIqPdUZQNRD7DeuSxlDmzDNWcji8BTzZQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6163,38 +6076,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11948" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1499d369-bedc-4585-ac46-8c9e49e7dcb3-2020-05-03 10:52:56Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "670945a5-059d-4f43-901d-a2af81ced564" ], "x-ms-correlation-request-id": [ - "56409e7d-a5c6-4999-94b3-62c3d956e8ab" + "086731d6-ee33-44c2-a389-b2b401dc026a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105257Z:56409e7d-a5c6-4999-94b3-62c3d956e8ab" + "CENTRALUSEUAP:20210417T211543Z:086731d6-ee33-44c2-a389-b2b401dc026a" ], "Date": [ - "Sun, 03 May 2020 10:52:56 GMT" + "Sat, 17 Apr 2021 21:15:42 GMT" ], "Content-Length": [ - "2197" + "2172" ], "Content-Type": [ "application/json" @@ -6203,29 +6113,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"df6db8b0-33ad-4909-8778-f86500699878-2020-05-03 10:52:56Z-Ps ActivityId: 3ef339b0-9688-40fd-a73b-1d3a38ee69a8\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"28bdc05e-3c27-484c-8b5c-f13b3115e33b\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2020-05-03T10:52:56.7190188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"f369d963-e55d-4f46-8a40-b9b285b71329\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm918/providers/microsoft.network/virtualnetworks/a2avm918\",\r\n \"primaryNetworkName\": \"a2avm918\",\r\n \"recoveryNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/recrg918/providers/microsoft.network/virtualnetworks/a2arecoverynetwork918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"670945a5-059d-4f43-901d-a2af81ced564 ActivityId: ed84a50a-1ce8-4ab2-b534-5e2a0fc34a81\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"fd7e2993-c206-4a89-a7e0-e7040e260c39\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"add76db8-21d7-4a05-beb1-79c94d0148cb\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm918/providers/microsoft.network/virtualnetworks/a2avm918\",\r\n \"primaryNetworkName\": \"a2avm918\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg918/providers/microsoft.network/virtualnetworks/a2arecoverynetwork918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNjgxNjYzY2UtZmNkZS00YmYwLWI4MGQtZGEyM2E3ODk2NTE4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNWVlMGRlYTgtYTg0OS00ZmFiLTlhYzItZWU1YmEyNGRhODE4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a366b5c0-69ce-4d13-ba37-b53e1bb8a812-2020-05-03 10:52:57Z-Ps" + "38ff646a-ec49-499e-896f-80d3d82026cc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499577324)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104377324)\\/\",\"ClientRequestId\":\"a366b5c0-69ce-4d13-ba37-b53e1bb8a812-2020-05-03 10:52:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6XTS4I9JsRWkXLTuYzK0aMRdVTkF5SRfkyi2fCglwOo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690543327)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295343327)\\/\",\"ClientRequestId\":\"9c6e8834-2d4e-403b-9ae8-80ab223f32e8-2021-04-17 21:15:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jOg4tHtferVMzcwt7JTPr3h/gsIsf/T7bh8Iaml9mbk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6236,38 +6146,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11947" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a366b5c0-69ce-4d13-ba37-b53e1bb8a812-2020-05-03 10:52:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "38ff646a-ec49-499e-896f-80d3d82026cc" ], "x-ms-correlation-request-id": [ - "2c94431f-812f-4841-aa38-2a9a6dce1141" + "19bfdb2e-d7de-4438-bb4d-fde01e4549ab" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105257Z:2c94431f-812f-4841-aa38-2a9a6dce1141" + "CENTRALUSEUAP:20210417T211543Z:19bfdb2e-d7de-4438-bb4d-fde01e4549ab" ], "Date": [ - "Sun, 03 May 2020 10:52:57 GMT" + "Sat, 17 Apr 2021 21:15:42 GMT" ], "Content-Length": [ - "2197" + "2180" ], "Content-Type": [ "application/json" @@ -6276,29 +6183,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"df6db8b0-33ad-4909-8778-f86500699878-2020-05-03 10:52:56Z-Ps ActivityId: 3ef339b0-9688-40fd-a73b-1d3a38ee69a8\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"28bdc05e-3c27-484c-8b5c-f13b3115e33b\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2020-05-03T10:52:56.7190188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"f369d963-e55d-4f46-8a40-b9b285b71329\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm918/providers/microsoft.network/virtualnetworks/a2avm918\",\r\n \"primaryNetworkName\": \"a2avm918\",\r\n \"recoveryNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/recrg918/providers/microsoft.network/virtualnetworks/a2arecoverynetwork918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"670945a5-059d-4f43-901d-a2af81ced564 ActivityId: ed84a50a-1ce8-4ab2-b534-5e2a0fc34a81\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"fd7e2993-c206-4a89-a7e0-e7040e260c39\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-17T21:15:43.133437Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"add76db8-21d7-4a05-beb1-79c94d0148cb\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm918/providers/microsoft.network/virtualnetworks/a2avm918\",\r\n \"primaryNetworkName\": \"a2avm918\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg918/providers/microsoft.network/virtualnetworks/a2arecoverynetwork918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNjgxNjYzY2UtZmNkZS00YmYwLWI4MGQtZGEyM2E3ODk2NTE4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNWVlMGRlYTgtYTg0OS00ZmFiLTlhYzItZWU1YmEyNGRhODE4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c481cf7c-24df-4430-8617-42759942010b-2020-05-03 10:53:17Z-Ps" + "be377289-6ef6-49ef-8356-09a908d68389" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499597950)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104397950)\\/\",\"ClientRequestId\":\"c481cf7c-24df-4430-8617-42759942010b-2020-05-03 10:53:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"K+5VPU6ap8yZdVeU9rLiQw+aMiqii4+qx866MGeLS+w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690563718)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295363718)\\/\",\"ClientRequestId\":\"9b5a641f-e12c-4bef-9dd3-08748da95bd6-2021-04-17 21:16:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hqp2WrKRIDmqxZC6cY5rDUX7Dr/DnziL2p+r4pzz3fo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6309,38 +6216,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11946" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c481cf7c-24df-4430-8617-42759942010b-2020-05-03 10:53:17Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "be377289-6ef6-49ef-8356-09a908d68389" ], "x-ms-correlation-request-id": [ - "7894e89f-5ad0-487e-b0fd-f2c910465644" + "3020a46e-acff-462c-add7-27562351d064" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105318Z:7894e89f-5ad0-487e-b0fd-f2c910465644" + "CENTRALUSEUAP:20210417T211603Z:3020a46e-acff-462c-add7-27562351d064" ], "Date": [ - "Sun, 03 May 2020 10:53:18 GMT" + "Sat, 17 Apr 2021 21:16:03 GMT" ], "Content-Length": [ - "2219" + "2201" ], "Content-Type": [ "application/json" @@ -6349,29 +6253,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"df6db8b0-33ad-4909-8778-f86500699878-2020-05-03 10:52:56Z-Ps ActivityId: 3ef339b0-9688-40fd-a73b-1d3a38ee69a8\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"28bdc05e-3c27-484c-8b5c-f13b3115e33b\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2020-05-03T10:52:56.7190188Z\",\r\n \"endTime\": \"2020-05-03T10:52:58.5403534Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"f369d963-e55d-4f46-8a40-b9b285b71329\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm918/providers/microsoft.network/virtualnetworks/a2avm918\",\r\n \"primaryNetworkName\": \"a2avm918\",\r\n \"recoveryNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/recrg918/providers/microsoft.network/virtualnetworks/a2arecoverynetwork918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"670945a5-059d-4f43-901d-a2af81ced564 ActivityId: ed84a50a-1ce8-4ab2-b534-5e2a0fc34a81\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"fd7e2993-c206-4a89-a7e0-e7040e260c39\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-17T21:15:43.133437Z\",\r\n \"endTime\": \"2021-04-17T21:15:44.341489Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"add76db8-21d7-4a05-beb1-79c94d0148cb\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm918/providers/microsoft.network/virtualnetworks/a2avm918\",\r\n \"primaryNetworkName\": \"a2avm918\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg918/providers/microsoft.network/virtualnetworks/a2arecoverynetwork918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTgvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTkxOD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTgvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTkxOD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"policyId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Compute/virtualMachines/a2aVM918\",\r\n \"recoveryContainerId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr\",\r\n \"vmDisks\": [],\r\n \"vmManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2AVM918/providers/Microsoft.Compute/disks/a2aVM918_OsDisk_1_0c12d1210b1c49f783b52ff5249c77bb\",\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Storage/storageAccounts/cache918\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Compute/virtualMachines/a2aVM918\",\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr\",\r\n \"vmDisks\": [],\r\n \"vmManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Compute/disks/a2aVM918_OsDisk_1_5d9da26740f94b2eb974cf23bc75b546\",\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Storage/storageAccounts/cache918\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps" + "862d0667-8819-4091-b19c-22d759917983" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499599031)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104399031)\\/\",\"ClientRequestId\":\"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TdLf+LnxeSkdbK4u47LUeNC7TlAXoiz1ttMMhargvzw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690564499)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295364499)\\/\",\"ClientRequestId\":\"1ee27eaf-dc15-4bb7-8dae-b79e1b948555-2021-04-17 21:16:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PePQuT0N4MkSDMn73QV6EtgnaT+O0ujP0acK0lbiQ7I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6388,41 +6292,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918/operationresults/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918/operationresults/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f", - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "862d0667-8819-4091-b19c-22d759917983" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1185" ], "x-ms-correlation-request-id": [ - "3d2376e6-f3cb-495b-a772-6515984030d5" + "514035fe-ed24-429c-869f-725811fbc611" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105319Z:3d2376e6-f3cb-495b-a772-6515984030d5" + "CENTRALUSEUAP:20210417T211605Z:514035fe-ed24-429c-869f-725811fbc611" ], "Date": [ - "Sun, 03 May 2020 10:53:19 GMT" + "Sat, 17 Apr 2021 21:16:04 GMT" ], "Expires": [ "-1" @@ -6435,25 +6336,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eeff1300-a4bd-4799-8ea1-cd0d4a20c955-2020-05-03 10:53:20Z-Ps" + "862d0667-8819-4091-b19c-22d759917983" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499600039)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104400039)\\/\",\"ClientRequestId\":\"eeff1300-a4bd-4799-8ea1-cd0d4a20c955-2020-05-03 10:53:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"E1GhkPDQRKU6vTNiZCS5jZV5ak3zd9xdDHAM6VQe26Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690565345)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295365345)\\/\",\"ClientRequestId\":\"dcb64775-cad1-47af-90ae-987f7c6407ad-2021-04-17 21:16:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yaLQN7lledL8Dciudb9KLlsif4/Vm65CFfRJESLrirA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6464,38 +6365,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11944" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "eeff1300-a4bd-4799-8ea1-cd0d4a20c955-2020-05-03 10:53:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "862d0667-8819-4091-b19c-22d759917983" ], "x-ms-correlation-request-id": [ - "d13d0cd0-5e3a-4524-9a04-fdccb3507ad3" + "1181cd9d-7beb-4f3f-a640-035d7c9a17b7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105320Z:d13d0cd0-5e3a-4524-9a04-fdccb3507ad3" + "CENTRALUSEUAP:20210417T211605Z:1181cd9d-7beb-4f3f-a640-035d7c9a17b7" ], "Date": [ - "Sun, 03 May 2020 10:53:20 GMT" + "Sat, 17 Apr 2021 21:16:05 GMT" ], "Content-Length": [ - "3379" + "3363" ], "Content-Type": [ "application/json" @@ -6504,29 +6402,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00217350-2f4a-41d7-bf4e-7c6333cbe33d-2020-05-03 10:53:20Z-Ps" + "579c48f4-4515-4ef3-9408-3768f26877fa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499600478)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104400478)\\/\",\"ClientRequestId\":\"00217350-2f4a-41d7-bf4e-7c6333cbe33d-2020-05-03 10:53:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"A5s1Ecwk5EtnPhZ9ggtsp9TxX5zT/A//UmEDHLfcZSU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690565745)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295365745)\\/\",\"ClientRequestId\":\"54cf9ae4-6c8e-4db6-8468-0217a2251f0a-2021-04-17 21:16:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rLw0AjHxHuEsIK0dU25vou5JvWeDbcOc7B83y6v0cGM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6537,38 +6435,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11943" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "00217350-2f4a-41d7-bf4e-7c6333cbe33d-2020-05-03 10:53:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "579c48f4-4515-4ef3-9408-3768f26877fa" ], "x-ms-correlation-request-id": [ - "35e0f723-c8f6-4945-9e60-c1a7fe26a762" + "81b31dcd-9a17-4b0b-bd1c-1d6b0ec86be1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105320Z:35e0f723-c8f6-4945-9e60-c1a7fe26a762" + "CENTRALUSEUAP:20210417T211605Z:81b31dcd-9a17-4b0b-bd1c-1d6b0ec86be1" ], "Date": [ - "Sun, 03 May 2020 10:53:20 GMT" + "Sat, 17 Apr 2021 21:16:05 GMT" ], "Content-Length": [ - "3379" + "3363" ], "Content-Type": [ "application/json" @@ -6577,29 +6472,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78f97a07-dbe0-4637-a875-5b491a40fb24-2020-05-03 10:53:41Z-Ps" + "cffb8724-c03c-4cbd-90d9-6de1ac492ee6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499621017)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104421017)\\/\",\"ClientRequestId\":\"78f97a07-dbe0-4637-a875-5b491a40fb24-2020-05-03 10:53:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"G7EO1PLxjB51yUtHSx5DGxCPXcdsdQCwAeYF+BYBDtU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690586149)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295386149)\\/\",\"ClientRequestId\":\"a59a8d4d-7992-460f-b91b-e6dffe8c4860-2021-04-17 21:16:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3/DFHQJVh0vA1/BGY9Sb6NzTuRl98OK38mn6rxedpSQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6610,38 +6505,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11942" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "78f97a07-dbe0-4637-a875-5b491a40fb24-2020-05-03 10:53:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cffb8724-c03c-4cbd-90d9-6de1ac492ee6" ], "x-ms-correlation-request-id": [ - "5e15a2ca-6b88-4329-b1e8-58dca49d0769" + "26a9cc1d-e9e9-4aa4-96e6-356fa73c4f73" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105341Z:5e15a2ca-6b88-4329-b1e8-58dca49d0769" + "CENTRALUSEUAP:20210417T211626Z:26a9cc1d-e9e9-4aa4-96e6-356fa73c4f73" ], "Date": [ - "Sun, 03 May 2020 10:53:41 GMT" + "Sat, 17 Apr 2021 21:16:25 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -6650,29 +6542,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ffcc55b-3a20-40e8-b6bb-923436e14751-2020-05-03 10:54:02Z-Ps" + "552d67d5-e775-437e-a9bd-40988c784491" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499642001)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104442001)\\/\",\"ClientRequestId\":\"2ffcc55b-3a20-40e8-b6bb-923436e14751-2020-05-03 10:54:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"epSTfbQZOSS0AGsKTso5oZXesaaaQde5T6FEHPwJepo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690606544)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295406544)\\/\",\"ClientRequestId\":\"0e4fa198-1640-4b15-8c6f-b27a95e729d6-2021-04-17 21:16:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pX+4bMX2mCDZytQRXj7SqNTySU1YUdvCvrqEQ3X0faU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6683,38 +6575,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11941" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2ffcc55b-3a20-40e8-b6bb-923436e14751-2020-05-03 10:54:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "552d67d5-e775-437e-a9bd-40988c784491" ], "x-ms-correlation-request-id": [ - "86a22ebc-e77a-45f5-ab13-8a24a3078194" + "70903cc4-664b-4805-8408-438f1c865b9f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105402Z:86a22ebc-e77a-45f5-ab13-8a24a3078194" + "CENTRALUSEUAP:20210417T211646Z:70903cc4-664b-4805-8408-438f1c865b9f" ], "Date": [ - "Sun, 03 May 2020 10:54:01 GMT" + "Sat, 17 Apr 2021 21:16:46 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -6723,29 +6612,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92f78558-465e-4e80-8017-18101dba617b-2020-05-03 10:54:22Z-Ps" + "b3e657e7-470e-4118-91bb-4390cab675fb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499662563)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104462563)\\/\",\"ClientRequestId\":\"92f78558-465e-4e80-8017-18101dba617b-2020-05-03 10:54:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"R1yU1GSV+DEyK18165F1qGjKxwpExByXRAl3IrJUoKc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690627084)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295427084)\\/\",\"ClientRequestId\":\"14c5075c-8bcb-44fa-8209-0a8ef954b04f-2021-04-17 21:17:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LOjaE7mPphj04d4DDUuOkoHm3cFqOuY4capNg7+PTjk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6755,39 +6644,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "92f78558-465e-4e80-8017-18101dba617b-2020-05-03 10:54:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "b3e657e7-470e-4118-91bb-4390cab675fb" ], "x-ms-correlation-request-id": [ - "c485705b-ceb5-443a-92b1-ff133c76032a" + "115edd37-fc74-4532-9f6f-0393600c72e5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105422Z:c485705b-ceb5-443a-92b1-ff133c76032a" + "CENTRALUSEUAP:20210417T211707Z:115edd37-fc74-4532-9f6f-0393600c72e5" ], "Date": [ - "Sun, 03 May 2020 10:54:22 GMT" + "Sat, 17 Apr 2021 21:17:06 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -6796,29 +6682,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c55773e-7f71-4882-b6ff-9e984f66d54e-2020-05-03 10:54:43Z-Ps" + "44a7ab69-4785-422a-9ddb-2fb5e3678e95" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499683472)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104483472)\\/\",\"ClientRequestId\":\"5c55773e-7f71-4882-b6ff-9e984f66d54e-2020-05-03 10:54:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MjAP1wO6u2wqoTRH4i7BtvtFb2PUb1AAeNBXh02Z6G4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690647457)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295447457)\\/\",\"ClientRequestId\":\"c8aa6c12-126e-480e-b9dc-e30306903911-2021-04-17 21:17:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XRL0YrXO16EcgRgke0wf4yxXym+GNABwYhqQRvyx1JM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6829,38 +6715,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11936" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "5c55773e-7f71-4882-b6ff-9e984f66d54e-2020-05-03 10:54:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "44a7ab69-4785-422a-9ddb-2fb5e3678e95" ], "x-ms-correlation-request-id": [ - "ca75bba6-4e36-4219-855d-4e2fc439a323" + "b4d4994e-17df-4bc7-9ea1-9d02170a6a10" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105445Z:ca75bba6-4e36-4219-855d-4e2fc439a323" + "CENTRALUSEUAP:20210417T211727Z:b4d4994e-17df-4bc7-9ea1-9d02170a6a10" ], "Date": [ - "Sun, 03 May 2020 10:54:44 GMT" + "Sat, 17 Apr 2021 21:17:26 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -6869,29 +6752,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "925baaa8-e74c-4de6-815d-4114b440fc52-2020-05-03 10:55:05Z-Ps" + "e8178398-c1e9-4f4b-8e17-7666687dc42d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499705625)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104505625)\\/\",\"ClientRequestId\":\"925baaa8-e74c-4de6-815d-4114b440fc52-2020-05-03 10:55:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4oh2LE6eab4J9fnEOc/7ymKC1stABoRzFSAi8KKmU0U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690667832)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295467832)\\/\",\"ClientRequestId\":\"875e9c17-66d2-4534-a851-ac524ff2808c-2021-04-17 21:17:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0+Na6rt7pHozuhVPU3mTTGsr1GQE0XjpIVWPMoSdhvM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6902,38 +6785,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11935" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "925baaa8-e74c-4de6-815d-4114b440fc52-2020-05-03 10:55:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e8178398-c1e9-4f4b-8e17-7666687dc42d" ], "x-ms-correlation-request-id": [ - "f1cf5250-06d0-4e13-835b-0e1c766bca0b" + "699a5ac5-ee2f-45c7-92e6-e1b1fbe232bd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105505Z:f1cf5250-06d0-4e13-835b-0e1c766bca0b" + "CENTRALUSEUAP:20210417T211748Z:699a5ac5-ee2f-45c7-92e6-e1b1fbe232bd" ], "Date": [ - "Sun, 03 May 2020 10:55:05 GMT" + "Sat, 17 Apr 2021 21:17:47 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -6942,29 +6822,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5c2656c-5676-4750-a03e-5a4987fec0ce-2020-05-03 10:55:26Z-Ps" + "185ef128-c3d7-4d74-8a65-45ba5e649585" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499726183)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104526183)\\/\",\"ClientRequestId\":\"b5c2656c-5676-4750-a03e-5a4987fec0ce-2020-05-03 10:55:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"K2tiFujN2p6RbxykIWO2v2QU00cEBY0YvR9xorqfLPI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690688204)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295488204)\\/\",\"ClientRequestId\":\"6a47f068-f620-418b-93cc-2a38a3139f18-2021-04-17 21:18:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yfPQMuzbi2IPT2rhHNdzyK6tOo/gdxEZgoSSuiCfAZ0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6975,38 +6855,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11934" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b5c2656c-5676-4750-a03e-5a4987fec0ce-2020-05-03 10:55:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "185ef128-c3d7-4d74-8a65-45ba5e649585" ], "x-ms-correlation-request-id": [ - "db707d5c-3fc1-44e3-9b13-e0496eb8833d" + "416a258c-c178-4884-b831-54eb4ba0e721" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105526Z:db707d5c-3fc1-44e3-9b13-e0496eb8833d" + "CENTRALUSEUAP:20210417T211808Z:416a258c-c178-4884-b831-54eb4ba0e721" ], "Date": [ - "Sun, 03 May 2020 10:55:26 GMT" + "Sat, 17 Apr 2021 21:18:07 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -7015,29 +6892,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57015e70-5695-4764-80e4-444a7f539048-2020-05-03 10:55:46Z-Ps" + "ce752f67-1f4c-4060-a137-ede0bb996258" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499746744)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104546744)\\/\",\"ClientRequestId\":\"57015e70-5695-4764-80e4-444a7f539048-2020-05-03 10:55:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9WtcnVVFLjM8X1ThuJnC6mWLi607gFDzjgwCt1DuGzE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690708646)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295508646)\\/\",\"ClientRequestId\":\"a70d4d88-e1f8-43cd-85af-3419904c85de-2021-04-17 21:18:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2naHWjEisyPhkA7ZxH3PFw3RTO+uBjRfrvXY6scXJCY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7048,38 +6925,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11933" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "57015e70-5695-4764-80e4-444a7f539048-2020-05-03 10:55:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ce752f67-1f4c-4060-a137-ede0bb996258" ], "x-ms-correlation-request-id": [ - "421c49e5-091b-4e79-8148-32bc807373db" + "1e644937-5ba0-44e8-afe6-e6e510ba7a34" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105547Z:421c49e5-091b-4e79-8148-32bc807373db" + "CENTRALUSEUAP:20210417T211828Z:1e644937-5ba0-44e8-afe6-e6e510ba7a34" ], "Date": [ - "Sun, 03 May 2020 10:55:46 GMT" + "Sat, 17 Apr 2021 21:18:28 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -7088,29 +6962,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df958696-8be4-488a-8487-f4be96c84573-2020-05-03 10:56:07Z-Ps" + "6395551c-eaac-4d2f-9a0b-ff452fcb008b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499767414)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104567414)\\/\",\"ClientRequestId\":\"df958696-8be4-488a-8487-f4be96c84573-2020-05-03 10:56:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qdpHNBNsApGMR0kMLAeU+WnxPUnEARA68sEUFS2/q7o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690729030)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295529030)\\/\",\"ClientRequestId\":\"fe8e17df-9056-458c-aa51-860d734cdedf-2021-04-17 21:18:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rN/aTjqD9fNGuRekdM6XGg7EARd2EFS80S6eB9JUyYw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7120,39 +6994,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "df958696-8be4-488a-8487-f4be96c84573-2020-05-03 10:56:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "6395551c-eaac-4d2f-9a0b-ff452fcb008b" ], "x-ms-correlation-request-id": [ - "0a3f04e7-bcb2-4569-ae07-745009347b05" + "d65f76ff-011f-4306-91e0-776264be95e6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105607Z:0a3f04e7-bcb2-4569-ae07-745009347b05" + "CENTRALUSEUAP:20210417T211849Z:d65f76ff-011f-4306-91e0-776264be95e6" ], "Date": [ - "Sun, 03 May 2020 10:56:07 GMT" + "Sat, 17 Apr 2021 21:18:49 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -7161,29 +7032,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8046764b-70d2-4f62-a120-501558c663fa-2020-05-03 10:56:28Z-Ps" + "5fdb32d5-5b04-4af5-b643-1ce947249390" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499788059)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104588059)\\/\",\"ClientRequestId\":\"8046764b-70d2-4f62-a120-501558c663fa-2020-05-03 10:56:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ayMf7ECND3do2M6yFFg2q0qxVwqogvTBc/9WtaE0IwE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690749422)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295549422)\\/\",\"ClientRequestId\":\"cc8e0985-cd27-4c21-b291-ad772a836a16-2021-04-17 21:19:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5AXlcCsr2su1TVsnGbAdUQ9+FKDbMOYOt860QCSbA28=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7194,38 +7065,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11931" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "8046764b-70d2-4f62-a120-501558c663fa-2020-05-03 10:56:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5fdb32d5-5b04-4af5-b643-1ce947249390" ], "x-ms-correlation-request-id": [ - "1c88f2ba-e55a-41b2-b91a-796f18dbd79e" + "cd7c1718-3267-4997-a538-7013f7a680d2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105629Z:1c88f2ba-e55a-41b2-b91a-796f18dbd79e" + "CENTRALUSEUAP:20210417T211909Z:cd7c1718-3267-4997-a538-7013f7a680d2" ], "Date": [ - "Sun, 03 May 2020 10:56:29 GMT" + "Sat, 17 Apr 2021 21:19:09 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -7234,29 +7102,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63a4f08b-de47-45c2-b742-f0b38555e754-2020-05-03 10:56:49Z-Ps" + "0ca7e3e3-74b2-4b06-81e8-bdbb3b2ebbfa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499809701)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104609701)\\/\",\"ClientRequestId\":\"63a4f08b-de47-45c2-b742-f0b38555e754-2020-05-03 10:56:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7aI9fVsA5ivWEgx0dviWuNLAcYvG+uRwD3h3DyPnERE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690769855)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295569855)\\/\",\"ClientRequestId\":\"5f08955c-fb1f-4415-b5ab-1e9b6cf11bdd-2021-04-17 21:19:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"c6SjKjgcrV/B2MDudUgpKMgftl2qvJarzNkPkf3/Cew=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7267,38 +7135,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11930" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "63a4f08b-de47-45c2-b742-f0b38555e754-2020-05-03 10:56:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0ca7e3e3-74b2-4b06-81e8-bdbb3b2ebbfa" ], "x-ms-correlation-request-id": [ - "f13fa1c3-6fdb-46de-957f-2c45e530b7c1" + "553f3ab5-d602-4580-81b6-ec17c512424c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105650Z:f13fa1c3-6fdb-46de-957f-2c45e530b7c1" + "CENTRALUSEUAP:20210417T211930Z:553f3ab5-d602-4580-81b6-ec17c512424c" ], "Date": [ - "Sun, 03 May 2020 10:56:49 GMT" + "Sat, 17 Apr 2021 21:19:30 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -7307,29 +7172,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef0199d5-57d4-4365-b6e6-8780d0416af8-2020-05-03 10:57:10Z-Ps" + "ac57e7a8-9e8f-4881-9d6d-d5d8f608ba8f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499830249)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104630249)\\/\",\"ClientRequestId\":\"ef0199d5-57d4-4365-b6e6-8780d0416af8-2020-05-03 10:57:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"w1htrxdlZX7RA+iiy17yIPUsTTk1F2gWEbTSI7PYIV4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690790226)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295590226)\\/\",\"ClientRequestId\":\"d197d0ca-9062-4085-974d-a228383c41b0-2021-04-17 21:19:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"29bcDxhAe3HCaNmMd39N8B6ZYnKu9YbeItHs/qOT+RA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7340,38 +7205,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11929" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ef0199d5-57d4-4365-b6e6-8780d0416af8-2020-05-03 10:57:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ac57e7a8-9e8f-4881-9d6d-d5d8f608ba8f" ], "x-ms-correlation-request-id": [ - "df64070e-20ac-4326-b144-ea3ff68f61b6" + "6de45abd-fa28-491e-9084-0c5cae1500d3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105710Z:df64070e-20ac-4326-b144-ea3ff68f61b6" + "CENTRALUSEUAP:20210417T211950Z:6de45abd-fa28-491e-9084-0c5cae1500d3" ], "Date": [ - "Sun, 03 May 2020 10:57:09 GMT" + "Sat, 17 Apr 2021 21:19:49 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -7380,29 +7242,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f17e130-ea85-40b5-b2d9-1fbd1a9cb3ff-2020-05-03 10:57:30Z-Ps" + "141a8ab4-6274-40f3-ab8c-8772b77a6169" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499850811)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104650811)\\/\",\"ClientRequestId\":\"9f17e130-ea85-40b5-b2d9-1fbd1a9cb3ff-2020-05-03 10:57:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VVUxyX70+uxZPLCBqh+c6AzAJvA4mmWk+TshAycl+iw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690810603)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295610603)\\/\",\"ClientRequestId\":\"035564aa-3b69-4496-b316-3b62e382bdd6-2021-04-17 21:20:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PL4I+IZuE3UrwkXi9lp0KcLWpBpF59uDNkYGv6gW8Nk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7413,38 +7275,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11928" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9f17e130-ea85-40b5-b2d9-1fbd1a9cb3ff-2020-05-03 10:57:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "141a8ab4-6274-40f3-ab8c-8772b77a6169" ], "x-ms-correlation-request-id": [ - "0d267351-cdac-4405-8574-a57c40c15400" + "d2075688-4647-4818-96ec-f21157ccf3bb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105731Z:0d267351-cdac-4405-8574-a57c40c15400" + "CENTRALUSEUAP:20210417T212010Z:d2075688-4647-4818-96ec-f21157ccf3bb" ], "Date": [ - "Sun, 03 May 2020 10:57:30 GMT" + "Sat, 17 Apr 2021 21:20:10 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -7453,29 +7312,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9174e88a-ffde-4cae-b112-61e933b57c58-2020-05-03 10:57:51Z-Ps" + "90137f1b-aa52-4d6e-9b02-a984523cb73c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499871416)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104671416)\\/\",\"ClientRequestId\":\"9174e88a-ffde-4cae-b112-61e933b57c58-2020-05-03 10:57:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dEcy4fu/QDR1r3js4bR7oDeZ/IbPZxnudTOwBHAKpnw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690830995)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295630995)\\/\",\"ClientRequestId\":\"750af804-26bb-4994-94f8-d6d316853274-2021-04-17 21:20:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uZWXW+c563+PHH+o51fBR99mnhPB3SxjMrHRSk0qq8w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7485,39 +7344,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9174e88a-ffde-4cae-b112-61e933b57c58-2020-05-03 10:57:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "90137f1b-aa52-4d6e-9b02-a984523cb73c" ], "x-ms-correlation-request-id": [ - "ec71f0da-fdb2-477b-ad09-bbb9b8f12117" + "134a3898-07ee-4438-b989-7529613fcfe5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105751Z:ec71f0da-fdb2-477b-ad09-bbb9b8f12117" + "CENTRALUSEUAP:20210417T212031Z:134a3898-07ee-4438-b989-7529613fcfe5" ], "Date": [ - "Sun, 03 May 2020 10:57:51 GMT" + "Sat, 17 Apr 2021 21:20:31 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -7526,29 +7382,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70ddad11-c999-4812-b4d0-6c7d256d0e79-2020-05-03 10:58:12Z-Ps" + "0d32b814-67d6-4570-b95a-acf75758e3fa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499892006)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104692006)\\/\",\"ClientRequestId\":\"70ddad11-c999-4812-b4d0-6c7d256d0e79-2020-05-03 10:58:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"D1FtqSXoQrLWS26edEgNr+VORz6VZwlHpZcZsjTZ6/M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690851390)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295651390)\\/\",\"ClientRequestId\":\"76d99644-1f89-45d9-9e54-7acc67c35c84-2021-04-17 21:20:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"y2tLfyj8l9hHGOkS8AQe7gaHXV26x0zXb+GpQxS5jfw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7559,38 +7415,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11926" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "70ddad11-c999-4812-b4d0-6c7d256d0e79-2020-05-03 10:58:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0d32b814-67d6-4570-b95a-acf75758e3fa" ], "x-ms-correlation-request-id": [ - "2ee16323-58e5-4e39-bcf0-ed7fe76d37cb" + "7eca61f1-fad2-42fb-ab2f-e92aed15a9f1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105813Z:2ee16323-58e5-4e39-bcf0-ed7fe76d37cb" + "CENTRALUSEUAP:20210417T212051Z:7eca61f1-fad2-42fb-ab2f-e92aed15a9f1" ], "Date": [ - "Sun, 03 May 2020 10:58:12 GMT" + "Sat, 17 Apr 2021 21:20:51 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -7599,29 +7452,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea70f743-6b59-47fc-95b4-9a527e9da2d5-2020-05-03 10:58:33Z-Ps" + "af9dfaeb-0090-4dd3-99de-407e80fff4db" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499913667)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104713667)\\/\",\"ClientRequestId\":\"ea70f743-6b59-47fc-95b4-9a527e9da2d5-2020-05-03 10:58:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cqrwNgxlfEN8/UXhFio17e36ftzMjkOjCKqSE+kTS50=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690871779)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295671779)\\/\",\"ClientRequestId\":\"978f5f2d-804f-4da7-bfc5-66de12d9dc01-2021-04-17 21:21:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"K04hQ14vOLEzDTgdN6PHwYa43ShyoADZXvS1ro1sNjk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7632,38 +7485,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11925" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ea70f743-6b59-47fc-95b4-9a527e9da2d5-2020-05-03 10:58:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "af9dfaeb-0090-4dd3-99de-407e80fff4db" ], "x-ms-correlation-request-id": [ - "1a74108f-f274-4db3-9ae0-9a583518cbfd" + "e916c974-4cba-44a9-b155-0ff303eaee47" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105834Z:1a74108f-f274-4db3-9ae0-9a583518cbfd" + "CENTRALUSEUAP:20210417T212111Z:e916c974-4cba-44a9-b155-0ff303eaee47" ], "Date": [ - "Sun, 03 May 2020 10:58:33 GMT" + "Sat, 17 Apr 2021 21:21:11 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -7672,29 +7522,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fafbd0b5-c78a-4feb-a494-237715a0060e-2020-05-03 10:58:54Z-Ps" + "128de598-b2d5-4e7e-b8fe-252c76afbb10" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499934380)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104734380)\\/\",\"ClientRequestId\":\"fafbd0b5-c78a-4feb-a494-237715a0060e-2020-05-03 10:58:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LbreD7n/aowbkuVw0XyFQ+fa2ihAqb/SyNMuqXFQrOc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690892144)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295692144)\\/\",\"ClientRequestId\":\"1999e315-a0da-4320-8f54-7880bcbc45a2-2021-04-17 21:21:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wK0sXiCA2cL0PZlBFtG40UjGzNeiN/jv0QYpqcwt3is=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7705,38 +7555,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11923" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "fafbd0b5-c78a-4feb-a494-237715a0060e-2020-05-03 10:58:54Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "128de598-b2d5-4e7e-b8fe-252c76afbb10" ], "x-ms-correlation-request-id": [ - "c7a7a8dc-0d70-44d6-a1d9-9fa0afe370b4" + "72cb35c8-5e66-41fb-9488-974a752b577d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105854Z:c7a7a8dc-0d70-44d6-a1d9-9fa0afe370b4" + "CENTRALUSEUAP:20210417T212132Z:72cb35c8-5e66-41fb-9488-974a752b577d" ], "Date": [ - "Sun, 03 May 2020 10:58:54 GMT" + "Sat, 17 Apr 2021 21:21:32 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -7745,29 +7592,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa0862a7-a3ca-450f-a8b8-26ca7cc9ac5a-2020-05-03 10:59:15Z-Ps" + "1c05dfab-dc23-45c5-930a-3f0494d8c158" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499955014)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104755014)\\/\",\"ClientRequestId\":\"aa0862a7-a3ca-450f-a8b8-26ca7cc9ac5a-2020-05-03 10:59:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vqaGTSp3lk7B9bG6yFH5ER9Z7m2pnQ19m++JiJPCeG4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690912516)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295712516)\\/\",\"ClientRequestId\":\"6d9d98f9-ee01-4cb7-89ff-c3020e3dbac6-2021-04-17 21:21:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PkFGhB3CDYq+yDa9al/LJHcMc4nbMxzrZROaIumhyyA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7778,38 +7625,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11918" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "aa0862a7-a3ca-450f-a8b8-26ca7cc9ac5a-2020-05-03 10:59:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1c05dfab-dc23-45c5-930a-3f0494d8c158" ], "x-ms-correlation-request-id": [ - "e22d8be7-9660-4c20-b688-96052642c0d1" + "0ce1ac48-c245-4d2b-9cb7-8f3b73a8af9b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105915Z:e22d8be7-9660-4c20-b688-96052642c0d1" + "CENTRALUSEUAP:20210417T212152Z:0ce1ac48-c245-4d2b-9cb7-8f3b73a8af9b" ], "Date": [ - "Sun, 03 May 2020 10:59:14 GMT" + "Sat, 17 Apr 2021 21:21:52 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -7818,29 +7662,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d5ac2d9-583c-47d8-81d1-4791a5d13bb3-2020-05-03 10:59:35Z-Ps" + "d734097c-0ab0-485a-b2f5-e99fd01f286c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499975595)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104775595)\\/\",\"ClientRequestId\":\"7d5ac2d9-583c-47d8-81d1-4791a5d13bb3-2020-05-03 10:59:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wDkf/Q8BLcF33LndQRGDb+W8jaHUcY84hiCn34lI8Co=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690932914)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295732914)\\/\",\"ClientRequestId\":\"1795ab83-f262-424d-b5c2-7a19c6d640ec-2021-04-17 21:22:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1v4uNO2Cwd8cUEMqBe8SF7qLPocJdnHu23raIioDqeY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7854,35 +7698,32 @@ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7d5ac2d9-583c-47d8-81d1-4791a5d13bb3-2020-05-03 10:59:35Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d734097c-0ab0-485a-b2f5-e99fd01f286c" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11917" ], "x-ms-correlation-request-id": [ - "f6e6d2e5-fbd7-4158-bca3-2860dcd841ea" + "c919b2ba-84b6-4de6-b2c6-4bac8497f555" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105936Z:f6e6d2e5-fbd7-4158-bca3-2860dcd841ea" + "CENTRALUSEUAP:20210417T212213Z:c919b2ba-84b6-4de6-b2c6-4bac8497f555" ], "Date": [ - "Sun, 03 May 2020 10:59:35 GMT" + "Sat, 17 Apr 2021 21:22:13 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -7891,29 +7732,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58a33932-4592-48ca-af8b-1a8c374b22ad-2020-05-03 10:59:56Z-Ps" + "a4399582-b7e9-4560-b964-aaac90f6a4a2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588499996558)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104796558)\\/\",\"ClientRequestId\":\"58a33932-4592-48ca-af8b-1a8c374b22ad-2020-05-03 10:59:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QZzPu1ssDatL3ELXI2COB94Ayxbmc9OrUpTLq9I+jLA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690953282)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295753282)\\/\",\"ClientRequestId\":\"122a954d-9c1a-4a92-9188-c19f481b8aaf-2021-04-17 21:22:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RCdTfY1IdNP6O+te+6MbAOsEJszZph7LH7u01Tf6+4Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7923,39 +7764,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "58a33932-4592-48ca-af8b-1a8c374b22ad-2020-05-03 10:59:56Z-Ps" + "a4399582-b7e9-4560-b964-aaac90f6a4a2" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" ], "x-ms-correlation-request-id": [ - "6cf94d90-9a2c-40cd-a140-0c03b91a261e" + "09cd4847-4083-4820-92e8-e007f5c2598b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T105957Z:6cf94d90-9a2c-40cd-a140-0c03b91a261e" + "CENTRALUSEUAP:20210417T212233Z:09cd4847-4083-4820-92e8-e007f5c2598b" ], "Date": [ - "Sun, 03 May 2020 10:59:57 GMT" + "Sat, 17 Apr 2021 21:22:33 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -7964,29 +7802,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ef3610d-7726-4d5e-9d9b-9e2f8a8aa57f-2020-05-03 11:00:18Z-Ps" + "713b273b-2144-44a6-a402-438d06f63d26" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500018189)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104818189)\\/\",\"ClientRequestId\":\"4ef3610d-7726-4d5e-9d9b-9e2f8a8aa57f-2020-05-03 11:00:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cksboIPubghY6UdTzvEzu3jV3hBxOb0sa71QuRO+DXY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690973836)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295773836)\\/\",\"ClientRequestId\":\"7e37f51f-8a7f-44e8-a3cb-8942666b504f-2021-04-17 21:22:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GdK2Zb4+FooRJ17+aZZUMWmXWsJAOSRh1nz5tDOTQ4c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7997,38 +7835,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11915" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "4ef3610d-7726-4d5e-9d9b-9e2f8a8aa57f-2020-05-03 11:00:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "713b273b-2144-44a6-a402-438d06f63d26" ], "x-ms-correlation-request-id": [ - "92cc9200-b4ec-4dea-82e2-2b179031bb88" + "5eb2e898-76bd-451e-88ca-bd056658e4a7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110018Z:92cc9200-b4ec-4dea-82e2-2b179031bb88" + "CENTRALUSEUAP:20210417T212254Z:5eb2e898-76bd-451e-88ca-bd056658e4a7" ], "Date": [ - "Sun, 03 May 2020 11:00:17 GMT" + "Sat, 17 Apr 2021 21:22:54 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -8037,29 +7872,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ecf36038-d71b-41a0-bff5-85c4f176dd25-2020-05-03 11:00:38Z-Ps" + "27eab3ec-4b40-4b68-8acd-b49150b4f129" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500038828)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104838828)\\/\",\"ClientRequestId\":\"ecf36038-d71b-41a0-bff5-85c4f176dd25-2020-05-03 11:00:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TPy9ukbzz1Wgu/rmZv2GxXF0yV6hviiNdpnrOkcE7xs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618690994532)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295794532)\\/\",\"ClientRequestId\":\"0aab987b-ed2d-45e9-992e-5bf4150923c7-2021-04-17 21:23:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Um+TyWvnCIC38J/MvuLv1Xzt5hteWTw9eDjXYD3x2aI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8070,38 +7905,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11914" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ecf36038-d71b-41a0-bff5-85c4f176dd25-2020-05-03 11:00:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "27eab3ec-4b40-4b68-8acd-b49150b4f129" ], "x-ms-correlation-request-id": [ - "ea3ba2c8-21c2-4cfb-831b-4679d72d349f" + "dd34d4a2-9233-425b-a1b2-e9c0674b608a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110039Z:ea3ba2c8-21c2-4cfb-831b-4679d72d349f" + "CENTRALUSEUAP:20210417T212314Z:dd34d4a2-9233-425b-a1b2-e9c0674b608a" ], "Date": [ - "Sun, 03 May 2020 11:00:38 GMT" + "Sat, 17 Apr 2021 21:23:14 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -8110,29 +7942,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8cee7833-59ab-469f-8182-9555b53d5a4e-2020-05-03 11:00:59Z-Ps" + "f5948d50-4375-4e72-83e8-3ca47752c2e7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500059456)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104859456)\\/\",\"ClientRequestId\":\"8cee7833-59ab-469f-8182-9555b53d5a4e-2020-05-03 11:00:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"W/oOv1wtmZUbMQe/mhzolQFW5c1MEeXiXwXIPzQ+Adg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691015016)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295815016)\\/\",\"ClientRequestId\":\"4da63f12-e4ad-4ecf-b839-faa734be2517-2021-04-17 21:23:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cOw+iOQHl2xPKC6dtOfzO15tIdOfBI2nX8/cUYQRV/4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8143,38 +7975,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11913" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "8cee7833-59ab-469f-8182-9555b53d5a4e-2020-05-03 11:00:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f5948d50-4375-4e72-83e8-3ca47752c2e7" ], "x-ms-correlation-request-id": [ - "83c622a5-bba5-4676-b915-1e0aa2aac8ca" + "0d8f800d-2e7d-4d5d-bd95-a5c6738e8216" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110100Z:83c622a5-bba5-4676-b915-1e0aa2aac8ca" + "CENTRALUSEUAP:20210417T212335Z:0d8f800d-2e7d-4d5d-bd95-a5c6738e8216" ], "Date": [ - "Sun, 03 May 2020 11:00:59 GMT" + "Sat, 17 Apr 2021 21:23:35 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -8183,29 +8012,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5d1b729-1576-49eb-a5a0-da9844741822-2020-05-03 11:01:20Z-Ps" + "716c4598-f653-43f8-83c5-5e6fc53c9bcc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500080294)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104880294)\\/\",\"ClientRequestId\":\"f5d1b729-1576-49eb-a5a0-da9844741822-2020-05-03 11:01:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/8fkQVrfG39aTFw4Hg253D8wERKcVzhQ2aFSO5ILEPU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691035434)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295835434)\\/\",\"ClientRequestId\":\"e5065f45-d93f-4781-92cf-06e07b1bb152-2021-04-17 21:23:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hmEAvNkTWPwWBnB/q/CWAM4mIUZTrb2u8GCU7yNz8qY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8215,39 +8044,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" - ], - "X-Powered-By": [ - "ASP.NET" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f5d1b729-1576-49eb-a5a0-da9844741822-2020-05-03 11:01:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "716c4598-f653-43f8-83c5-5e6fc53c9bcc" ], "x-ms-correlation-request-id": [ - "9fe02a5c-7207-4d09-8f59-31caba895ea0" + "61c9926b-7f32-4588-b171-ed9a602c2d49" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110120Z:9fe02a5c-7207-4d09-8f59-31caba895ea0" + "CENTRALUSEUAP:20210417T212355Z:61c9926b-7f32-4588-b171-ed9a602c2d49" ], "Date": [ - "Sun, 03 May 2020 11:01:20 GMT" + "Sat, 17 Apr 2021 21:23:55 GMT" ], "Content-Length": [ - "3395" + "3379" ], "Content-Type": [ "application/json" @@ -8256,29 +8082,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a60795b2-5c2c-4e9d-b5de-2b778c836372-2020-05-03 11:01:40Z-Ps" + "6ab21674-b425-43aa-8d02-24aa948b0977" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500100836)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104900836)\\/\",\"ClientRequestId\":\"a60795b2-5c2c-4e9d-b5de-2b778c836372-2020-05-03 11:01:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8HHLYZW6OOmIf0X4FVo8FkIuZCbJAAGfaQS8X3LXId8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691055844)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295855844)\\/\",\"ClientRequestId\":\"9a4bbb74-ac12-4bac-85a1-240f2b36c35e-2021-04-17 21:24:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/fn54VsVi730Q/2fQwOJMg3+LQZRwxOzF7Z245wJnH0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8289,38 +8115,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11911" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a60795b2-5c2c-4e9d-b5de-2b778c836372-2020-05-03 11:01:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6ab21674-b425-43aa-8d02-24aa948b0977" ], "x-ms-correlation-request-id": [ - "eb214770-10f6-441e-bf53-fc2ed1fdf08f" + "54c9d155-0455-4ae4-966d-406332bfbc62" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110142Z:eb214770-10f6-441e-bf53-fc2ed1fdf08f" + "CENTRALUSEUAP:20210417T212416Z:54c9d155-0455-4ae4-966d-406332bfbc62" ], "Date": [ - "Sun, 03 May 2020 11:01:42 GMT" + "Sat, 17 Apr 2021 21:24:15 GMT" ], "Content-Length": [ - "3395" + "3411" ], "Content-Type": [ "application/json" @@ -8329,29 +8152,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fb838e5-683a-40ef-aaa9-89393c8eca53-2020-05-03 11:02:02Z-Ps" + "066a8769-391f-4383-a2bd-1c4661e29421" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500122524)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104922524)\\/\",\"ClientRequestId\":\"1fb838e5-683a-40ef-aaa9-89393c8eca53-2020-05-03 11:02:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3iv0akPpdoTv8n5gKUp0bSj7Sd+NQlis1QgQP3SWNaI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691076244)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295876244)\\/\",\"ClientRequestId\":\"7037025e-5bab-427b-91a4-527a81c9174d-2021-04-17 21:24:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8MYeAuOV6Mhan0PB0/vlW6KlqFxGHQqZb22xBgMKuwY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8362,38 +8185,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11910" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1fb838e5-683a-40ef-aaa9-89393c8eca53-2020-05-03 11:02:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "066a8769-391f-4383-a2bd-1c4661e29421" ], "x-ms-correlation-request-id": [ - "6d3bb493-5935-4d02-80f5-ce4b9cd5928b" + "b4082f1b-6a22-4c85-8c17-7267b6a26b72" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110202Z:6d3bb493-5935-4d02-80f5-ce4b9cd5928b" + "CENTRALUSEUAP:20210417T212436Z:b4082f1b-6a22-4c85-8c17-7267b6a26b72" ], "Date": [ - "Sun, 03 May 2020 11:02:02 GMT" + "Sat, 17 Apr 2021 21:24:35 GMT" ], "Content-Length": [ - "3395" + "3411" ], "Content-Type": [ "application/json" @@ -8402,29 +8222,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b80ac4d-c148-45c0-8790-0f4df3acc0d8-2020-05-03 11:02:23Z-Ps" + "5ef1a191-7625-4c73-9df4-688060fb7d8e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500143096)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104943096)\\/\",\"ClientRequestId\":\"8b80ac4d-c148-45c0-8790-0f4df3acc0d8-2020-05-03 11:02:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/h8kF15DbbFJEZwWd3VgzH36xxLSz7TIaXwDyh1VQ8M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691096664)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295896664)\\/\",\"ClientRequestId\":\"087347c3-39c8-409d-a86e-68667bbe90b5-2021-04-17 21:24:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"peSxMthplcc4keDv1uCW/Ue1sgCoWMs6BlpLaB9otVc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8435,38 +8255,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "11909" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "8b80ac4d-c148-45c0-8790-0f4df3acc0d8-2020-05-03 11:02:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5ef1a191-7625-4c73-9df4-688060fb7d8e" ], "x-ms-correlation-request-id": [ - "d4352773-69b1-45ae-917b-0460a3dee5de" + "29b798fc-ed15-4171-b387-3b5d33f7c415" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110223Z:d4352773-69b1-45ae-917b-0460a3dee5de" + "CENTRALUSEUAP:20210417T212456Z:29b798fc-ed15-4171-b387-3b5d33f7c415" ], "Date": [ - "Sun, 03 May 2020 11:02:23 GMT" + "Sat, 17 Apr 2021 21:24:56 GMT" ], "Content-Length": [ - "3395" + "3411" ], "Content-Type": [ "application/json" @@ -8475,29 +8292,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49e9e9b5-adc0-4c6f-83c4-5860f6769b9e-2020-05-03 11:02:43Z-Ps" + "4e22a630-c671-4e7b-ad42-4d7c2b802282" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500163637)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104963637)\\/\",\"ClientRequestId\":\"49e9e9b5-adc0-4c6f-83c4-5860f6769b9e-2020-05-03 11:02:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"usG9TKvbdMorr9rmDCOEFrmk32A7FpIIpnDh81fjkRs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691117078)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295917078)\\/\",\"ClientRequestId\":\"311d0256-662e-4cd1-9a21-d6fb25df7f2b-2021-04-17 21:25:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AQQF/NWmp64pRB9bvPbAvEiIX0/0wkIWLP7HvAAZzh0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8508,38 +8325,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" + "11908" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "49e9e9b5-adc0-4c6f-83c4-5860f6769b9e-2020-05-03 11:02:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4e22a630-c671-4e7b-ad42-4d7c2b802282" ], "x-ms-correlation-request-id": [ - "3cef17ea-ff94-4531-b75e-36c6862c23a2" + "2c6bdc7f-5d21-4e7b-bf21-cfa8bfaf26ac" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110243Z:3cef17ea-ff94-4531-b75e-36c6862c23a2" + "CENTRALUSEUAP:20210417T212517Z:2c6bdc7f-5d21-4e7b-bf21-cfa8bfaf26ac" ], "Date": [ - "Sun, 03 May 2020 11:02:43 GMT" + "Sat, 17 Apr 2021 21:25:17 GMT" ], "Content-Length": [ - "3395" + "3411" ], "Content-Type": [ "application/json" @@ -8548,29 +8362,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23c3a5d5-9c80-4cd3-a6ac-d94487359bb6-2020-05-03 11:03:04Z-Ps" + "bcfb531d-fa1b-4846-bf30-4159a23e1331" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500184184)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589104984184)\\/\",\"ClientRequestId\":\"23c3a5d5-9c80-4cd3-a6ac-d94487359bb6-2020-05-03 11:03:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8o7LsPjDZolNLHlbDTFVzEUJiAvBxUUjYm7lFw4GnNA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691137672)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295937672)\\/\",\"ClientRequestId\":\"82fe5d8c-08c5-4719-8da7-be77e5c3f548-2021-04-17 21:25:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"G8u66Hpwqk8aosJB9GRSROddNWVvGMbd55BW/UnssLw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8580,39 +8394,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11907" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "23c3a5d5-9c80-4cd3-a6ac-d94487359bb6-2020-05-03 11:03:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" + "bcfb531d-fa1b-4846-bf30-4159a23e1331" ], "x-ms-correlation-request-id": [ - "3c25f568-d6f1-4242-9dad-bedacbeeaf23" + "9e3991f5-7c52-4c0d-93f6-aa476bd0188d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110305Z:3c25f568-d6f1-4242-9dad-bedacbeeaf23" + "CENTRALUSEUAP:20210417T212537Z:9e3991f5-7c52-4c0d-93f6-aa476bd0188d" ], "Date": [ - "Sun, 03 May 2020 11:03:04 GMT" + "Sat, 17 Apr 2021 21:25:37 GMT" ], "Content-Length": [ - "3395" + "3411" ], "Content-Type": [ "application/json" @@ -8621,29 +8432,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "244194eb-ab58-494e-bc03-96ae6a0a61e0-2020-05-03 11:03:25Z-Ps" + "509dcb8e-5994-44cc-b28a-d5b31a9dec3f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500205336)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105005336)\\/\",\"ClientRequestId\":\"244194eb-ab58-494e-bc03-96ae6a0a61e0-2020-05-03 11:03:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Si+24XYfAaimOaxPcH2MO1/0/AFuf2DD72zU9HqhGy8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691158101)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295958101)\\/\",\"ClientRequestId\":\"e5387c4e-99cc-46ce-9218-2132f8667d0e-2021-04-17 21:25:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FQm3D3+ZeqqCj04BGNGkWOFbkoJcfBUUhNDB233uy6s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8654,38 +8465,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" + "11906" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "244194eb-ab58-494e-bc03-96ae6a0a61e0-2020-05-03 11:03:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "509dcb8e-5994-44cc-b28a-d5b31a9dec3f" ], "x-ms-correlation-request-id": [ - "70fb58c1-5f6e-4072-b150-52b7361fa1c5" + "47209666-7311-4540-9832-4b04a7ddb6c0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110325Z:70fb58c1-5f6e-4072-b150-52b7361fa1c5" + "CENTRALUSEUAP:20210417T212558Z:47209666-7311-4540-9832-4b04a7ddb6c0" ], "Date": [ - "Sun, 03 May 2020 11:03:25 GMT" + "Sat, 17 Apr 2021 21:25:57 GMT" ], "Content-Length": [ - "3395" + "3411" ], "Content-Type": [ "application/json" @@ -8694,29 +8502,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf2b7813-9977-4afa-b894-de9ce4d34298-2020-05-03 11:03:45Z-Ps" + "8d069762-fe7b-4803-a2db-30035ddfd62a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500225914)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105025914)\\/\",\"ClientRequestId\":\"cf2b7813-9977-4afa-b894-de9ce4d34298-2020-05-03 11:03:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Y//oqXh+o2u4m/N18qiXWEupdA0BCrLrZ/mNKN9kodY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691178525)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295978525)\\/\",\"ClientRequestId\":\"6fb1768b-faeb-4823-bddd-dc51a2f56584-2021-04-17 21:26:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"q7N5iUpTFaIm1Tbz8he5CGr+9g08Toy4NnRbHh1rxxw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8727,38 +8535,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" + "11905" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "cf2b7813-9977-4afa-b894-de9ce4d34298-2020-05-03 11:03:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8d069762-fe7b-4803-a2db-30035ddfd62a" ], "x-ms-correlation-request-id": [ - "511f576b-e88f-4c01-8ea9-efa929c53060" + "6d00ab61-293e-47a2-bdd0-c4c4c6d34366" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110346Z:511f576b-e88f-4c01-8ea9-efa929c53060" + "CENTRALUSEUAP:20210417T212618Z:6d00ab61-293e-47a2-bdd0-c4c4c6d34366" ], "Date": [ - "Sun, 03 May 2020 11:03:45 GMT" + "Sat, 17 Apr 2021 21:26:18 GMT" ], "Content-Length": [ - "3395" + "3411" ], "Content-Type": [ "application/json" @@ -8767,29 +8572,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e288c06f-34a3-4eba-b4f5-feb513b31971-2020-05-03 11:04:06Z-Ps" + "272039d6-9ef2-42c4-8f2e-fb05eee72e73" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500246931)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105046931)\\/\",\"ClientRequestId\":\"e288c06f-34a3-4eba-b4f5-feb513b31971-2020-05-03 11:04:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/CWgLzfjcOOvBpWgvNAg7j/WulgYosQ/78jW4PAH1Mw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691198945)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619295998945)\\/\",\"ClientRequestId\":\"2ee78e35-ec79-4112-96ba-4817b6544a0b-2021-04-17 21:26:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6RGWatQnvp2mEtNtS4Fu9sloYXW/9EDEhk2Mjzcy/3E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8800,38 +8605,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" + "11904" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e288c06f-34a3-4eba-b4f5-feb513b31971-2020-05-03 11:04:06Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "272039d6-9ef2-42c4-8f2e-fb05eee72e73" ], "x-ms-correlation-request-id": [ - "e7a1892a-995b-4c6a-a77e-82ccc4b0c5a0" + "ee964bc0-2dbd-4808-82b6-33c9863c79cb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110407Z:e7a1892a-995b-4c6a-a77e-82ccc4b0c5a0" + "CENTRALUSEUAP:20210417T212639Z:ee964bc0-2dbd-4808-82b6-33c9863c79cb" ], "Date": [ - "Sun, 03 May 2020 11:04:06 GMT" + "Sat, 17 Apr 2021 21:26:39 GMT" ], "Content-Length": [ - "3395" + "3411" ], "Content-Type": [ "application/json" @@ -8840,29 +8642,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8f8e2bf4-680a-474f-8deb-22ad1c2bdd3c-2020-05-03 11:04:27Z-Ps" + "bd637fe4-05b0-4244-b6e4-faf68f0a96e0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500267512)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105067512)\\/\",\"ClientRequestId\":\"8f8e2bf4-680a-474f-8deb-22ad1c2bdd3c-2020-05-03 11:04:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JE9c94FnBW86g9O+/EHL+89VDz9CAV20/kcw6naF3og=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691219348)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296019348)\\/\",\"ClientRequestId\":\"40c55e0b-ec0e-4450-bba7-9e870b1072c2-2021-04-17 21:26:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"10DGmRX4RmBrMv6yvH1j3O5XA6vOlDxbhewTj/8/PEY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8872,39 +8674,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11903" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "8f8e2bf4-680a-474f-8deb-22ad1c2bdd3c-2020-05-03 11:04:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" + "bd637fe4-05b0-4244-b6e4-faf68f0a96e0" ], "x-ms-correlation-request-id": [ - "5c383f01-c5ba-4825-98a5-16d5e94b3613" + "f0e54dca-82ed-4c41-bfd6-d826a3937e16" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110427Z:5c383f01-c5ba-4825-98a5-16d5e94b3613" + "CENTRALUSEUAP:20210417T212659Z:f0e54dca-82ed-4c41-bfd6-d826a3937e16" ], "Date": [ - "Sun, 03 May 2020 11:04:27 GMT" + "Sat, 17 Apr 2021 21:26:59 GMT" ], "Content-Length": [ - "3395" + "3411" ], "Content-Type": [ "application/json" @@ -8913,29 +8712,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNmU5ZGY4YjQtNmJiMC00MzZlLWJkMDQtYzAxZDdjOGRiYmJmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3136bdaf-8315-4958-bdf1-7db8269bb36c-2020-05-03 11:04:48Z-Ps" + "7149bf53-6db9-4a5f-a577-9e4f18971326" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500288120)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105088120)\\/\",\"ClientRequestId\":\"3136bdaf-8315-4958-bdf1-7db8269bb36c-2020-05-03 11:04:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Qi8TQf9Jm7HwhoFoWpR1/iv+fd14ZzQwo8FvxhBdCSY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691239730)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296039730)\\/\",\"ClientRequestId\":\"073f567b-12b0-4adb-87ec-453c906cf140-2021-04-17 21:27:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YeAwh20XxoHVgi6axtSCOTPb4yAwZupJLgoGSX+sYxc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8946,38 +8745,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" + "11902" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3136bdaf-8315-4958-bdf1-7db8269bb36c-2020-05-03 11:04:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7149bf53-6db9-4a5f-a577-9e4f18971326" ], "x-ms-correlation-request-id": [ - "9544286b-9ccb-433d-aac3-256c21535742" + "1566490b-c087-4e08-82d9-b26029fcb14f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110449Z:9544286b-9ccb-433d-aac3-256c21535742" + "CENTRALUSEUAP:20210417T212719Z:1566490b-c087-4e08-82d9-b26029fcb14f" ], "Date": [ - "Sun, 03 May 2020 11:04:49 GMT" + "Sat, 17 Apr 2021 21:27:19 GMT" ], "Content-Length": [ - "3395" + "3451" ], "Content-Type": [ "application/json" @@ -8986,29 +8782,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:16:05.3936548Z\",\r\n \"endTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-17T21:16:20.0838188Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-17T21:24:13.8612759Z\",\r\n \"endTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-17T21:24:13.9762788Z\",\r\n \"endTime\": \"2021-04-17T21:27:16.6183Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2021-04-17T21:27:16.6183Z\",\r\n \"endTime\": \"2021-04-17T21:27:16.6983022Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4bd64fdf-4eb7-40e8-b7b0-1af1728fffd4-2020-05-03 11:05:09Z-Ps" + "293a4a63-b5e4-4d45-becf-f24bad419f9b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500309951)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105109951)\\/\",\"ClientRequestId\":\"4bd64fdf-4eb7-40e8-b7b0-1af1728fffd4-2020-05-03 11:05:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ai9G7zPbi+AmO6EcV7/AClJe4Nk0pq6O8OcIWiJDLT4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691240138)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296040138)\\/\",\"ClientRequestId\":\"b3e720a9-64c4-4714-80bb-4237f8aba59c-2021-04-17 21:27:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZP8B9c+XuiXr+TmkYODslav06Hf0XEypJhXYr+OQu4s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9019,38 +8815,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" + "11901" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "4bd64fdf-4eb7-40e8-b7b0-1af1728fffd4-2020-05-03 11:05:09Z-Ps" + "x-ms-request-id": [ + "8a964218-5dd6-44cd-b0e2-5e66c90486da" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "293a4a63-b5e4-4d45-becf-f24bad419f9b" ], "x-ms-correlation-request-id": [ - "d11e7e8e-b57e-4d18-bb0f-e73dcbf51337" + "8a964218-5dd6-44cd-b0e2-5e66c90486da" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110510Z:d11e7e8e-b57e-4d18-bb0f-e73dcbf51337" + "CENTRALUSEUAP:20210417T212720Z:8a964218-5dd6-44cd-b0e2-5e66c90486da" ], "Date": [ - "Sun, 03 May 2020 11:05:09 GMT" + "Sat, 17 Apr 2021 21:27:19 GMT" ], "Content-Length": [ - "3395" + "5984" ], "Content-Type": [ "application/json" @@ -9059,29 +8852,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9251d10-4178-4d6f-a9eb-ca1a73668dda-2020-05-03 11:05:30Z-Ps" + "50c4fd8f-a7c8-461c-9474-245b0cae506f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500330487)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105130487)\\/\",\"ClientRequestId\":\"e9251d10-4178-4d6f-a9eb-ca1a73668dda-2020-05-03 11:05:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"odmyW2TxOUeM7teJYgy2RSQD6a8S0fYbbuQezAWw3ss=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691250559)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296050559)\\/\",\"ClientRequestId\":\"41d0fa17-56fc-4314-b4c6-2e2ec27593f1-2021-04-17 21:27:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lJJN9UsS66ZMaQ/wxkVU1rT+xjMUU98Nz9Apr0121Vg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9092,38 +8885,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" + "11900" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "e9251d10-4178-4d6f-a9eb-ca1a73668dda-2020-05-03 11:05:30Z-Ps" + "x-ms-request-id": [ + "68020c35-fae7-4bae-954b-24bd71966c62" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "50c4fd8f-a7c8-461c-9474-245b0cae506f" ], "x-ms-correlation-request-id": [ - "d8cd9622-a8ff-4e31-96f6-0484f0006f91" + "68020c35-fae7-4bae-954b-24bd71966c62" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110530Z:d8cd9622-a8ff-4e31-96f6-0484f0006f91" + "CENTRALUSEUAP:20210417T212730Z:68020c35-fae7-4bae-954b-24bd71966c62" ], "Date": [ - "Sun, 03 May 2020 11:05:30 GMT" + "Sat, 17 Apr 2021 21:27:30 GMT" ], "Content-Length": [ - "3395" + "5984" ], "Content-Type": [ "application/json" @@ -9132,29 +8922,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec92a51e-3c81-4ef1-bab9-f8dc73f19016-2020-05-03 11:05:51Z-Ps" + "80d79821-7559-41fd-b72a-aabe6e244030" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500351019)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105151019)\\/\",\"ClientRequestId\":\"ec92a51e-3c81-4ef1-bab9-f8dc73f19016-2020-05-03 11:05:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"j/VnKLbZQPmipSJZx/8qr4OOAWUmUEyF/6+s2H4tpEc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691260931)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296060931)\\/\",\"ClientRequestId\":\"25ff025c-47da-4d61-9e58-bfc635cf8870-2021-04-17 21:27:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RnocPn1mOD0dlz4onQDdl35rJo1BfOUtmvfkc+/UROk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9165,38 +8955,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" + "11899" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "ec92a51e-3c81-4ef1-bab9-f8dc73f19016-2020-05-03 11:05:51Z-Ps" + "x-ms-request-id": [ + "9131c3f4-f7db-4160-a8de-91c46cf50c40" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "80d79821-7559-41fd-b72a-aabe6e244030" ], "x-ms-correlation-request-id": [ - "61a98cbd-9022-4c01-b130-4488cff223be" + "9131c3f4-f7db-4160-a8de-91c46cf50c40" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110551Z:61a98cbd-9022-4c01-b130-4488cff223be" + "CENTRALUSEUAP:20210417T212741Z:9131c3f4-f7db-4160-a8de-91c46cf50c40" ], "Date": [ - "Sun, 03 May 2020 11:05:51 GMT" + "Sat, 17 Apr 2021 21:27:41 GMT" ], "Content-Length": [ - "3395" + "5984" ], "Content-Type": [ "application/json" @@ -9205,29 +8992,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "412436d3-8123-4b8e-af50-e5f8ccd91a0f-2020-05-03 11:06:11Z-Ps" + "cd1aa276-6449-4fea-b9be-40a7f16c420e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500371617)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105171617)\\/\",\"ClientRequestId\":\"412436d3-8123-4b8e-af50-e5f8ccd91a0f-2020-05-03 11:06:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9OB1M7nckG8RWZ5pm1faufoOeR5CTmZFovczSes3MHU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691271326)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296071326)\\/\",\"ClientRequestId\":\"49c625c7-4e0d-4483-8d49-7471d45e696f-2021-04-17 21:27:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vOPXIY8xo7IKt+jLkLxSYXhg4fIsGbSRwCUYAvAvpeY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9237,39 +9024,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11898" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "412436d3-8123-4b8e-af50-e5f8ccd91a0f-2020-05-03 11:06:11Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "a09022a3-6d7c-4403-8702-5c51dbb26cee" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" + "x-ms-client-request-id": [ + "cd1aa276-6449-4fea-b9be-40a7f16c420e" ], "x-ms-correlation-request-id": [ - "a70a60dd-cc99-4852-998f-e98ea2df9d8e" + "a09022a3-6d7c-4403-8702-5c51dbb26cee" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110612Z:a70a60dd-cc99-4852-998f-e98ea2df9d8e" + "CENTRALUSEUAP:20210417T212751Z:a09022a3-6d7c-4403-8702-5c51dbb26cee" ], "Date": [ - "Sun, 03 May 2020 11:06:11 GMT" + "Sat, 17 Apr 2021 21:27:51 GMT" ], "Content-Length": [ - "3395" + "5984" ], "Content-Type": [ "application/json" @@ -9278,29 +9062,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c361fd3c-866e-453e-b383-b3b554fe6032-2020-05-03 11:06:32Z-Ps" + "c76a6f56-a11e-48b4-a598-c0e19e08b56e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500392199)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105192199)\\/\",\"ClientRequestId\":\"c361fd3c-866e-453e-b383-b3b554fe6032-2020-05-03 11:06:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Er2W2/8uE5sme6ibwvqtFH9Pq/xthxn1Hb5s82mV474=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691281788)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296081788)\\/\",\"ClientRequestId\":\"4297f1f5-8506-411a-a7d6-a711c8a584f8-2021-04-17 21:28:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iuIfm3KoaaUMcucX0I08LxiY4ZGf4YR2nEyeEJmks6E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9311,38 +9095,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" + "11897" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "c361fd3c-866e-453e-b383-b3b554fe6032-2020-05-03 11:06:32Z-Ps" + "x-ms-request-id": [ + "4d8751e4-085c-4845-bcfc-300f51116e73" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "c76a6f56-a11e-48b4-a598-c0e19e08b56e" ], "x-ms-correlation-request-id": [ - "606658fa-1e68-4eaa-9f88-85d377c6c881" + "4d8751e4-085c-4845-bcfc-300f51116e73" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110632Z:606658fa-1e68-4eaa-9f88-85d377c6c881" + "CENTRALUSEUAP:20210417T212802Z:4d8751e4-085c-4845-bcfc-300f51116e73" ], "Date": [ - "Sun, 03 May 2020 11:06:32 GMT" + "Sat, 17 Apr 2021 21:28:01 GMT" ], "Content-Length": [ - "3395" + "5984" ], "Content-Type": [ "application/json" @@ -9351,29 +9132,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f02f2753-a225-483a-a565-e5c9f1c69c0a-2020-05-03 11:06:53Z-Ps" + "2d99ce9b-346b-4b03-b611-42fd401fc66f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500413032)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105213032)\\/\",\"ClientRequestId\":\"f02f2753-a225-483a-a565-e5c9f1c69c0a-2020-05-03 11:06:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"90nlZXi+q6DZ/eN3gLhNYUPutaDaLxtvcNT5cyKVcyk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691292186)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296092186)\\/\",\"ClientRequestId\":\"1a5edafe-64c8-4800-8841-3c83a522ef2a-2021-04-17 21:28:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AqlkPcUbs5AhxGnBYigcHcfxsKk0JSgIioLs7HKLYyE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9383,39 +9164,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "x-ms-request-id": [ + "78e41da6-3f74-44e4-a1cc-a802e09b0ca3" + ], "x-ms-client-request-id": [ - "f02f2753-a225-483a-a565-e5c9f1c69c0a-2020-05-03 11:06:53Z-Ps" + "2d99ce9b-346b-4b03-b611-42fd401fc66f" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11896" ], "x-ms-correlation-request-id": [ - "da471b96-4860-4117-baf2-7f5cfa404004" + "78e41da6-3f74-44e4-a1cc-a802e09b0ca3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110653Z:da471b96-4860-4117-baf2-7f5cfa404004" + "CENTRALUSEUAP:20210417T212812Z:78e41da6-3f74-44e4-a1cc-a802e09b0ca3" ], "Date": [ - "Sun, 03 May 2020 11:06:52 GMT" + "Sat, 17 Apr 2021 21:28:12 GMT" ], "Content-Length": [ - "3427" + "5984" ], "Content-Type": [ "application/json" @@ -9424,29 +9202,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"endTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b5ff7bd-60ad-4d77-a8a8-b77d46888663-2020-05-03 11:07:13Z-Ps" + "e78d9b36-cf4d-4932-aed6-da8b38ecff5b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500433647)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105233647)\\/\",\"ClientRequestId\":\"0b5ff7bd-60ad-4d77-a8a8-b77d46888663-2020-05-03 11:07:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZnlhkPSzeXQRWiN1FzQ1uYvzuQLpZaU5Q5JHIRSTElo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691302567)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296102567)\\/\",\"ClientRequestId\":\"3a67f6d9-31ed-4bf7-ab64-418e231736ff-2021-04-17 21:28:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jOY4p17vHNLH42EBwf7XS4CDWquq6rugMksmsFuDV6U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9457,38 +9235,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" + "11895" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "0b5ff7bd-60ad-4d77-a8a8-b77d46888663-2020-05-03 11:07:13Z-Ps" + "x-ms-request-id": [ + "db5c8d24-ed47-460e-ba38-3ea33ef1f01d" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "e78d9b36-cf4d-4932-aed6-da8b38ecff5b" ], "x-ms-correlation-request-id": [ - "94244744-065e-493c-b1c3-294e0e2263dd" + "db5c8d24-ed47-460e-ba38-3ea33ef1f01d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110714Z:94244744-065e-493c-b1c3-294e0e2263dd" + "CENTRALUSEUAP:20210417T212822Z:db5c8d24-ed47-460e-ba38-3ea33ef1f01d" ], "Date": [ - "Sun, 03 May 2020 11:07:13 GMT" + "Sat, 17 Apr 2021 21:28:22 GMT" ], "Content-Length": [ - "3427" + "5984" ], "Content-Type": [ "application/json" @@ -9497,29 +9272,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"endTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f5ebd5c-a381-4db2-bac5-24075878e398-2020-05-03 11:07:34Z-Ps" + "261f2236-ba69-425c-8bfd-16eea04940e2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500454235)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105254235)\\/\",\"ClientRequestId\":\"5f5ebd5c-a381-4db2-bac5-24075878e398-2020-05-03 11:07:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QDnDBfQs2rCtnUOjwUXeO9e8oMLfqGtUgi7kkJgQR9s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691313093)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296113093)\\/\",\"ClientRequestId\":\"c31176f2-2c34-4f67-973a-a753b7a70ed1-2021-04-17 21:28:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"f1LsbUmFhciJ/TeD3FwQgTUyNjHXhObP5F1WrWaGzAc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9529,39 +9304,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11894" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "5f5ebd5c-a381-4db2-bac5-24075878e398-2020-05-03 11:07:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "b199de56-3323-4238-89f5-06a0d9fb7117" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" + "x-ms-client-request-id": [ + "261f2236-ba69-425c-8bfd-16eea04940e2" ], "x-ms-correlation-request-id": [ - "173f896b-a9bc-4e60-ab1b-e2603e2bfe15" + "b199de56-3323-4238-89f5-06a0d9fb7117" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110734Z:173f896b-a9bc-4e60-ab1b-e2603e2bfe15" + "CENTRALUSEUAP:20210417T212833Z:b199de56-3323-4238-89f5-06a0d9fb7117" ], "Date": [ - "Sun, 03 May 2020 11:07:33 GMT" + "Sat, 17 Apr 2021 21:28:32 GMT" ], "Content-Length": [ - "3427" + "5984" ], "Content-Type": [ "application/json" @@ -9570,29 +9342,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"endTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2ed2262-afda-4322-8666-e6a5a9f15d8a-2020-05-03 11:07:54Z-Ps" + "fb6d9d48-6592-4ac9-bb54-20c7c52cb004" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500474836)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105274836)\\/\",\"ClientRequestId\":\"c2ed2262-afda-4322-8666-e6a5a9f15d8a-2020-05-03 11:07:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gbVzz2rqV/VRIw9WdIEYR1+PPzDQ86Ts0r0u6gJ+w4g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691323449)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296123449)\\/\",\"ClientRequestId\":\"2eb13b18-9e27-438e-b4b1-8e448d09c997-2021-04-17 21:28:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"10K1o58bXZezsRGtOY0UxusCrW0v8A7uCXgHIBfb+AU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9603,38 +9375,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" + "11893" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "c2ed2262-afda-4322-8666-e6a5a9f15d8a-2020-05-03 11:07:54Z-Ps" + "x-ms-request-id": [ + "559b5bbc-9480-4c5b-8b92-ded4c41eea1c" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "fb6d9d48-6592-4ac9-bb54-20c7c52cb004" ], "x-ms-correlation-request-id": [ - "52b1ed99-bad2-4776-82de-069f2c533079" + "559b5bbc-9480-4c5b-8b92-ded4c41eea1c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110755Z:52b1ed99-bad2-4776-82de-069f2c533079" + "CENTRALUSEUAP:20210417T212843Z:559b5bbc-9480-4c5b-8b92-ded4c41eea1c" ], "Date": [ - "Sun, 03 May 2020 11:07:55 GMT" + "Sat, 17 Apr 2021 21:28:43 GMT" ], "Content-Length": [ - "3427" + "5984" ], "Content-Type": [ "application/json" @@ -9643,29 +9412,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"endTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd1f9008-4d49-4e19-949c-d9e50b2764d7-2020-05-03 11:08:15Z-Ps" + "80696bdd-fd7b-4c87-a8fb-4ee20a018c64" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500495525)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105295525)\\/\",\"ClientRequestId\":\"fd1f9008-4d49-4e19-949c-d9e50b2764d7-2020-05-03 11:08:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cNAwCWe4ql2Q2gfJ5NBEbQdousOb1D3T3P3OrSfhbI4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691333814)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296133814)\\/\",\"ClientRequestId\":\"f94a0b98-b240-4ccc-943a-da2a3f2cc2b3-2021-04-17 21:28:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9ErX1G3e7zv5wGrU7sk9AncjrjBiR4psW+e6CF5nAz4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9676,38 +9445,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" + "11892" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "fd1f9008-4d49-4e19-949c-d9e50b2764d7-2020-05-03 11:08:15Z-Ps" + "x-ms-request-id": [ + "9b84e894-2b53-4b40-b471-8b03d6f1c429" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "80696bdd-fd7b-4c87-a8fb-4ee20a018c64" ], "x-ms-correlation-request-id": [ - "f87b2f23-2190-4f5c-b7c3-842ca118be75" + "9b84e894-2b53-4b40-b471-8b03d6f1c429" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110815Z:f87b2f23-2190-4f5c-b7c3-842ca118be75" + "CENTRALUSEUAP:20210417T212853Z:9b84e894-2b53-4b40-b471-8b03d6f1c429" ], "Date": [ - "Sun, 03 May 2020 11:08:14 GMT" + "Sat, 17 Apr 2021 21:28:53 GMT" ], "Content-Length": [ - "3427" + "5984" ], "Content-Type": [ "application/json" @@ -9716,29 +9482,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"endTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd3c6f96-9355-4abf-9674-1d24647d3f0b-2020-05-03 11:08:36Z-Ps" + "a790da36-6ecc-4eb4-8d37-7041ed6d33af" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500516069)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105316069)\\/\",\"ClientRequestId\":\"cd3c6f96-9355-4abf-9674-1d24647d3f0b-2020-05-03 11:08:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qlpzdHwxzwZWwduMHy6QIpCilpipCUmREJ7lEwhLHUo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691344186)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296144186)\\/\",\"ClientRequestId\":\"761d933f-546e-47db-a7a8-ff5a08b9aec0-2021-04-17 21:29:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ztv2dHeNOagNRwDMsjZbsjJV3de6TAz42A2D8e+I5tg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9748,39 +9514,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11891" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "cd3c6f96-9355-4abf-9674-1d24647d3f0b-2020-05-03 11:08:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "cf912ce7-9ca9-439a-b824-5f80da87b6ca" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" + "x-ms-client-request-id": [ + "a790da36-6ecc-4eb4-8d37-7041ed6d33af" ], "x-ms-correlation-request-id": [ - "566612c5-409d-4fec-8390-7663115ce7e1" + "cf912ce7-9ca9-439a-b824-5f80da87b6ca" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110836Z:566612c5-409d-4fec-8390-7663115ce7e1" + "CENTRALUSEUAP:20210417T212904Z:cf912ce7-9ca9-439a-b824-5f80da87b6ca" ], "Date": [ - "Sun, 03 May 2020 11:08:36 GMT" + "Sat, 17 Apr 2021 21:29:03 GMT" ], "Content-Length": [ - "3427" + "5984" ], "Content-Type": [ "application/json" @@ -9789,29 +9552,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"endTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75763e74-b2bd-4f71-bbd6-829c2e56ab0b-2020-05-03 11:08:56Z-Ps" + "988c2709-ffb6-4bec-b670-9be1c0bc10ac" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500536632)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105336632)\\/\",\"ClientRequestId\":\"75763e74-b2bd-4f71-bbd6-829c2e56ab0b-2020-05-03 11:08:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KoQWPyKyRE/52Af4qDBL6TOfKXV8m2yTyCzxVD5W4HM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691354563)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296154563)\\/\",\"ClientRequestId\":\"a97e49cc-0c0f-4a71-a462-97a4cdf6bfa3-2021-04-17 21:29:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PhtU6MeijupIn3BU7y4RRc2B6DGDFSWh0D049zC2SE4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9822,38 +9585,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" + "11890" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "75763e74-b2bd-4f71-bbd6-829c2e56ab0b-2020-05-03 11:08:56Z-Ps" + "x-ms-request-id": [ + "cf4f184c-fa3e-4cdf-8d8c-6d91944195a2" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "988c2709-ffb6-4bec-b670-9be1c0bc10ac" ], "x-ms-correlation-request-id": [ - "39a026cb-e329-432f-9ae4-aee56d825bff" + "cf4f184c-fa3e-4cdf-8d8c-6d91944195a2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110858Z:39a026cb-e329-432f-9ae4-aee56d825bff" + "CENTRALUSEUAP:20210417T212914Z:cf4f184c-fa3e-4cdf-8d8c-6d91944195a2" ], "Date": [ - "Sun, 03 May 2020 11:08:58 GMT" + "Sat, 17 Apr 2021 21:29:14 GMT" ], "Content-Length": [ - "3427" + "5984" ], "Content-Type": [ "application/json" @@ -9862,29 +9622,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"endTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17a573ad-9f95-4006-bb7a-2e286ac35595-2020-05-03 11:09:18Z-Ps" + "055f6f8a-958f-4645-88bd-ddbd78418e41" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500558457)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105358457)\\/\",\"ClientRequestId\":\"17a573ad-9f95-4006-bb7a-2e286ac35595-2020-05-03 11:09:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3BL4s9DIMNzD+cu29Cz1DShuH7F+4QftzhKySe6gv3U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691364933)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296164933)\\/\",\"ClientRequestId\":\"c5ab35ad-d685-40f8-bf02-c6f69d2629fd-2021-04-17 21:29:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RDeBVqOubqnTtLF9FnbinHKFt9/eT1rcGsKndN+/uU4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9895,38 +9655,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" + "11889" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "x-ms-request-id": [ + "6d2e9189-d944-41c5-ab7b-47f11423d287" + ], "x-ms-client-request-id": [ - "17a573ad-9f95-4006-bb7a-2e286ac35595-2020-05-03 11:09:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "055f6f8a-958f-4645-88bd-ddbd78418e41" ], "x-ms-correlation-request-id": [ - "19eba846-ee7e-461d-9d7c-3bb69d2d48dc" + "6d2e9189-d944-41c5-ab7b-47f11423d287" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110918Z:19eba846-ee7e-461d-9d7c-3bb69d2d48dc" + "CENTRALUSEUAP:20210417T212925Z:6d2e9189-d944-41c5-ab7b-47f11423d287" ], "Date": [ - "Sun, 03 May 2020 11:09:18 GMT" + "Sat, 17 Apr 2021 21:29:24 GMT" ], "Content-Length": [ - "3427" + "5984" ], "Content-Type": [ "application/json" @@ -9935,29 +9692,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"endTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a0eae8f-7d81-4bc8-ba1b-504d94a8c900-2020-05-03 11:09:39Z-Ps" + "c500b34c-1c0c-4e3b-b8ff-2cc19c7322fc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500579038)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105379038)\\/\",\"ClientRequestId\":\"5a0eae8f-7d81-4bc8-ba1b-504d94a8c900-2020-05-03 11:09:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"y5BruLF5EdORTGuUvu3kwOsVYDV91raqKfMOGFFp8ug=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691375353)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296175353)\\/\",\"ClientRequestId\":\"095b5ab0-6516-4987-bda2-c2b5809fdf03-2021-04-17 21:29:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZuoO/lsf0wXy8kqxseGlpRQby3u/vOKDYJ4oYagWliI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9968,38 +9725,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" + "11888" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "5a0eae8f-7d81-4bc8-ba1b-504d94a8c900-2020-05-03 11:09:39Z-Ps" + "x-ms-request-id": [ + "87babd3f-38f0-4508-8353-703b1f2fae21" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "c500b34c-1c0c-4e3b-b8ff-2cc19c7322fc" ], "x-ms-correlation-request-id": [ - "908efccd-1d19-4af2-a8bb-169cc249518d" + "87babd3f-38f0-4508-8353-703b1f2fae21" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T110939Z:908efccd-1d19-4af2-a8bb-169cc249518d" + "CENTRALUSEUAP:20210417T212935Z:87babd3f-38f0-4508-8353-703b1f2fae21" ], "Date": [ - "Sun, 03 May 2020 11:09:38 GMT" + "Sat, 17 Apr 2021 21:29:35 GMT" ], "Content-Length": [ - "3427" + "5984" ], "Content-Type": [ "application/json" @@ -10008,29 +9762,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"endTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fff0724-e7f3-407b-a80b-8c7e41ba402b-2020-05-03 11:09:59Z-Ps" + "09d4f5d4-aea1-402e-89b4-eaa2b2e2664e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500599597)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105399597)\\/\",\"ClientRequestId\":\"1fff0724-e7f3-407b-a80b-8c7e41ba402b-2020-05-03 11:09:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"o016fvYSF8CX5c7zZAE4mB6c5qmUQgJE97Vqyp4Kiq0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691385723)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296185723)\\/\",\"ClientRequestId\":\"ccb4951f-6d37-44ad-8d7b-783850158d6c-2021-04-17 21:29:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ALTroU7q5sbfSucu8ciNmhbzYwQsMRs2myH6NKQGHPo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10041,38 +9795,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" + "11887" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "1fff0724-e7f3-407b-a80b-8c7e41ba402b-2020-05-03 11:09:59Z-Ps" + "x-ms-request-id": [ + "b89ba56a-5d21-4c04-9c7b-1faba088580c" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "09d4f5d4-aea1-402e-89b4-eaa2b2e2664e" ], "x-ms-correlation-request-id": [ - "2207d250-8290-4f7c-b83a-5c649c9ba901" + "b89ba56a-5d21-4c04-9c7b-1faba088580c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111000Z:2207d250-8290-4f7c-b83a-5c649c9ba901" + "CENTRALUSEUAP:20210417T212945Z:b89ba56a-5d21-4c04-9c7b-1faba088580c" ], "Date": [ - "Sun, 03 May 2020 11:10:00 GMT" + "Sat, 17 Apr 2021 21:29:44 GMT" ], "Content-Length": [ - "3427" + "5984" ], "Content-Type": [ "application/json" @@ -10081,29 +9832,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"endTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e296e1b2-5b80-45cf-b96c-99c44c95dc5f-2020-05-03 11:10:20Z-Ps" + "8abd26c6-dbb2-4ebe-9e12-e2b401b3255c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500620779)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105420779)\\/\",\"ClientRequestId\":\"e296e1b2-5b80-45cf-b96c-99c44c95dc5f-2020-05-03 11:10:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kvxI81D+QTRM+aK8ETEIGaYXOt0mds+kMk3YiCfLuWc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691396080)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296196080)\\/\",\"ClientRequestId\":\"074b64f0-9563-4ecd-941b-c4d69b46d9b6-2021-04-17 21:29:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OXLfUo1+9RsEt0wsOvPUv60SpD6Fii7iouZZKBKIwfg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10113,39 +9864,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11886" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "e296e1b2-5b80-45cf-b96c-99c44c95dc5f-2020-05-03 11:10:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "f06f2b23-a21b-441c-9fb0-aa8ab45955a2" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" + "x-ms-client-request-id": [ + "8abd26c6-dbb2-4ebe-9e12-e2b401b3255c" ], "x-ms-correlation-request-id": [ - "4002e750-0ba3-4eea-bad7-1a7e8e25dd0b" + "f06f2b23-a21b-441c-9fb0-aa8ab45955a2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111021Z:4002e750-0ba3-4eea-bad7-1a7e8e25dd0b" + "CENTRALUSEUAP:20210417T212956Z:f06f2b23-a21b-441c-9fb0-aa8ab45955a2" ], "Date": [ - "Sun, 03 May 2020 11:10:20 GMT" + "Sat, 17 Apr 2021 21:29:56 GMT" ], "Content-Length": [ - "3427" + "5984" ], "Content-Type": [ "application/json" @@ -10154,29 +9902,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"endTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBmZGFjYjgtNmViOC00MWM1LTkzYzItMzdjMWZmY2VmNjlmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "543ab125-a689-4b0c-935b-9bce6f41aaee-2020-05-03 11:10:41Z-Ps" + "a74dd53c-917a-442b-980f-7a32ade57fbc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500641344)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105441344)\\/\",\"ClientRequestId\":\"543ab125-a689-4b0c-935b-9bce6f41aaee-2020-05-03 11:10:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"l04vdgJEi/ORG4yqy2wFR+vfqiXNausBIZuKI/gkSbs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691406429)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296206429)\\/\",\"ClientRequestId\":\"9d627c8f-97cd-4a97-b20a-86fa26709c1e-2021-04-17 21:30:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"l95NFvFbwuDwK6b1geIJK1Klr3OBJVOwP637O0O01+w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10186,39 +9934,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11885" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "543ab125-a689-4b0c-935b-9bce6f41aaee-2020-05-03 11:10:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "c61610ea-4a26-406b-81d3-f5ace413eb5f" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" + "x-ms-client-request-id": [ + "a74dd53c-917a-442b-980f-7a32ade57fbc" ], "x-ms-correlation-request-id": [ - "bf4f8f71-516f-4fef-8540-be72eb13ce2f" + "c61610ea-4a26-406b-81d3-f5ace413eb5f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111042Z:bf4f8f71-516f-4fef-8540-be72eb13ce2f" + "CENTRALUSEUAP:20210417T213006Z:c61610ea-4a26-406b-81d3-f5ace413eb5f" ], "Date": [ - "Sun, 03 May 2020 11:10:42 GMT" + "Sat, 17 Apr 2021 21:30:05 GMT" ], "Content-Length": [ - "3473" + "5984" ], "Content-Type": [ "application/json" @@ -10227,29 +9972,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T10:53:19.8303122Z\",\r\n \"endTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-03T10:53:33.2658438Z\",\r\n \"endTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-03T11:06:43.9037706Z\",\r\n \"endTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-03T11:06:47.5437471Z\",\r\n \"endTime\": \"2020-05-03T11:10:22.4096081Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2020-05-03T11:10:22.4096081Z\",\r\n \"endTime\": \"2020-05-03T11:10:22.5033259Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "773904e2-6bdd-464e-877b-a1ae3ab8e14a-2020-05-03 11:10:42Z-Ps" + "e400c217-5047-4c75-9bb4-e2e974f1a90c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500642929)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105442929)\\/\",\"ClientRequestId\":\"773904e2-6bdd-464e-877b-a1ae3ab8e14a-2020-05-03 11:10:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hU1+2LiMxRXXm0Vr+aAaIzoIGSa+6B/wVznPrluqrqs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691417052)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296217052)\\/\",\"ClientRequestId\":\"e2a7fe40-0050-46e6-8929-e37e945d7998-2021-04-17 21:30:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XUj9YLqAGAZW9IpPOXX7TSy1OPh4DosJZv9vdGoPmpY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10260,38 +10005,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" + "11884" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "561c8b52-c7c5-43eb-b9fe-feb6da897235" + "bb5e6454-9fca-4614-8a86-1d4e24d546bc" ], "x-ms-client-request-id": [ - "773904e2-6bdd-464e-877b-a1ae3ab8e14a-2020-05-03 11:10:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e400c217-5047-4c75-9bb4-e2e974f1a90c" ], "x-ms-correlation-request-id": [ - "561c8b52-c7c5-43eb-b9fe-feb6da897235" + "bb5e6454-9fca-4614-8a86-1d4e24d546bc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111044Z:561c8b52-c7c5-43eb-b9fe-feb6da897235" + "CENTRALUSEUAP:20210417T213017Z:bb5e6454-9fca-4614-8a86-1d4e24d546bc" ], "Date": [ - "Sun, 03 May 2020 11:10:43 GMT" + "Sat, 17 Apr 2021 21:30:16 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -10300,29 +10042,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e11a74e-84ac-4d45-9239-8afa5747d17b-2020-05-03 11:10:54Z-Ps" + "a10f935e-6785-47d7-b978-c8a259beb58a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500654688)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105454688)\\/\",\"ClientRequestId\":\"3e11a74e-84ac-4d45-9239-8afa5747d17b-2020-05-03 11:10:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TEChZHGD+z3k2Ys+34KyqypvghfnJVcNx37JFqg+RnA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691427422)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296227422)\\/\",\"ClientRequestId\":\"4fe9ab4a-c76f-4f58-a3cd-69cc3bb6df65-2021-04-17 21:30:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lelkA3KyPk3SoO3X1yn2aTxvA/BPI5vSad7fl+7WyW4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10333,38 +10075,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" + "11883" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1f680d09-51d6-41ac-9af0-e91645e0ab40" + "dea3df47-35fc-41b9-a9cf-db7da6268788" ], "x-ms-client-request-id": [ - "3e11a74e-84ac-4d45-9239-8afa5747d17b-2020-05-03 11:10:54Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a10f935e-6785-47d7-b978-c8a259beb58a" ], "x-ms-correlation-request-id": [ - "1f680d09-51d6-41ac-9af0-e91645e0ab40" + "dea3df47-35fc-41b9-a9cf-db7da6268788" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111055Z:1f680d09-51d6-41ac-9af0-e91645e0ab40" + "CENTRALUSEUAP:20210417T213027Z:dea3df47-35fc-41b9-a9cf-db7da6268788" ], "Date": [ - "Sun, 03 May 2020 11:10:54 GMT" + "Sat, 17 Apr 2021 21:30:26 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -10373,29 +10112,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9bedefe-5090-449d-98af-247a4a927247-2020-05-03 11:11:05Z-Ps" + "4fe599d4-1952-4018-8d22-381fbd65165f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500665290)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105465290)\\/\",\"ClientRequestId\":\"a9bedefe-5090-449d-98af-247a4a927247-2020-05-03 11:11:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"j4BIF4zb//JSg7zfHfNhKz6u5ikLI9SSAz6qf5MZ0mo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691437779)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296237779)\\/\",\"ClientRequestId\":\"6eaec561-9041-49fb-9e76-aa5f91e81e08-2021-04-17 21:30:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JkwRFJss8RDRzGNiZ0I5PD9nY+z5O42MNbw9lxurWeg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10406,38 +10145,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" + "11882" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "37b9db52-826d-4157-8f6f-dd8ddb8ccede" + "371056e3-26d0-4eea-a3e9-1e3bc942eab8" ], "x-ms-client-request-id": [ - "a9bedefe-5090-449d-98af-247a4a927247-2020-05-03 11:11:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4fe599d4-1952-4018-8d22-381fbd65165f" ], "x-ms-correlation-request-id": [ - "37b9db52-826d-4157-8f6f-dd8ddb8ccede" + "371056e3-26d0-4eea-a3e9-1e3bc942eab8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111105Z:37b9db52-826d-4157-8f6f-dd8ddb8ccede" + "CENTRALUSEUAP:20210417T213037Z:371056e3-26d0-4eea-a3e9-1e3bc942eab8" ], "Date": [ - "Sun, 03 May 2020 11:11:05 GMT" + "Sat, 17 Apr 2021 21:30:37 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -10446,29 +10182,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "215b64f9-e605-4eb9-a287-0c36cb7ffcff-2020-05-03 11:11:15Z-Ps" + "6fdb9500-d83f-472b-ac7c-1f3fc416934b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500675800)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105475800)\\/\",\"ClientRequestId\":\"215b64f9-e605-4eb9-a287-0c36cb7ffcff-2020-05-03 11:11:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"epuatHIt9uO4iKO6MrxKOFCLRhN2qbUYtjksfWvcanE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691448133)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296248133)\\/\",\"ClientRequestId\":\"c4ab8cf8-ce2b-46ec-978a-862582370e80-2021-04-17 21:30:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Y5RQRyTgw1f8JrzbODHUwNwHrHOE9EIwCF3zduCxjfw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10479,38 +10215,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" + "11881" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b35a155c-4576-4427-a31f-da33def1135c" + "3a2ba756-73a6-4c24-8e9e-b3b7aa38da19" ], "x-ms-client-request-id": [ - "215b64f9-e605-4eb9-a287-0c36cb7ffcff-2020-05-03 11:11:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6fdb9500-d83f-472b-ac7c-1f3fc416934b" ], "x-ms-correlation-request-id": [ - "b35a155c-4576-4427-a31f-da33def1135c" + "3a2ba756-73a6-4c24-8e9e-b3b7aa38da19" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111116Z:b35a155c-4576-4427-a31f-da33def1135c" + "CENTRALUSEUAP:20210417T213048Z:3a2ba756-73a6-4c24-8e9e-b3b7aa38da19" ], "Date": [ - "Sun, 03 May 2020 11:11:15 GMT" + "Sat, 17 Apr 2021 21:30:48 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -10519,29 +10252,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f68368c0-0fcf-4223-a282-db5277cecc98-2020-05-03 11:11:26Z-Ps" + "12cb9dee-7b21-486f-a6dd-75bf02321675" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500686325)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105486325)\\/\",\"ClientRequestId\":\"f68368c0-0fcf-4223-a282-db5277cecc98-2020-05-03 11:11:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xiPejVcb+SSCk9bdHVcIwmqIcKJCquIPUnW7R0Rf6Hc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691458494)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296258494)\\/\",\"ClientRequestId\":\"8080c38c-2ce5-4afb-8032-8e8631ea076e-2021-04-17 21:30:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"imtGR/QwcFIl48Pv+sL+CiDkINsFB6ygHKA+W8uibuY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10552,38 +10285,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" + "11880" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f9206015-1b8d-4969-bef4-6d6dc687a153" + "daed303b-bae3-4d7c-b6f9-8a3038762b85" ], "x-ms-client-request-id": [ - "f68368c0-0fcf-4223-a282-db5277cecc98-2020-05-03 11:11:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "12cb9dee-7b21-486f-a6dd-75bf02321675" ], "x-ms-correlation-request-id": [ - "f9206015-1b8d-4969-bef4-6d6dc687a153" + "daed303b-bae3-4d7c-b6f9-8a3038762b85" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111127Z:f9206015-1b8d-4969-bef4-6d6dc687a153" + "CENTRALUSEUAP:20210417T213058Z:daed303b-bae3-4d7c-b6f9-8a3038762b85" ], "Date": [ - "Sun, 03 May 2020 11:11:27 GMT" + "Sat, 17 Apr 2021 21:30:58 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -10592,29 +10322,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b5cfe65-3784-4887-9a2f-dfbbc067b697-2020-05-03 11:11:38Z-Ps" + "f9e0c6c6-25de-44ca-b5c7-3253fab08179" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500698018)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105498018)\\/\",\"ClientRequestId\":\"0b5cfe65-3784-4887-9a2f-dfbbc067b697-2020-05-03 11:11:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HJ6wc+I81oP1aVy5vspWYyb4rwXsBnotexS0ZDKU/Sk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691468857)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296268857)\\/\",\"ClientRequestId\":\"53c14aac-5ff5-44bd-b2ac-9a6a9b10e52d-2021-04-17 21:31:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dm5uCh+7lAi+yewXb9TxDCJuivaWxBZgxsbjOUT0Y9Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10625,38 +10355,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" + "11879" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "733665c9-4693-4ecc-bc59-71a1c2cf9b62" + "79c36480-6a7d-489b-b268-b6f8db1cea45" ], "x-ms-client-request-id": [ - "0b5cfe65-3784-4887-9a2f-dfbbc067b697-2020-05-03 11:11:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f9e0c6c6-25de-44ca-b5c7-3253fab08179" ], "x-ms-correlation-request-id": [ - "733665c9-4693-4ecc-bc59-71a1c2cf9b62" + "79c36480-6a7d-489b-b268-b6f8db1cea45" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111139Z:733665c9-4693-4ecc-bc59-71a1c2cf9b62" + "CENTRALUSEUAP:20210417T213109Z:79c36480-6a7d-489b-b268-b6f8db1cea45" ], "Date": [ - "Sun, 03 May 2020 11:11:39 GMT" + "Sat, 17 Apr 2021 21:31:08 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -10665,29 +10392,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "150c8758-af5a-4052-b152-74a9b342f092-2020-05-03 11:11:49Z-Ps" + "2c35049d-7d5b-4a81-8525-7003bcd8ac55" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500709669)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105509669)\\/\",\"ClientRequestId\":\"150c8758-af5a-4052-b152-74a9b342f092-2020-05-03 11:11:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DH2Lcn3bbvm2Z0/qiVbgcFx/BiwZ7UW74FpR6b2bZ30=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691479248)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296279248)\\/\",\"ClientRequestId\":\"82a298b4-b26d-4ab0-8d51-3f25cd22ce8b-2021-04-17 21:31:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"F702QDNTlDoswdT1OUB+7YCcLNv+7lTAWVUuUXcTBGg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10698,38 +10425,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" + "11878" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e4f74534-3c2a-46c5-a6e0-408bae564600" + "fec74a17-1e3d-4572-b109-71240ef51382" ], "x-ms-client-request-id": [ - "150c8758-af5a-4052-b152-74a9b342f092-2020-05-03 11:11:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2c35049d-7d5b-4a81-8525-7003bcd8ac55" ], "x-ms-correlation-request-id": [ - "e4f74534-3c2a-46c5-a6e0-408bae564600" + "fec74a17-1e3d-4572-b109-71240ef51382" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111150Z:e4f74534-3c2a-46c5-a6e0-408bae564600" + "CENTRALUSEUAP:20210417T213119Z:fec74a17-1e3d-4572-b109-71240ef51382" ], "Date": [ - "Sun, 03 May 2020 11:11:49 GMT" + "Sat, 17 Apr 2021 21:31:18 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -10738,29 +10462,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2322be5f-7b7c-4a40-83da-fd4703303e55-2020-05-03 11:12:00Z-Ps" + "1b9ddb9e-87f0-4324-9f8c-d1f36874d58a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500720234)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105520234)\\/\",\"ClientRequestId\":\"2322be5f-7b7c-4a40-83da-fd4703303e55-2020-05-03 11:12:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nxVUADZ632aVGDeaEGeVchlJq97W0qqUd5M36be/J9E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691489607)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296289607)\\/\",\"ClientRequestId\":\"b203a372-2dfb-4a7a-8645-698cb1d8b445-2021-04-17 21:31:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"aOED6s04DskOPOp9qTEOK9O2OHBLWcNvOOd+jXekoQc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10771,38 +10495,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" + "11877" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "10846ab1-ff80-49c3-ab2c-d52c57af36f3" + "7168a553-dbfa-4586-8412-c602cf8e424e" ], "x-ms-client-request-id": [ - "2322be5f-7b7c-4a40-83da-fd4703303e55-2020-05-03 11:12:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1b9ddb9e-87f0-4324-9f8c-d1f36874d58a" ], "x-ms-correlation-request-id": [ - "10846ab1-ff80-49c3-ab2c-d52c57af36f3" + "7168a553-dbfa-4586-8412-c602cf8e424e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111200Z:10846ab1-ff80-49c3-ab2c-d52c57af36f3" + "CENTRALUSEUAP:20210417T213129Z:7168a553-dbfa-4586-8412-c602cf8e424e" ], "Date": [ - "Sun, 03 May 2020 11:11:59 GMT" + "Sat, 17 Apr 2021 21:31:29 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -10811,29 +10532,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2893342-39c0-4d5f-91b5-162560d091f2-2020-05-03 11:12:10Z-Ps" + "9e66155b-fbb3-4217-bd24-2ca0c289b7c4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500730766)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105530766)\\/\",\"ClientRequestId\":\"f2893342-39c0-4d5f-91b5-162560d091f2-2020-05-03 11:12:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kRd8xWbs/2QUSSuKmMTLth360UKdf7zmBzE9yoriA9Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691499959)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296299959)\\/\",\"ClientRequestId\":\"3938187c-c1d3-4d66-b8f9-e3ba14123592-2021-04-17 21:31:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CcJyTNDpyu7JggWZ86k/LMDQSdeBV8+V9cuOj6Y4VZQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10844,38 +10565,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" + "11876" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "949a2da0-2479-45a3-a754-77cd2471a872" + "e9c5481b-5950-4015-a283-8e6085f14e67" ], "x-ms-client-request-id": [ - "f2893342-39c0-4d5f-91b5-162560d091f2-2020-05-03 11:12:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9e66155b-fbb3-4217-bd24-2ca0c289b7c4" ], "x-ms-correlation-request-id": [ - "949a2da0-2479-45a3-a754-77cd2471a872" + "e9c5481b-5950-4015-a283-8e6085f14e67" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111211Z:949a2da0-2479-45a3-a754-77cd2471a872" + "CENTRALUSEUAP:20210417T213140Z:e9c5481b-5950-4015-a283-8e6085f14e67" ], "Date": [ - "Sun, 03 May 2020 11:12:11 GMT" + "Sat, 17 Apr 2021 21:31:40 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -10884,29 +10602,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d341741f-84b4-4481-aa64-3a9e7394af3a-2020-05-03 11:12:21Z-Ps" + "0f29f588-d7cc-42b2-91af-9dd6eb0f792a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500741295)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105541295)\\/\",\"ClientRequestId\":\"d341741f-84b4-4481-aa64-3a9e7394af3a-2020-05-03 11:12:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FpqJDgALRIk7vBShpRr8TlmMmgAkR4yAhipksNUkAhQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691510307)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296310307)\\/\",\"ClientRequestId\":\"9bd6b6cf-5a5d-466f-b226-48fab5868f5c-2021-04-17 21:31:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"S7khbIqVkc94T2uaJQJ/soE/IjGA9eMrh9seazD2f/k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10917,38 +10635,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" + "11875" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "676d061a-3f69-4659-92a7-bba7af00ed1e" + "a19e7afb-5442-444b-91b7-c7099db0a576" ], "x-ms-client-request-id": [ - "d341741f-84b4-4481-aa64-3a9e7394af3a-2020-05-03 11:12:21Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0f29f588-d7cc-42b2-91af-9dd6eb0f792a" ], "x-ms-correlation-request-id": [ - "676d061a-3f69-4659-92a7-bba7af00ed1e" + "a19e7afb-5442-444b-91b7-c7099db0a576" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111221Z:676d061a-3f69-4659-92a7-bba7af00ed1e" + "CENTRALUSEUAP:20210417T213150Z:a19e7afb-5442-444b-91b7-c7099db0a576" ], "Date": [ - "Sun, 03 May 2020 11:12:21 GMT" + "Sat, 17 Apr 2021 21:31:49 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -10957,29 +10672,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5ba8e59-1721-456e-bb77-f714a08b9e25-2020-05-03 11:12:31Z-Ps" + "f32fe8f1-41f9-4262-9b12-b38dd26ea784" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500751808)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105551808)\\/\",\"ClientRequestId\":\"f5ba8e59-1721-456e-bb77-f714a08b9e25-2020-05-03 11:12:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vDX6p/FhwidGyMwtxCiqoKZA7L16YD7L4lwhnV/1Rlo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691520661)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296320661)\\/\",\"ClientRequestId\":\"2184341f-ad56-44d9-af1e-53f1cca7f586-2021-04-17 21:32:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NKJPdmFXBZJPoSPD287c47LsYcrZhp/aU5Yeq5RmkU0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10990,38 +10705,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" + "11874" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d98ad037-bcbd-4afc-869b-e767d2dffcda" + "04222e89-9837-4103-b676-f3dbb29009a4" ], "x-ms-client-request-id": [ - "f5ba8e59-1721-456e-bb77-f714a08b9e25-2020-05-03 11:12:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f32fe8f1-41f9-4262-9b12-b38dd26ea784" ], "x-ms-correlation-request-id": [ - "d98ad037-bcbd-4afc-869b-e767d2dffcda" + "04222e89-9837-4103-b676-f3dbb29009a4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111232Z:d98ad037-bcbd-4afc-869b-e767d2dffcda" + "CENTRALUSEUAP:20210417T213200Z:04222e89-9837-4103-b676-f3dbb29009a4" ], "Date": [ - "Sun, 03 May 2020 11:12:31 GMT" + "Sat, 17 Apr 2021 21:32:00 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -11030,29 +10742,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bda088f1-a532-4565-a679-3b67a0d39fb7-2020-05-03 11:12:42Z-Ps" + "8310047e-0db6-4a08-8f6b-cc2631dd6991" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500762380)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105562380)\\/\",\"ClientRequestId\":\"bda088f1-a532-4565-a679-3b67a0d39fb7-2020-05-03 11:12:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oIhB4Dkezl5vvEPhWC0KwCEvsWlh2eS4uF9ePInr9aE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691531014)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296331014)\\/\",\"ClientRequestId\":\"b65a5857-b863-4802-a137-d1e2408cf2bb-2021-04-17 21:32:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tpQdlPxFmsPNvRIKErjNF8UjC6KgCQRllgqaGYqYuY4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11063,38 +10775,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" + "11873" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "92beee9b-8bdc-440f-a893-1ad1020cd931" + "3e7cafb7-3bb6-4249-b71a-748157faf245" ], "x-ms-client-request-id": [ - "bda088f1-a532-4565-a679-3b67a0d39fb7-2020-05-03 11:12:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8310047e-0db6-4a08-8f6b-cc2631dd6991" ], "x-ms-correlation-request-id": [ - "92beee9b-8bdc-440f-a893-1ad1020cd931" + "3e7cafb7-3bb6-4249-b71a-748157faf245" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111242Z:92beee9b-8bdc-440f-a893-1ad1020cd931" + "CENTRALUSEUAP:20210417T213211Z:3e7cafb7-3bb6-4249-b71a-748157faf245" ], "Date": [ - "Sun, 03 May 2020 11:12:42 GMT" + "Sat, 17 Apr 2021 21:32:10 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -11103,29 +10812,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "964f4349-c54f-4ea1-b429-4689fe4f97ca-2020-05-03 11:12:52Z-Ps" + "83bfd210-ede3-4434-8691-ee2fd6931872" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500772872)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105572872)\\/\",\"ClientRequestId\":\"964f4349-c54f-4ea1-b429-4689fe4f97ca-2020-05-03 11:12:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WLjMuatjZ5HY8Plz8KPHQ1rSOjf1dIvtkOckWnNXf6k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691541382)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296341382)\\/\",\"ClientRequestId\":\"e5963cc9-3df0-4e1a-809c-862471908aa6-2021-04-17 21:32:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RSZaIJZ7thUEXDDSG/ebH7iJHTIAzlW0Bp6MfUxMBnk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11136,38 +10845,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" + "11872" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "85b928bc-34fa-4d07-be57-513632bc20b4" + "5486196c-99b3-4c9a-885b-12390d495106" ], "x-ms-client-request-id": [ - "964f4349-c54f-4ea1-b429-4689fe4f97ca-2020-05-03 11:12:52Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "83bfd210-ede3-4434-8691-ee2fd6931872" ], "x-ms-correlation-request-id": [ - "85b928bc-34fa-4d07-be57-513632bc20b4" + "5486196c-99b3-4c9a-885b-12390d495106" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111253Z:85b928bc-34fa-4d07-be57-513632bc20b4" + "CENTRALUSEUAP:20210417T213221Z:5486196c-99b3-4c9a-885b-12390d495106" ], "Date": [ - "Sun, 03 May 2020 11:12:52 GMT" + "Sat, 17 Apr 2021 21:32:21 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -11176,29 +10882,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e81d6147-b4d0-4244-aec3-01f23d245174-2020-05-03 11:13:03Z-Ps" + "07c61844-c99f-4183-8434-673fe6870aaa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500783384)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105583384)\\/\",\"ClientRequestId\":\"e81d6147-b4d0-4244-aec3-01f23d245174-2020-05-03 11:13:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4aKKwFpNPo2VE2Gb6XnfnynMF6mujKDxYNAAhyb+IQY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691551756)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296351756)\\/\",\"ClientRequestId\":\"39fd4644-f223-433b-b6e4-e766590428fa-2021-04-17 21:32:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RW4AFa28v8QvcxgTN4qoC8vtzG+l/97pKc+1kY9S7aU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11208,39 +10914,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11871" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "83780c02-c7c3-474f-bc1f-f69804a5a76c" + "15a96f17-1f1c-4f05-a7ad-b6a36c823d5b" ], "x-ms-client-request-id": [ - "e81d6147-b4d0-4244-aec3-01f23d245174-2020-05-03 11:13:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11896" + "07c61844-c99f-4183-8434-673fe6870aaa" ], "x-ms-correlation-request-id": [ - "83780c02-c7c3-474f-bc1f-f69804a5a76c" + "15a96f17-1f1c-4f05-a7ad-b6a36c823d5b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111303Z:83780c02-c7c3-474f-bc1f-f69804a5a76c" + "CENTRALUSEUAP:20210417T213231Z:15a96f17-1f1c-4f05-a7ad-b6a36c823d5b" ], "Date": [ - "Sun, 03 May 2020 11:13:03 GMT" + "Sat, 17 Apr 2021 21:32:30 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -11249,29 +10952,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc3e13cb-be2c-4eb4-b802-829b62ee699e-2020-05-03 11:13:13Z-Ps" + "1d26aece-9178-4e5a-8310-a15b9fe46a65" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500793952)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105593952)\\/\",\"ClientRequestId\":\"cc3e13cb-be2c-4eb4-b802-829b62ee699e-2020-05-03 11:13:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"18/1Ufma5grFSKcUXJiyyVrNWJUrnzhT5OiMxMi+9YQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691562116)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296362116)\\/\",\"ClientRequestId\":\"213babee-e482-4626-8439-7814c52e2b10-2021-04-17 21:32:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fNb6mF8mtR1fsa02I3+XHwsi1a3Brlqjoz4Skg9A1eM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11282,38 +10985,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" + "11870" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "983cb051-3729-455b-b34b-ff0ccb1f10c1" + "39f4863b-39e5-45f2-942f-df8cc39b52d5" ], "x-ms-client-request-id": [ - "cc3e13cb-be2c-4eb4-b802-829b62ee699e-2020-05-03 11:13:13Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1d26aece-9178-4e5a-8310-a15b9fe46a65" ], "x-ms-correlation-request-id": [ - "983cb051-3729-455b-b34b-ff0ccb1f10c1" + "39f4863b-39e5-45f2-942f-df8cc39b52d5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111314Z:983cb051-3729-455b-b34b-ff0ccb1f10c1" + "CENTRALUSEUAP:20210417T213242Z:39f4863b-39e5-45f2-942f-df8cc39b52d5" ], "Date": [ - "Sun, 03 May 2020 11:13:13 GMT" + "Sat, 17 Apr 2021 21:32:42 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -11322,29 +11022,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "983021fc-54a6-412a-a259-905e622929fe-2020-05-03 11:13:24Z-Ps" + "a6d51adb-a2c0-46dc-83a5-497aefe66ed1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500804470)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105604470)\\/\",\"ClientRequestId\":\"983021fc-54a6-412a-a259-905e622929fe-2020-05-03 11:13:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mJVjKVDCH2M3/n0VzHeUnvjvO8Ayh30hE+rT96YS244=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691572470)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296372470)\\/\",\"ClientRequestId\":\"23f747ab-2e6f-4431-a2c2-72fa7b85f4ac-2021-04-17 21:32:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Fa9HEG73AoDk3vOzj8aNuNST3uqFziKK5E2MpKWxgXg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11355,38 +11055,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11894" + "11869" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7413d54b-1de3-441e-8e51-e4be0a107540" + "7396111a-2e7f-441e-a096-97b8c130dba7" ], "x-ms-client-request-id": [ - "983021fc-54a6-412a-a259-905e622929fe-2020-05-03 11:13:24Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a6d51adb-a2c0-46dc-83a5-497aefe66ed1" ], "x-ms-correlation-request-id": [ - "7413d54b-1de3-441e-8e51-e4be0a107540" + "7396111a-2e7f-441e-a096-97b8c130dba7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111324Z:7413d54b-1de3-441e-8e51-e4be0a107540" + "CENTRALUSEUAP:20210417T213252Z:7396111a-2e7f-441e-a096-97b8c130dba7" ], "Date": [ - "Sun, 03 May 2020 11:13:24 GMT" + "Sat, 17 Apr 2021 21:32:52 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -11395,29 +11092,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f34ba09d-41da-43fa-9d7f-52d95b69ceeb-2020-05-03 11:13:34Z-Ps" + "1c0721cb-215d-480c-9363-47467565c2f8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500814981)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105614981)\\/\",\"ClientRequestId\":\"f34ba09d-41da-43fa-9d7f-52d95b69ceeb-2020-05-03 11:13:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zqYRJiJuFY065myJXTUSHV0bEeejYz5A//l/PE5nMus=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691582886)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296382886)\\/\",\"ClientRequestId\":\"0b2816d1-70d0-40b0-b9b3-ce9c5f953b7d-2021-04-17 21:33:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PfXsT5zw7V/XkchtLl6FXEuct0pNaPCI7n5lDeMCod8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11428,38 +11125,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" + "11868" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3f7bd77e-9018-4a62-9435-d700ba1a452f" + "37b24de1-d298-4df9-a29b-636556387183" ], "x-ms-client-request-id": [ - "f34ba09d-41da-43fa-9d7f-52d95b69ceeb-2020-05-03 11:13:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1c0721cb-215d-480c-9363-47467565c2f8" ], "x-ms-correlation-request-id": [ - "3f7bd77e-9018-4a62-9435-d700ba1a452f" + "37b24de1-d298-4df9-a29b-636556387183" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111335Z:3f7bd77e-9018-4a62-9435-d700ba1a452f" + "CENTRALUSEUAP:20210417T213303Z:37b24de1-d298-4df9-a29b-636556387183" ], "Date": [ - "Sun, 03 May 2020 11:13:34 GMT" + "Sat, 17 Apr 2021 21:33:02 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -11468,29 +11162,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9467fb08-2296-4359-8596-0fb84a101ed4-2020-05-03 11:13:45Z-Ps" + "5a87b023-d1cc-4124-a018-0defeb4d1b8a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500825500)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105625500)\\/\",\"ClientRequestId\":\"9467fb08-2296-4359-8596-0fb84a101ed4-2020-05-03 11:13:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dkYgH6qmMQsXc1BqbApENSBX27QfL4F6D7o//ZaKwcM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691593239)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296393239)\\/\",\"ClientRequestId\":\"560deaf4-5eab-4419-8652-ea7a3d443fa3-2021-04-17 21:33:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UPxQ8YGYueb+vPU8aqLlBOPJa9vzF8HSklttgHrLxMI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11501,38 +11195,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" + "11867" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bda48d0a-9621-418f-bd52-05b443f6dae2" + "1e876671-902c-4ed7-bf93-c39e50975180" ], "x-ms-client-request-id": [ - "9467fb08-2296-4359-8596-0fb84a101ed4-2020-05-03 11:13:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5a87b023-d1cc-4124-a018-0defeb4d1b8a" ], "x-ms-correlation-request-id": [ - "bda48d0a-9621-418f-bd52-05b443f6dae2" + "1e876671-902c-4ed7-bf93-c39e50975180" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111345Z:bda48d0a-9621-418f-bd52-05b443f6dae2" + "CENTRALUSEUAP:20210417T213313Z:1e876671-902c-4ed7-bf93-c39e50975180" ], "Date": [ - "Sun, 03 May 2020 11:13:45 GMT" + "Sat, 17 Apr 2021 21:33:12 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -11541,29 +11232,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ec25183-6716-4037-8e99-a635691737d5-2020-05-03 11:13:56Z-Ps" + "70b36174-d0fb-4d41-9e58-d71f23220cb9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500836059)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105636059)\\/\",\"ClientRequestId\":\"5ec25183-6716-4037-8e99-a635691737d5-2020-05-03 11:13:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QdS2b7qMQTZI2Xyr0TaWySt/pi4SkQhG3hgWXMpln8U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691603597)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296403597)\\/\",\"ClientRequestId\":\"896e61cd-17f0-4a94-8296-aac394b9363e-2021-04-17 21:33:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RLJLu/PA1ho3uDIAJJUwhvg602CSqoI2Va+Wrf16kdI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11574,38 +11265,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" + "11866" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "21a4cff5-f568-43bc-b50c-956e7ef5f946" + "6fe215f2-62d5-470f-93c1-559075e7cef1" ], "x-ms-client-request-id": [ - "5ec25183-6716-4037-8e99-a635691737d5-2020-05-03 11:13:56Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "70b36174-d0fb-4d41-9e58-d71f23220cb9" ], "x-ms-correlation-request-id": [ - "21a4cff5-f568-43bc-b50c-956e7ef5f946" + "6fe215f2-62d5-470f-93c1-559075e7cef1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111356Z:21a4cff5-f568-43bc-b50c-956e7ef5f946" + "CENTRALUSEUAP:20210417T213323Z:6fe215f2-62d5-470f-93c1-559075e7cef1" ], "Date": [ - "Sun, 03 May 2020 11:13:56 GMT" + "Sat, 17 Apr 2021 21:33:23 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -11614,29 +11302,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eae725f5-f037-40fe-92df-6c63041f36a4-2020-05-03 11:14:07Z-Ps" + "b142b488-9e1c-4ca6-98e5-a5008412fbb7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500847011)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105647011)\\/\",\"ClientRequestId\":\"eae725f5-f037-40fe-92df-6c63041f36a4-2020-05-03 11:14:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zMvKCc5CS25kqvGEFYcgS5m3B610uZ6gP4EtCbAO0dw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691613971)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296413971)\\/\",\"ClientRequestId\":\"f58544e7-9b41-49ca-8da6-7a6ed46fb865-2021-04-17 21:33:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2rJvxyCwpX3Uw7xWx9FwPFdJyqaHF/kJxj/qWmW1f00=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11647,38 +11335,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" + "11865" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3ecdb1a9-31f9-4357-8caa-17bc3c354f10" + "e0cc5581-3c3a-4a73-932f-b8f0a09e9a71" ], "x-ms-client-request-id": [ - "eae725f5-f037-40fe-92df-6c63041f36a4-2020-05-03 11:14:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b142b488-9e1c-4ca6-98e5-a5008412fbb7" ], "x-ms-correlation-request-id": [ - "3ecdb1a9-31f9-4357-8caa-17bc3c354f10" + "e0cc5581-3c3a-4a73-932f-b8f0a09e9a71" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111407Z:3ecdb1a9-31f9-4357-8caa-17bc3c354f10" + "CENTRALUSEUAP:20210417T213334Z:e0cc5581-3c3a-4a73-932f-b8f0a09e9a71" ], "Date": [ - "Sun, 03 May 2020 11:14:06 GMT" + "Sat, 17 Apr 2021 21:33:33 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -11687,29 +11372,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ac84b38-f951-4033-aca7-2b34ce12715d-2020-05-03 11:14:17Z-Ps" + "1c299687-b02c-449b-bcda-f985e615bb88" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500857570)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105657570)\\/\",\"ClientRequestId\":\"8ac84b38-f951-4033-aca7-2b34ce12715d-2020-05-03 11:14:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"U/LigeMK7K8gj2ab4iASCdJhBomO7V/XTNOrhq212ks=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691624393)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296424393)\\/\",\"ClientRequestId\":\"cec54fbe-a66c-4104-a949-8ec5a5989117-2021-04-17 21:33:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qOK931TqcSTM4tPWPUJF8fiKVFUG+ri16rJ8bfs552w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11719,39 +11404,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "be5ddd7d-2cd8-4faa-98e8-6c3ed72039ea" + "63c02f67-7478-4426-b3e7-7ccb4dc3ff66" ], "x-ms-client-request-id": [ - "8ac84b38-f951-4033-aca7-2b34ce12715d-2020-05-03 11:14:17Z-Ps" + "1c299687-b02c-449b-bcda-f985e615bb88" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11864" ], "x-ms-correlation-request-id": [ - "be5ddd7d-2cd8-4faa-98e8-6c3ed72039ea" + "63c02f67-7478-4426-b3e7-7ccb4dc3ff66" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111417Z:be5ddd7d-2cd8-4faa-98e8-6c3ed72039ea" + "CENTRALUSEUAP:20210417T213344Z:63c02f67-7478-4426-b3e7-7ccb4dc3ff66" ], "Date": [ - "Sun, 03 May 2020 11:14:17 GMT" + "Sat, 17 Apr 2021 21:33:44 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -11760,29 +11442,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e073e606-40af-4e64-82d8-81b74950cae1-2020-05-03 11:14:28Z-Ps" + "e72294bf-271d-4589-b77e-2da53033a0cc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500868121)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105668121)\\/\",\"ClientRequestId\":\"e073e606-40af-4e64-82d8-81b74950cae1-2020-05-03 11:14:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6jgXu9NYWdVEIL/WA+bVqhbOOqUwq33yUPi9LxSPiLQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691634761)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296434761)\\/\",\"ClientRequestId\":\"228ef268-c442-4471-a05b-d76ae7f917e8-2021-04-17 21:33:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bCH4McXqXCFQR2H1BSzVmXiAfvGb5jtQUoGTHhuqMU8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11792,39 +11474,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11863" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bf063be4-7f59-4a2e-b4ab-197a42a45397" + "c1596b5a-67af-4ae8-bdfd-a10d2f29e857" ], "x-ms-client-request-id": [ - "e073e606-40af-4e64-82d8-81b74950cae1-2020-05-03 11:14:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" + "e72294bf-271d-4589-b77e-2da53033a0cc" ], "x-ms-correlation-request-id": [ - "bf063be4-7f59-4a2e-b4ab-197a42a45397" + "c1596b5a-67af-4ae8-bdfd-a10d2f29e857" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111428Z:bf063be4-7f59-4a2e-b4ab-197a42a45397" + "CENTRALUSEUAP:20210417T213355Z:c1596b5a-67af-4ae8-bdfd-a10d2f29e857" ], "Date": [ - "Sun, 03 May 2020 11:14:28 GMT" + "Sat, 17 Apr 2021 21:33:54 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -11833,29 +11512,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42140a39-cbf2-4516-b942-c04de38fc989-2020-05-03 11:14:38Z-Ps" + "e3a5e9d4-3c23-4014-b662-4df8c33f3096" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500878629)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105678629)\\/\",\"ClientRequestId\":\"42140a39-cbf2-4516-b942-c04de38fc989-2020-05-03 11:14:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SjJMgcLFxTKFp6idV7+oBf/S+TDKQODlSPrLILZyRhI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691645361)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296445361)\\/\",\"ClientRequestId\":\"ba2013a4-6dac-43bc-ab3c-306d86cd069e-2021-04-17 21:34:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lco4zQr90vWwVt/DGPHzy/EkFxZK4qOMShKbPEC1hXc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11866,38 +11545,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" + "11862" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "35635e5b-c325-4469-9d11-65707559d5f7" + "fadefaad-7bd0-4edc-97fd-717804a09d59" ], "x-ms-client-request-id": [ - "42140a39-cbf2-4516-b942-c04de38fc989-2020-05-03 11:14:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e3a5e9d4-3c23-4014-b662-4df8c33f3096" ], "x-ms-correlation-request-id": [ - "35635e5b-c325-4469-9d11-65707559d5f7" + "fadefaad-7bd0-4edc-97fd-717804a09d59" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111439Z:35635e5b-c325-4469-9d11-65707559d5f7" + "CENTRALUSEUAP:20210417T213405Z:fadefaad-7bd0-4edc-97fd-717804a09d59" ], "Date": [ - "Sun, 03 May 2020 11:14:38 GMT" + "Sat, 17 Apr 2021 21:34:05 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -11906,29 +11582,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75ed5fb9-9777-4150-b79a-792065c62410-2020-05-03 11:14:49Z-Ps" + "e91f8ed5-4df7-435c-b865-31a963d71c3d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500889171)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105689171)\\/\",\"ClientRequestId\":\"75ed5fb9-9777-4150-b79a-792065c62410-2020-05-03 11:14:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7TM0WdFR0+R9gyQtHxdHwOlLgcc54aNhCfJLOiYtKj8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691655795)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296455795)\\/\",\"ClientRequestId\":\"d568a4f4-851e-458b-9ef5-5b159c341673-2021-04-17 21:34:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nzgcKCtBVSco7tNyWJVQZtKTt38H1zS4NRTX7oBrHLk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11939,38 +11615,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" + "11861" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "64252e83-d8d9-4c88-bba0-72095ae3910f" + "7c639310-9e63-4d2a-b54f-a372bc868b1b" ], "x-ms-client-request-id": [ - "75ed5fb9-9777-4150-b79a-792065c62410-2020-05-03 11:14:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e91f8ed5-4df7-435c-b865-31a963d71c3d" ], "x-ms-correlation-request-id": [ - "64252e83-d8d9-4c88-bba0-72095ae3910f" + "7c639310-9e63-4d2a-b54f-a372bc868b1b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111449Z:64252e83-d8d9-4c88-bba0-72095ae3910f" + "CENTRALUSEUAP:20210417T213416Z:7c639310-9e63-4d2a-b54f-a372bc868b1b" ], "Date": [ - "Sun, 03 May 2020 11:14:49 GMT" + "Sat, 17 Apr 2021 21:34:16 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -11979,29 +11652,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b542b996-d92f-4796-95a3-c22a876c27ee-2020-05-03 11:14:59Z-Ps" + "f5308230-8764-4831-8487-aaa9c02cd759" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500899658)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105699658)\\/\",\"ClientRequestId\":\"b542b996-d92f-4796-95a3-c22a876c27ee-2020-05-03 11:14:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lXqO6NmaxKkfdfgwPGoJTUmW7FxMWS/wbH0zPVN12pg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691666636)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296466636)\\/\",\"ClientRequestId\":\"a6a3cb8d-1365-4a90-b98e-cdba61f18d4f-2021-04-17 21:34:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"j2KHCP+JQF8wYFDR/4/rLKddISyBNJRKrnG3NEPirEc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12012,38 +11685,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" + "11860" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "38d58e49-92a6-41fc-946c-09ab2760714f" + "23ee323a-16bd-43a1-8fe9-9f8d16335b04" ], "x-ms-client-request-id": [ - "b542b996-d92f-4796-95a3-c22a876c27ee-2020-05-03 11:14:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f5308230-8764-4831-8487-aaa9c02cd759" ], "x-ms-correlation-request-id": [ - "38d58e49-92a6-41fc-946c-09ab2760714f" + "23ee323a-16bd-43a1-8fe9-9f8d16335b04" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111459Z:38d58e49-92a6-41fc-946c-09ab2760714f" + "CENTRALUSEUAP:20210417T213426Z:23ee323a-16bd-43a1-8fe9-9f8d16335b04" ], "Date": [ - "Sun, 03 May 2020 11:14:59 GMT" + "Sat, 17 Apr 2021 21:34:26 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -12052,29 +11722,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed565018-ff56-4006-b9fa-cfed0e271782-2020-05-03 11:15:10Z-Ps" + "8650b77a-2766-4133-8e9e-dd3450a2e370" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500910143)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105710143)\\/\",\"ClientRequestId\":\"ed565018-ff56-4006-b9fa-cfed0e271782-2020-05-03 11:15:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"D4ADY85S1AuN536Rn3eg9EnCfMWaRvPhfF3rW67bfJc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691677010)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296477010)\\/\",\"ClientRequestId\":\"2c78dec5-d485-45b5-8575-94bec57bc411-2021-04-17 21:34:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8oiX2tBEDDm4dNPwXeQ7t/mnTF27eFGHqsId0FvZc+A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12085,38 +11755,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" + "11859" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f2f75405-d81a-4f34-a539-a6ba50ea62f0" + "59334162-393d-4ced-9b91-a0fd7c3e65b7" ], "x-ms-client-request-id": [ - "ed565018-ff56-4006-b9fa-cfed0e271782-2020-05-03 11:15:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8650b77a-2766-4133-8e9e-dd3450a2e370" ], "x-ms-correlation-request-id": [ - "f2f75405-d81a-4f34-a539-a6ba50ea62f0" + "59334162-393d-4ced-9b91-a0fd7c3e65b7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111510Z:f2f75405-d81a-4f34-a539-a6ba50ea62f0" + "CENTRALUSEUAP:20210417T213437Z:59334162-393d-4ced-9b91-a0fd7c3e65b7" ], "Date": [ - "Sun, 03 May 2020 11:15:09 GMT" + "Sat, 17 Apr 2021 21:34:37 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -12125,29 +11792,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29dbc87c-4767-4228-a0cd-4aeab2deaf0a-2020-05-03 11:15:20Z-Ps" + "9d0c7933-41a6-482b-979c-bf0aafe4354c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500920665)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105720665)\\/\",\"ClientRequestId\":\"29dbc87c-4767-4228-a0cd-4aeab2deaf0a-2020-05-03 11:15:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4KzrLhRT5ftzEOTN0wS9+tYMIGMvN/v2ClamyDShjMw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691687395)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296487395)\\/\",\"ClientRequestId\":\"bf7c7283-7fc8-408a-a1b0-53e469d21ace-2021-04-17 21:34:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"g2UCAJYfS/1xUnU1UCKbFnE6oCzJ0BU/yj1GPG5T7o4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12158,38 +11825,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" + "11858" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "355da2bd-be11-4a6a-a964-2c1bedc9190f" + "97cea2e8-a4c1-4b0d-93f0-4a57ae2b202b" ], "x-ms-client-request-id": [ - "29dbc87c-4767-4228-a0cd-4aeab2deaf0a-2020-05-03 11:15:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9d0c7933-41a6-482b-979c-bf0aafe4354c" ], "x-ms-correlation-request-id": [ - "355da2bd-be11-4a6a-a964-2c1bedc9190f" + "97cea2e8-a4c1-4b0d-93f0-4a57ae2b202b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111521Z:355da2bd-be11-4a6a-a964-2c1bedc9190f" + "CENTRALUSEUAP:20210417T213447Z:97cea2e8-a4c1-4b0d-93f0-4a57ae2b202b" ], "Date": [ - "Sun, 03 May 2020 11:15:21 GMT" + "Sat, 17 Apr 2021 21:34:47 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -12198,29 +11862,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "279a9457-7879-45ad-b8cf-3cd7e8c3a069-2020-05-03 11:15:31Z-Ps" + "ba3efb9c-b3a0-4a22-9198-52b26944aecd" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500931574)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105731574)\\/\",\"ClientRequestId\":\"279a9457-7879-45ad-b8cf-3cd7e8c3a069-2020-05-03 11:15:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"thlxhOGp6PMnFcbi8qmcS37Lu91T/5teIxbTFh2cSoc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691697893)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296497893)\\/\",\"ClientRequestId\":\"a5c585e5-25d6-4370-8589-6acf593bffe0-2021-04-17 21:34:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"aUJ+jUoMWbI1u2ypMTreEk47h5qFyB67KEj4dFg1vao=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12231,38 +11895,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" + "11857" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "02839513-557c-400b-bceb-588951008166" + "f324a257-3cba-4d7a-81f9-030bc898bb1a" ], "x-ms-client-request-id": [ - "279a9457-7879-45ad-b8cf-3cd7e8c3a069-2020-05-03 11:15:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ba3efb9c-b3a0-4a22-9198-52b26944aecd" ], "x-ms-correlation-request-id": [ - "02839513-557c-400b-bceb-588951008166" + "f324a257-3cba-4d7a-81f9-030bc898bb1a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111531Z:02839513-557c-400b-bceb-588951008166" + "CENTRALUSEUAP:20210417T213458Z:f324a257-3cba-4d7a-81f9-030bc898bb1a" ], "Date": [ - "Sun, 03 May 2020 11:15:31 GMT" + "Sat, 17 Apr 2021 21:34:58 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -12271,29 +11932,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dddf5f62-10ce-431c-a0b5-f0ac211bddb1-2020-05-03 11:15:42Z-Ps" + "e0997fdf-6424-4337-8640-9d106b927bd8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500942093)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105742093)\\/\",\"ClientRequestId\":\"dddf5f62-10ce-431c-a0b5-f0ac211bddb1-2020-05-03 11:15:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gDLoITkQn0E5wAeoROpamB+6dC5bWODZCco1JrRvNOs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691708342)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296508342)\\/\",\"ClientRequestId\":\"32d7366c-1e4d-4d76-a814-4f822fcc50dd-2021-04-17 21:35:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"b+Tp0ub+jvT3L+2/8mIW4qVcQ0APYrRzgVPx8cAm3f4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12303,39 +11964,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11856" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "11267adf-7ce2-4d00-bf96-ef739a946b47" + "59323e67-8626-4bed-b6b5-7e2520148cf9" ], "x-ms-client-request-id": [ - "dddf5f62-10ce-431c-a0b5-f0ac211bddb1-2020-05-03 11:15:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" + "e0997fdf-6424-4337-8640-9d106b927bd8" ], "x-ms-correlation-request-id": [ - "11267adf-7ce2-4d00-bf96-ef739a946b47" + "59323e67-8626-4bed-b6b5-7e2520148cf9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111542Z:11267adf-7ce2-4d00-bf96-ef739a946b47" + "CENTRALUSEUAP:20210417T213509Z:59323e67-8626-4bed-b6b5-7e2520148cf9" ], "Date": [ - "Sun, 03 May 2020 11:15:42 GMT" + "Sat, 17 Apr 2021 21:35:09 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -12344,29 +12002,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79c8ac64-8f08-4cb8-9b0a-325e1bd76ceb-2020-05-03 11:15:52Z-Ps" + "4cfdd638-35ea-46ec-8529-812d780ad10f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500952589)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105752589)\\/\",\"ClientRequestId\":\"79c8ac64-8f08-4cb8-9b0a-325e1bd76ceb-2020-05-03 11:15:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SERaS5qIpi9ptk+CS/KJUnRU0RcrZ18APcTBowdCrrM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691719302)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296519302)\\/\",\"ClientRequestId\":\"4e7861bf-89bc-40bc-b855-23981f4bceef-2021-04-17 21:35:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tvg9kTtRrIVX4oV3ZgIOtSloyuQz0Lm/tPMWtzsR1rg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12377,38 +12035,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" + "11855" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3782d70a-1a20-4f27-afbc-608eb34349cc" + "f147b732-de20-4298-a21e-a6c9cdd2f6ab" ], "x-ms-client-request-id": [ - "79c8ac64-8f08-4cb8-9b0a-325e1bd76ceb-2020-05-03 11:15:52Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4cfdd638-35ea-46ec-8529-812d780ad10f" ], "x-ms-correlation-request-id": [ - "3782d70a-1a20-4f27-afbc-608eb34349cc" + "f147b732-de20-4298-a21e-a6c9cdd2f6ab" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111552Z:3782d70a-1a20-4f27-afbc-608eb34349cc" + "CENTRALUSEUAP:20210417T213519Z:f147b732-de20-4298-a21e-a6c9cdd2f6ab" ], "Date": [ - "Sun, 03 May 2020 11:15:52 GMT" + "Sat, 17 Apr 2021 21:35:18 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -12417,29 +12072,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "587babb0-bf53-4eac-a03e-79a3bb233eeb-2020-05-03 11:16:03Z-Ps" + "9d08cdce-d8a6-4416-b5e8-b168a9617166" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500963122)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105763122)\\/\",\"ClientRequestId\":\"587babb0-bf53-4eac-a03e-79a3bb233eeb-2020-05-03 11:16:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5XWj2bA6Q+3hTGjGpDtJSmX/RRLtEJNAGdifjg9GZts=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691729773)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296529773)\\/\",\"ClientRequestId\":\"30f903c1-c4b0-4c37-b2fc-9befa6464d96-2021-04-17 21:35:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WoREy3/6VxPXaEQtrGDkBrz+aLS0ad8YEO+31DLjjrQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12450,38 +12105,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" + "11854" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "119c7d42-07a4-4d23-bfc9-0e5d0921024d" + "0031af5b-fc05-4fa6-b187-4156bc87738c" ], "x-ms-client-request-id": [ - "587babb0-bf53-4eac-a03e-79a3bb233eeb-2020-05-03 11:16:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9d08cdce-d8a6-4416-b5e8-b168a9617166" ], "x-ms-correlation-request-id": [ - "119c7d42-07a4-4d23-bfc9-0e5d0921024d" + "0031af5b-fc05-4fa6-b187-4156bc87738c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111603Z:119c7d42-07a4-4d23-bfc9-0e5d0921024d" + "CENTRALUSEUAP:20210417T213530Z:0031af5b-fc05-4fa6-b187-4156bc87738c" ], "Date": [ - "Sun, 03 May 2020 11:16:02 GMT" + "Sat, 17 Apr 2021 21:35:29 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -12490,29 +12142,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7cb7b40-7786-4117-a247-c092a87f3dc5-2020-05-03 11:16:13Z-Ps" + "b3ffae00-4a4b-4f0c-88d1-e13f847557b1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500973625)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105773625)\\/\",\"ClientRequestId\":\"b7cb7b40-7786-4117-a247-c092a87f3dc5-2020-05-03 11:16:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"M/PcgRddsckDP8OU2gp32obL2qDRnY6DA7Tkpn4DP8o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691740226)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296540226)\\/\",\"ClientRequestId\":\"8e8553f1-ea5d-4948-92d3-b179be61264d-2021-04-17 21:35:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7MthfWXHBaZO7xUG0h0BkJhXrkr9CMPikAoRfWLs1u8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12523,38 +12175,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" + "11853" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "08a3fb7d-5fa9-44cf-b741-712ccd091dd6" + "75f843e8-f970-4e12-9a93-29e7cc4b22d9" ], "x-ms-client-request-id": [ - "b7cb7b40-7786-4117-a247-c092a87f3dc5-2020-05-03 11:16:13Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b3ffae00-4a4b-4f0c-88d1-e13f847557b1" ], "x-ms-correlation-request-id": [ - "08a3fb7d-5fa9-44cf-b741-712ccd091dd6" + "75f843e8-f970-4e12-9a93-29e7cc4b22d9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111614Z:08a3fb7d-5fa9-44cf-b741-712ccd091dd6" + "CENTRALUSEUAP:20210417T213540Z:75f843e8-f970-4e12-9a93-29e7cc4b22d9" ], "Date": [ - "Sun, 03 May 2020 11:16:13 GMT" + "Sat, 17 Apr 2021 21:35:40 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -12563,29 +12212,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15867a14-a912-4774-88a8-ac103dc3d065-2020-05-03 11:16:24Z-Ps" + "23f44477-74f8-4b7a-9b21-69dca30ef222" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500984251)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105784251)\\/\",\"ClientRequestId\":\"15867a14-a912-4774-88a8-ac103dc3d065-2020-05-03 11:16:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"anHOoRwnO05xpXo1b/E9g1XpANW0vCN4DcnEtdCa5Vk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691750787)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296550787)\\/\",\"ClientRequestId\":\"de9a4bf3-aee0-4188-91c7-19bd869857ba-2021-04-17 21:35:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Cis88X994Ay3lszfcEU6clktv29dI/wzOtbX3HRmKRc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12596,38 +12245,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" + "11852" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "08385d29-f4e8-4381-86bd-5be25ecfb1e8" + "f90c3466-a62e-4806-b9bc-1ee5c1caf6da" ], "x-ms-client-request-id": [ - "15867a14-a912-4774-88a8-ac103dc3d065-2020-05-03 11:16:24Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "23f44477-74f8-4b7a-9b21-69dca30ef222" ], "x-ms-correlation-request-id": [ - "08385d29-f4e8-4381-86bd-5be25ecfb1e8" + "f90c3466-a62e-4806-b9bc-1ee5c1caf6da" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111624Z:08385d29-f4e8-4381-86bd-5be25ecfb1e8" + "CENTRALUSEUAP:20210417T213551Z:f90c3466-a62e-4806-b9bc-1ee5c1caf6da" ], "Date": [ - "Sun, 03 May 2020 11:16:24 GMT" + "Sat, 17 Apr 2021 21:35:51 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -12636,29 +12282,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8558f892-a418-4952-95bb-a2b8f01d3069-2020-05-03 11:16:34Z-Ps" + "efcd1523-6c1b-47e1-bdbe-4f76346025f1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588500994865)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105794865)\\/\",\"ClientRequestId\":\"8558f892-a418-4952-95bb-a2b8f01d3069-2020-05-03 11:16:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"57QBOFEXPeXzn+J2VcysLidlG1lnngImE257TKuLK0w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691761462)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296561462)\\/\",\"ClientRequestId\":\"5b81734e-d994-4e18-98aa-7b3ae768b31c-2021-04-17 21:36:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"a/UQ5xtwvphS+Xx3Ib/kJfizeyHGYST8snaYc3Xq6uQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12668,39 +12314,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11851" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "507c0e8d-7fd8-42a0-aeda-e6a8b9fab82c" + "1674e6e5-8ecc-4566-a722-390839adc427" ], "x-ms-client-request-id": [ - "8558f892-a418-4952-95bb-a2b8f01d3069-2020-05-03 11:16:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11876" + "efcd1523-6c1b-47e1-bdbe-4f76346025f1" ], "x-ms-correlation-request-id": [ - "507c0e8d-7fd8-42a0-aeda-e6a8b9fab82c" + "1674e6e5-8ecc-4566-a722-390839adc427" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111635Z:507c0e8d-7fd8-42a0-aeda-e6a8b9fab82c" + "CENTRALUSEUAP:20210417T213601Z:1674e6e5-8ecc-4566-a722-390839adc427" ], "Date": [ - "Sun, 03 May 2020 11:16:34 GMT" + "Sat, 17 Apr 2021 21:36:01 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -12709,29 +12352,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c10ae251-4612-48d7-9978-46e166340c61-2020-05-03 11:16:45Z-Ps" + "ac8dd0d8-ac02-4948-ba50-e4b9ab301722" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501005397)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105805397)\\/\",\"ClientRequestId\":\"c10ae251-4612-48d7-9978-46e166340c61-2020-05-03 11:16:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2/tQj0dlQAyyhvB1qRK9AZujdgN7tuDGgVQtTDEgSKY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691771854)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296571854)\\/\",\"ClientRequestId\":\"ff799278-a725-4e45-8f09-862df4bb8d0c-2021-04-17 21:36:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"J0xDNjAumKhoyPr3fwFEkGHl8j8gMNGa+K0FDua8c8M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12742,38 +12385,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" + "11850" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c91ec5fd-c4d3-48f1-8532-0c55e209457c" + "2ebcf4b4-9bb2-4d67-a24a-d9a9559b7e40" ], "x-ms-client-request-id": [ - "c10ae251-4612-48d7-9978-46e166340c61-2020-05-03 11:16:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ac8dd0d8-ac02-4948-ba50-e4b9ab301722" ], "x-ms-correlation-request-id": [ - "c91ec5fd-c4d3-48f1-8532-0c55e209457c" + "2ebcf4b4-9bb2-4d67-a24a-d9a9559b7e40" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111646Z:c91ec5fd-c4d3-48f1-8532-0c55e209457c" + "CENTRALUSEUAP:20210417T213612Z:2ebcf4b4-9bb2-4d67-a24a-d9a9559b7e40" ], "Date": [ - "Sun, 03 May 2020 11:16:46 GMT" + "Sat, 17 Apr 2021 21:36:12 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -12782,29 +12422,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6d2834f-e5b8-4f58-9320-4ba3c1a9d96a-2020-05-03 11:16:56Z-Ps" + "3d9ff616-aa49-40e2-a4aa-a258a0498907" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501016952)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105816952)\\/\",\"ClientRequestId\":\"c6d2834f-e5b8-4f58-9320-4ba3c1a9d96a-2020-05-03 11:16:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uVDZgfRn8LiXhzDDZMZqgj3xkX0h4U5VJWsGiPKKDP0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691783178)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296583178)\\/\",\"ClientRequestId\":\"723945aa-def4-428e-bf95-f950cbf84a3c-2021-04-17 21:36:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TsAXRKPQqMlL1OTedqDxRkVzkvsz+oHDsFl7gPZrX7M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12815,38 +12455,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" + "11849" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bdac87f8-6b2b-45cd-9f69-beddc3540d05" + "08cc8931-a80e-4caf-aecc-184f37f29d41" ], "x-ms-client-request-id": [ - "c6d2834f-e5b8-4f58-9320-4ba3c1a9d96a-2020-05-03 11:16:56Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3d9ff616-aa49-40e2-a4aa-a258a0498907" ], "x-ms-correlation-request-id": [ - "bdac87f8-6b2b-45cd-9f69-beddc3540d05" + "08cc8931-a80e-4caf-aecc-184f37f29d41" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111657Z:bdac87f8-6b2b-45cd-9f69-beddc3540d05" + "CENTRALUSEUAP:20210417T213623Z:08cc8931-a80e-4caf-aecc-184f37f29d41" ], "Date": [ - "Sun, 03 May 2020 11:16:57 GMT" + "Sat, 17 Apr 2021 21:36:23 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -12855,29 +12492,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3322a607-2031-48c8-9cb6-a262f2c87ce9-2020-05-03 11:17:07Z-Ps" + "5f3e21ec-8740-4b9e-b5c3-7e87d61ede1c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501027448)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105827448)\\/\",\"ClientRequestId\":\"3322a607-2031-48c8-9cb6-a262f2c87ce9-2020-05-03 11:17:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OniME3J5yUG5M4EdAJk+gGHrFU2RckVsbvHky5TDN/A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691793589)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296593589)\\/\",\"ClientRequestId\":\"b385f3db-4f7a-481a-a45a-f5cc72bf8b29-2021-04-17 21:36:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EhYWSqvU2pGEMAZglWXL9hr3TZQobqj8D5BJfWlPzOI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12888,38 +12525,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" + "11848" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7f6343ee-ab16-46fe-8e0c-6507775391d4" + "9957c060-2218-441a-9e0e-da2b96482987" ], "x-ms-client-request-id": [ - "3322a607-2031-48c8-9cb6-a262f2c87ce9-2020-05-03 11:17:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5f3e21ec-8740-4b9e-b5c3-7e87d61ede1c" ], "x-ms-correlation-request-id": [ - "7f6343ee-ab16-46fe-8e0c-6507775391d4" + "9957c060-2218-441a-9e0e-da2b96482987" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111707Z:7f6343ee-ab16-46fe-8e0c-6507775391d4" + "CENTRALUSEUAP:20210417T213633Z:9957c060-2218-441a-9e0e-da2b96482987" ], "Date": [ - "Sun, 03 May 2020 11:17:07 GMT" + "Sat, 17 Apr 2021 21:36:33 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -12928,29 +12562,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9686a8c4-d075-4657-a256-38f8c2fb1f85-2020-05-03 11:17:17Z-Ps" + "f0e2f336-2b86-4e0f-a2d7-1722d41a2cdb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501037938)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105837938)\\/\",\"ClientRequestId\":\"9686a8c4-d075-4657-a256-38f8c2fb1f85-2020-05-03 11:17:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BwYmDNyvm0f6n7VAq1c7I2S77pV2SgDtyo0OwVFZnB8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691804010)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296604010)\\/\",\"ClientRequestId\":\"de7f0149-b5b1-4ba2-8443-f35dde158ef9-2021-04-17 21:36:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"B5q3dgTGtU2Si2yuxYEnAi3GkFEwnyxgE9Zl2HCXwtI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12961,38 +12595,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11872" + "11847" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "513b1556-99ad-43a9-9757-971ddc99c1c9" + "d9422081-5f6e-4365-a4f5-d4541dbdd0ad" ], "x-ms-client-request-id": [ - "9686a8c4-d075-4657-a256-38f8c2fb1f85-2020-05-03 11:17:17Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f0e2f336-2b86-4e0f-a2d7-1722d41a2cdb" ], "x-ms-correlation-request-id": [ - "513b1556-99ad-43a9-9757-971ddc99c1c9" + "d9422081-5f6e-4365-a4f5-d4541dbdd0ad" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111718Z:513b1556-99ad-43a9-9757-971ddc99c1c9" + "CENTRALUSEUAP:20210417T213644Z:d9422081-5f6e-4365-a4f5-d4541dbdd0ad" ], "Date": [ - "Sun, 03 May 2020 11:17:18 GMT" + "Sat, 17 Apr 2021 21:36:44 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -13001,29 +12632,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3f0180f-77b0-4425-84ec-8d863cf3ddfb-2020-05-03 11:17:28Z-Ps" + "9088938d-3121-47a6-9c06-740a36f47214" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501048427)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105848427)\\/\",\"ClientRequestId\":\"c3f0180f-77b0-4425-84ec-8d863cf3ddfb-2020-05-03 11:17:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"i4UVsyNXspY+hkxSFD+DWN+3o1calg0pccuLQQVbF78=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691814931)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296614931)\\/\",\"ClientRequestId\":\"cbb86645-3cda-45f9-972c-e4639220584e-2021-04-17 21:36:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Q6Z+BL53TptUIU7hdcvyedaPU3n80C0/x/Hlfk1QFxg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13034,38 +12665,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" + "11846" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5af2032b-4411-4c21-8edf-932660c8ec9f" + "ba256400-7a6a-4cf4-acfd-cfc40c879ba2" ], "x-ms-client-request-id": [ - "c3f0180f-77b0-4425-84ec-8d863cf3ddfb-2020-05-03 11:17:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9088938d-3121-47a6-9c06-740a36f47214" ], "x-ms-correlation-request-id": [ - "5af2032b-4411-4c21-8edf-932660c8ec9f" + "ba256400-7a6a-4cf4-acfd-cfc40c879ba2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111728Z:5af2032b-4411-4c21-8edf-932660c8ec9f" + "CENTRALUSEUAP:20210417T213655Z:ba256400-7a6a-4cf4-acfd-cfc40c879ba2" ], "Date": [ - "Sun, 03 May 2020 11:17:28 GMT" + "Sat, 17 Apr 2021 21:36:54 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -13074,29 +12702,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b2d6068-93f7-4b15-80f6-189b750e8c90-2020-05-03 11:17:38Z-Ps" + "93872e71-087c-4ff0-8956-0ec0ddf79ea0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501058906)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105858906)\\/\",\"ClientRequestId\":\"1b2d6068-93f7-4b15-80f6-189b750e8c90-2020-05-03 11:17:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yqOUnaguYy9WK4YXn19iWenmfgbsWmhDDDwMGWND6EY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691825331)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296625331)\\/\",\"ClientRequestId\":\"f3698c21-e626-4f28-9cde-7ebd349898fa-2021-04-17 21:37:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qTZH3RUzF4buc7yiqXOt9hFv+UQtbhFyGbcGGzPeykc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13107,38 +12735,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11870" + "11845" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9fbf887c-b86b-4240-986c-3316573e5ac3" + "e5eeab18-c27e-40f4-a572-cce5c224305f" ], "x-ms-client-request-id": [ - "1b2d6068-93f7-4b15-80f6-189b750e8c90-2020-05-03 11:17:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "93872e71-087c-4ff0-8956-0ec0ddf79ea0" ], "x-ms-correlation-request-id": [ - "9fbf887c-b86b-4240-986c-3316573e5ac3" + "e5eeab18-c27e-40f4-a572-cce5c224305f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111739Z:9fbf887c-b86b-4240-986c-3316573e5ac3" + "CENTRALUSEUAP:20210417T213705Z:e5eeab18-c27e-40f4-a572-cce5c224305f" ], "Date": [ - "Sun, 03 May 2020 11:17:38 GMT" + "Sat, 17 Apr 2021 21:37:04 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -13147,29 +12772,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "230060b6-5165-46f5-b809-55f95637023c-2020-05-03 11:17:49Z-Ps" + "e3fe8136-4f55-4dd6-a415-502c65ac13ae" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501069604)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105869604)\\/\",\"ClientRequestId\":\"230060b6-5165-46f5-b809-55f95637023c-2020-05-03 11:17:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WR/WjjSXUHPe2gwBM4ubRntdSh0RMuqNde6OFWlbi4Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691835726)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296635726)\\/\",\"ClientRequestId\":\"95a9efb9-f122-4940-ab50-8ae9867af5b8-2021-04-17 21:37:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RW6UhZNd0IGb1ljOKnsYDfnmMnzruM/9EoTyYT/1bf4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13180,38 +12805,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11869" + "11844" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ca32050f-9de2-420c-b75c-272cd00d79f9" + "82481da8-c37a-4e5a-8c16-a5dfb79fda2a" ], "x-ms-client-request-id": [ - "230060b6-5165-46f5-b809-55f95637023c-2020-05-03 11:17:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e3fe8136-4f55-4dd6-a415-502c65ac13ae" ], "x-ms-correlation-request-id": [ - "ca32050f-9de2-420c-b75c-272cd00d79f9" + "82481da8-c37a-4e5a-8c16-a5dfb79fda2a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111749Z:ca32050f-9de2-420c-b75c-272cd00d79f9" + "CENTRALUSEUAP:20210417T213716Z:82481da8-c37a-4e5a-8c16-a5dfb79fda2a" ], "Date": [ - "Sun, 03 May 2020 11:17:49 GMT" + "Sat, 17 Apr 2021 21:37:16 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -13220,29 +12842,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d28e85f-ebfa-4e64-8f6e-58b135e8af8b-2020-05-03 11:18:00Z-Ps" + "8be3b913-fac1-4af5-8028-cb54b22aa21b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501080094)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105880094)\\/\",\"ClientRequestId\":\"8d28e85f-ebfa-4e64-8f6e-58b135e8af8b-2020-05-03 11:18:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Od+sWsmd6xiaWUUECwE0LPhSZ5RY75AL4q02woJKm2E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691847091)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296647091)\\/\",\"ClientRequestId\":\"0d73e578-455c-4858-a037-b4218c7eda00-2021-04-17 21:37:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DiKG3cHdxPj/JxffUJx7uMzEjRQ0nvflWPSXNTS6KfU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13252,39 +12874,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11843" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "fa988a4a-3ab8-4b56-9ea5-08521d4a9390" + "bb1f7b59-7a84-4f0b-aeb0-80894fc0d7a2" ], "x-ms-client-request-id": [ - "8d28e85f-ebfa-4e64-8f6e-58b135e8af8b-2020-05-03 11:18:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11868" + "8be3b913-fac1-4af5-8028-cb54b22aa21b" ], "x-ms-correlation-request-id": [ - "fa988a4a-3ab8-4b56-9ea5-08521d4a9390" + "bb1f7b59-7a84-4f0b-aeb0-80894fc0d7a2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111800Z:fa988a4a-3ab8-4b56-9ea5-08521d4a9390" + "CENTRALUSEUAP:20210417T213727Z:bb1f7b59-7a84-4f0b-aeb0-80894fc0d7a2" ], "Date": [ - "Sun, 03 May 2020 11:17:59 GMT" + "Sat, 17 Apr 2021 21:37:27 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -13293,29 +12912,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5869045b-c92a-4a3f-9d22-741d27ef2cbd-2020-05-03 11:18:10Z-Ps" + "7e7370b3-4f0d-433f-9700-46f78e2918da" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501090608)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105890608)\\/\",\"ClientRequestId\":\"5869045b-c92a-4a3f-9d22-741d27ef2cbd-2020-05-03 11:18:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+z4tpCC5tHM51Sba+2qGMzH+5RnBd4l6/12E3ua5QzE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691857486)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296657486)\\/\",\"ClientRequestId\":\"77d7b42f-50e2-4b7a-9cfb-6ee8505b688f-2021-04-17 21:37:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jDf1Gth1pRsmTHgkIgk7LUb9LaaAFb4lAGxL5qPyI4E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13326,38 +12945,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11867" + "11842" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f00de8e6-6b1b-472b-981e-d8cb75697280" + "7ff9691a-88cc-4448-aace-12f68fc57ee4" ], "x-ms-client-request-id": [ - "5869045b-c92a-4a3f-9d22-741d27ef2cbd-2020-05-03 11:18:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7e7370b3-4f0d-433f-9700-46f78e2918da" ], "x-ms-correlation-request-id": [ - "f00de8e6-6b1b-472b-981e-d8cb75697280" + "7ff9691a-88cc-4448-aace-12f68fc57ee4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111812Z:f00de8e6-6b1b-472b-981e-d8cb75697280" + "CENTRALUSEUAP:20210417T213737Z:7ff9691a-88cc-4448-aace-12f68fc57ee4" ], "Date": [ - "Sun, 03 May 2020 11:18:11 GMT" + "Sat, 17 Apr 2021 21:37:37 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -13366,29 +12982,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "181658b7-7572-4f4a-8123-0e1b327dbd53-2020-05-03 11:18:22Z-Ps" + "b15564f9-bac6-40f0-bf90-6381c8e639b2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501102246)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105902246)\\/\",\"ClientRequestId\":\"181658b7-7572-4f4a-8123-0e1b327dbd53-2020-05-03 11:18:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WJO4LKSgQOMwTMMg7tbhm+U9Ssy9+4LYrIP1eor9p2U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691868028)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296668028)\\/\",\"ClientRequestId\":\"fa1a2d50-16b5-4665-a9e8-d6afbd9138aa-2021-04-17 21:37:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3t5uLwLIXBO4nfTIv6zCJUCpjZ1X1GFVYVppifX1owk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13399,38 +13015,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11866" + "11841" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "48a9cade-4a5b-4942-9f0b-9e7da393910f" + "8557ef72-41cb-4e73-8546-22c2fde5bcd1" ], "x-ms-client-request-id": [ - "181658b7-7572-4f4a-8123-0e1b327dbd53-2020-05-03 11:18:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b15564f9-bac6-40f0-bf90-6381c8e639b2" ], "x-ms-correlation-request-id": [ - "48a9cade-4a5b-4942-9f0b-9e7da393910f" + "8557ef72-41cb-4e73-8546-22c2fde5bcd1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111822Z:48a9cade-4a5b-4942-9f0b-9e7da393910f" + "CENTRALUSEUAP:20210417T213748Z:8557ef72-41cb-4e73-8546-22c2fde5bcd1" ], "Date": [ - "Sun, 03 May 2020 11:18:21 GMT" + "Sat, 17 Apr 2021 21:37:48 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -13439,29 +13052,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82c20a8c-1998-47d3-97d2-df0072bd4f5f-2020-05-03 11:18:32Z-Ps" + "0842b872-7d98-4af0-b3ec-893ed81a96a8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501112737)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105912737)\\/\",\"ClientRequestId\":\"82c20a8c-1998-47d3-97d2-df0072bd4f5f-2020-05-03 11:18:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1Rig4CFQH4psXI8tzYDa+42hDxd18IvmFTU8uYj6GIc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691878736)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296678736)\\/\",\"ClientRequestId\":\"f58494a9-05c1-4f5b-9668-598c56a408a2-2021-04-17 21:37:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3ANyyaNeNVefD1ib6t7SKZDx6Czb92JU8Dxhmet72dg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13472,38 +13085,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" + "11840" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e4c158e3-8d41-463a-a95a-5ddcc79dc397" + "b31948dc-7cbc-437b-9c02-fb0ccd43b5bb" ], "x-ms-client-request-id": [ - "82c20a8c-1998-47d3-97d2-df0072bd4f5f-2020-05-03 11:18:32Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0842b872-7d98-4af0-b3ec-893ed81a96a8" ], "x-ms-correlation-request-id": [ - "e4c158e3-8d41-463a-a95a-5ddcc79dc397" + "b31948dc-7cbc-437b-9c02-fb0ccd43b5bb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111833Z:e4c158e3-8d41-463a-a95a-5ddcc79dc397" + "CENTRALUSEUAP:20210417T213758Z:b31948dc-7cbc-437b-9c02-fb0ccd43b5bb" ], "Date": [ - "Sun, 03 May 2020 11:18:32 GMT" + "Sat, 17 Apr 2021 21:37:58 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -13512,29 +13122,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20f20f76-d0d2-4502-ba34-b3e43dca5dde-2020-05-03 11:18:43Z-Ps" + "be1c926c-492b-424e-ac32-8febdf598ba6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501123242)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105923242)\\/\",\"ClientRequestId\":\"20f20f76-d0d2-4502-ba34-b3e43dca5dde-2020-05-03 11:18:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iD6m+asjk5HR3xY2psoHg5LwP6LZrdGek6H+EgURCZA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691889115)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296689115)\\/\",\"ClientRequestId\":\"7faa1772-6964-46f9-b4d8-7d3fe13f085b-2021-04-17 21:38:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cWx2xk+lakyoRfr+/VAk5RYfnQqdBlnvzwaRq0zik78=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13545,38 +13155,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11864" + "11839" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ad1fab70-aafe-4a09-81a2-33333f152b3e" + "0a23a13a-f165-4474-9b58-34359bf6a3f1" ], "x-ms-client-request-id": [ - "20f20f76-d0d2-4502-ba34-b3e43dca5dde-2020-05-03 11:18:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "be1c926c-492b-424e-ac32-8febdf598ba6" ], "x-ms-correlation-request-id": [ - "ad1fab70-aafe-4a09-81a2-33333f152b3e" + "0a23a13a-f165-4474-9b58-34359bf6a3f1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111843Z:ad1fab70-aafe-4a09-81a2-33333f152b3e" + "CENTRALUSEUAP:20210417T213809Z:0a23a13a-f165-4474-9b58-34359bf6a3f1" ], "Date": [ - "Sun, 03 May 2020 11:18:43 GMT" + "Sat, 17 Apr 2021 21:38:09 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -13585,29 +13192,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fdf4845-bf79-44fe-b649-4700d92b9615-2020-05-03 11:18:53Z-Ps" + "98a229af-3181-4e6a-bf56-cb37716adab5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501133744)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105933744)\\/\",\"ClientRequestId\":\"3fdf4845-bf79-44fe-b649-4700d92b9615-2020-05-03 11:18:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NPt0mRV6O2vuOhCW69M//5bpg0nZUPgnpyDi6rH8GNg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691899484)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296699484)\\/\",\"ClientRequestId\":\"a512ccda-2915-4f40-9b90-6a6bf2ebc843-2021-04-17 21:38:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3h+c4KEzWoR4pznvT5FOrPmhSLQTbHc8qs9KAuWaUdY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13618,38 +13225,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11863" + "11838" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9cd3c9a2-4b04-4c4a-ad9d-0542575e8c31" + "37f78f21-5fbc-48dc-af3f-92d8da68823e" ], "x-ms-client-request-id": [ - "3fdf4845-bf79-44fe-b649-4700d92b9615-2020-05-03 11:18:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "98a229af-3181-4e6a-bf56-cb37716adab5" ], "x-ms-correlation-request-id": [ - "9cd3c9a2-4b04-4c4a-ad9d-0542575e8c31" + "37f78f21-5fbc-48dc-af3f-92d8da68823e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111854Z:9cd3c9a2-4b04-4c4a-ad9d-0542575e8c31" + "CENTRALUSEUAP:20210417T213820Z:37f78f21-5fbc-48dc-af3f-92d8da68823e" ], "Date": [ - "Sun, 03 May 2020 11:18:53 GMT" + "Sat, 17 Apr 2021 21:38:19 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -13658,29 +13262,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e62b221-d93d-4d47-8a9c-699e84e6e20f-2020-05-03 11:19:04Z-Ps" + "958f7cbe-39ba-4dcb-b199-2feaa4a1343a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501144232)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105944232)\\/\",\"ClientRequestId\":\"8e62b221-d93d-4d47-8a9c-699e84e6e20f-2020-05-03 11:19:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Kwd6Zna7LDJL01KLKhuufkwfZRe3KEVgrvt7oyLTlAc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691910886)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296710886)\\/\",\"ClientRequestId\":\"c2821245-0480-48bd-854e-7717abffd265-2021-04-17 21:38:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"d5TSwh2uJbUfyVFT3Tk2c89QXB6Pi8/forbXBPSfTYU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13691,38 +13295,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11862" + "11837" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4a8fda6f-f807-4fd8-8557-9e8ca4c201f2" + "76b0f7d3-7a5b-4c7f-b865-e97685448856" ], "x-ms-client-request-id": [ - "8e62b221-d93d-4d47-8a9c-699e84e6e20f-2020-05-03 11:19:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "958f7cbe-39ba-4dcb-b199-2feaa4a1343a" ], "x-ms-correlation-request-id": [ - "4a8fda6f-f807-4fd8-8557-9e8ca4c201f2" + "76b0f7d3-7a5b-4c7f-b865-e97685448856" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111904Z:4a8fda6f-f807-4fd8-8557-9e8ca4c201f2" + "CENTRALUSEUAP:20210417T213831Z:76b0f7d3-7a5b-4c7f-b865-e97685448856" ], "Date": [ - "Sun, 03 May 2020 11:19:03 GMT" + "Sat, 17 Apr 2021 21:38:30 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -13731,29 +13332,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79cef9be-d225-405f-ba7b-737274e17bd6-2020-05-03 11:19:14Z-Ps" + "e390a9c8-1ce6-4094-9c28-b8530e8e55fe" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501154736)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105954736)\\/\",\"ClientRequestId\":\"79cef9be-d225-405f-ba7b-737274e17bd6-2020-05-03 11:19:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3OQy7Tiga/7v4i4qCN6IA13tr473v+4bgxFvf1B2aFw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691921278)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296721278)\\/\",\"ClientRequestId\":\"7faaf890-954f-4e71-a171-a2597c47ab0c-2021-04-17 21:38:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"w75weKN0uqr3aVX74oiwRWx4QcEBjIO6gdQ/29x+6+s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13764,38 +13365,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11861" + "11836" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c167a3b9-9229-45e3-a09e-08195631cfc5" + "a518c9bc-0503-483a-95ff-37f06532793b" ], "x-ms-client-request-id": [ - "79cef9be-d225-405f-ba7b-737274e17bd6-2020-05-03 11:19:14Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e390a9c8-1ce6-4094-9c28-b8530e8e55fe" ], "x-ms-correlation-request-id": [ - "c167a3b9-9229-45e3-a09e-08195631cfc5" + "a518c9bc-0503-483a-95ff-37f06532793b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111915Z:c167a3b9-9229-45e3-a09e-08195631cfc5" + "CENTRALUSEUAP:20210417T213841Z:a518c9bc-0503-483a-95ff-37f06532793b" ], "Date": [ - "Sun, 03 May 2020 11:19:14 GMT" + "Sat, 17 Apr 2021 21:38:41 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -13804,29 +13402,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7255eacb-b616-4645-bf2a-b389127df270-2020-05-03 11:19:25Z-Ps" + "12d44b55-b71c-420e-9fbd-69035b00c03f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501165226)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105965226)\\/\",\"ClientRequestId\":\"7255eacb-b616-4645-bf2a-b389127df270-2020-05-03 11:19:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jU9CTgc3gDvukbmOwSWH24fo4UhxFlIGE60Dc/P5eE0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691932029)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296732029)\\/\",\"ClientRequestId\":\"5926bb4b-fcb9-4fc9-8cbf-84057c5c5269-2021-04-17 21:38:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bPGMw1XXQLNbjvNR3E3FSa2/ksVsaj+gf7VoVbgclfw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13836,39 +13434,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11835" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "81a791a1-04e8-4323-9642-09ed6c477213" + "7eae4e3b-acd8-48e6-a624-387a35133d54" ], "x-ms-client-request-id": [ - "7255eacb-b616-4645-bf2a-b389127df270-2020-05-03 11:19:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11860" + "12d44b55-b71c-420e-9fbd-69035b00c03f" ], "x-ms-correlation-request-id": [ - "81a791a1-04e8-4323-9642-09ed6c477213" + "7eae4e3b-acd8-48e6-a624-387a35133d54" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111925Z:81a791a1-04e8-4323-9642-09ed6c477213" + "CENTRALUSEUAP:20210417T213852Z:7eae4e3b-acd8-48e6-a624-387a35133d54" ], "Date": [ - "Sun, 03 May 2020 11:19:24 GMT" + "Sat, 17 Apr 2021 21:38:51 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -13877,29 +13472,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac5a2fd3-9fb5-4e96-a348-666b2440929b-2020-05-03 11:19:35Z-Ps" + "c3120bad-1572-48b4-ade6-86b640c02bf9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501175719)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105975719)\\/\",\"ClientRequestId\":\"ac5a2fd3-9fb5-4e96-a348-666b2440929b-2020-05-03 11:19:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Lllf1W2DVNzLpVw7ZXkpuJZyXDehHr3VjQT667QmD6k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691942415)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296742415)\\/\",\"ClientRequestId\":\"5912dff3-238e-4703-9d24-bf88c5d292ce-2021-04-17 21:39:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VKoWQbxEBJ8x3q7/X1QueF7ohTlI/QBCjeICgUDxnkY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13910,38 +13505,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11859" + "11834" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6de84f72-a87a-453a-a0a9-af68528c48d6" + "093f0cec-136a-49e6-8059-773b335e2a05" ], "x-ms-client-request-id": [ - "ac5a2fd3-9fb5-4e96-a348-666b2440929b-2020-05-03 11:19:35Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c3120bad-1572-48b4-ade6-86b640c02bf9" ], "x-ms-correlation-request-id": [ - "6de84f72-a87a-453a-a0a9-af68528c48d6" + "093f0cec-136a-49e6-8059-773b335e2a05" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111937Z:6de84f72-a87a-453a-a0a9-af68528c48d6" + "CENTRALUSEUAP:20210417T213902Z:093f0cec-136a-49e6-8059-773b335e2a05" ], "Date": [ - "Sun, 03 May 2020 11:19:37 GMT" + "Sat, 17 Apr 2021 21:39:01 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -13950,29 +13542,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6aba144-2e87-4bff-8b50-acd13e700184-2020-05-03 11:19:47Z-Ps" + "4d40dbfb-6eeb-45ef-b62d-3ed9077f540a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501187390)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105987390)\\/\",\"ClientRequestId\":\"e6aba144-2e87-4bff-8b50-acd13e700184-2020-05-03 11:19:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"H3HeabYenbGLEI5ELpKL0BBA6zhkBc4e8KL45nl2bqw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691952797)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296752797)\\/\",\"ClientRequestId\":\"148c2825-3733-4d79-8b6a-1873f7b3aeec-2021-04-17 21:39:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"v2HnDbQtdVQWgvyvqEukdNQ9VsS+CsQESAJFXG2I2zE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13982,39 +13574,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11858" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7cd8ad6d-d354-46bf-ba43-48d33b7f60bb" + "8ecec4f0-3f72-43cd-8307-c63a0ffefe4c" ], "x-ms-client-request-id": [ - "e6aba144-2e87-4bff-8b50-acd13e700184-2020-05-03 11:19:47Z-Ps" + "4d40dbfb-6eeb-45ef-b62d-3ed9077f540a" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11833" ], "x-ms-correlation-request-id": [ - "7cd8ad6d-d354-46bf-ba43-48d33b7f60bb" + "8ecec4f0-3f72-43cd-8307-c63a0ffefe4c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111947Z:7cd8ad6d-d354-46bf-ba43-48d33b7f60bb" + "CENTRALUSEUAP:20210417T213912Z:8ecec4f0-3f72-43cd-8307-c63a0ffefe4c" ], "Date": [ - "Sun, 03 May 2020 11:19:47 GMT" + "Sat, 17 Apr 2021 21:39:12 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -14023,29 +13612,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c5d3340-6293-4c24-ba56-dda6d9c72390-2020-05-03 11:19:57Z-Ps" + "b1340bc8-cd52-4e54-baa3-34d5c20e2cd1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501197907)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589105997907)\\/\",\"ClientRequestId\":\"1c5d3340-6293-4c24-ba56-dda6d9c72390-2020-05-03 11:19:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"D5I9bxGfEtjIcGDCBpkMraG1SZh9QYPP8ahHiEsR8n8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691963165)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296763165)\\/\",\"ClientRequestId\":\"23ae8d6b-d46c-4146-96bc-e9622dbed764-2021-04-17 21:39:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jkKauV858Rvx/AZ4nzFic65Toi4a8OX4lbKjeTTnLT4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14056,38 +13645,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11857" + "11832" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "98ad4f91-5121-4b50-bb6f-cdcefa7855e3" + "173c06f5-af34-4968-9439-c350833c9b17" ], "x-ms-client-request-id": [ - "1c5d3340-6293-4c24-ba56-dda6d9c72390-2020-05-03 11:19:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b1340bc8-cd52-4e54-baa3-34d5c20e2cd1" ], "x-ms-correlation-request-id": [ - "98ad4f91-5121-4b50-bb6f-cdcefa7855e3" + "173c06f5-af34-4968-9439-c350833c9b17" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T111958Z:98ad4f91-5121-4b50-bb6f-cdcefa7855e3" + "CENTRALUSEUAP:20210417T213923Z:173c06f5-af34-4968-9439-c350833c9b17" ], "Date": [ - "Sun, 03 May 2020 11:19:58 GMT" + "Sat, 17 Apr 2021 21:39:23 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -14096,29 +13682,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "714f3823-8bfc-4c98-aede-af355a5f6509-2020-05-03 11:20:08Z-Ps" + "6bc2c03b-8ebd-450d-ac8d-cf8b91ab8a66" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501208448)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106008448)\\/\",\"ClientRequestId\":\"714f3823-8bfc-4c98-aede-af355a5f6509-2020-05-03 11:20:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FSZoVnrsm5Lfl7cLQMzuYj9fRyYNgr1adENZjVIIvAQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691973653)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296773653)\\/\",\"ClientRequestId\":\"5bf90eb5-97c8-405c-9cb1-2eae241a5c99-2021-04-17 21:39:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"40gb7BQMoGLDUIOezLYrnNFkbARCYgp0J5gCbUFQVMc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14129,38 +13715,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11856" + "11831" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "898e989c-cab2-4c1b-82dd-b80a51152b8f" + "d7e1efa1-609b-4a89-9866-af7568076f49" ], "x-ms-client-request-id": [ - "714f3823-8bfc-4c98-aede-af355a5f6509-2020-05-03 11:20:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6bc2c03b-8ebd-450d-ac8d-cf8b91ab8a66" ], "x-ms-correlation-request-id": [ - "898e989c-cab2-4c1b-82dd-b80a51152b8f" + "d7e1efa1-609b-4a89-9866-af7568076f49" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112008Z:898e989c-cab2-4c1b-82dd-b80a51152b8f" + "CENTRALUSEUAP:20210417T213933Z:d7e1efa1-609b-4a89-9866-af7568076f49" ], "Date": [ - "Sun, 03 May 2020 11:20:08 GMT" + "Sat, 17 Apr 2021 21:39:33 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -14169,29 +13752,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e5ce44e-b188-429c-8189-db735879c698-2020-05-03 11:20:18Z-Ps" + "3fafdb15-a305-4938-bdd0-af3a66793da0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501218958)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106018958)\\/\",\"ClientRequestId\":\"6e5ce44e-b188-429c-8189-db735879c698-2020-05-03 11:20:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"z4s1LzcYKQgv4QB17uO5lcgp/gqhBxuk7vWuZ5ucdtg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691984017)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296784017)\\/\",\"ClientRequestId\":\"f10379ed-cad7-485a-8ce8-1b24aa077ddb-2021-04-17 21:39:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vl11PrDwnLWp3ZVzB3IOrXn1sY6hZJIjzMHkgoJaV50=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14202,38 +13785,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11855" + "11830" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "37e26bd0-3acf-43a8-8fa0-24e87e5cf97e" + "19ba9a7c-e08b-472e-8f78-f78154500913" ], "x-ms-client-request-id": [ - "6e5ce44e-b188-429c-8189-db735879c698-2020-05-03 11:20:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3fafdb15-a305-4938-bdd0-af3a66793da0" ], "x-ms-correlation-request-id": [ - "37e26bd0-3acf-43a8-8fa0-24e87e5cf97e" + "19ba9a7c-e08b-472e-8f78-f78154500913" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112019Z:37e26bd0-3acf-43a8-8fa0-24e87e5cf97e" + "CENTRALUSEUAP:20210417T213944Z:19ba9a7c-e08b-472e-8f78-f78154500913" ], "Date": [ - "Sun, 03 May 2020 11:20:19 GMT" + "Sat, 17 Apr 2021 21:39:43 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -14242,29 +13822,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fcf5a56-85ff-4771-a9f1-3a2069e6ed68-2020-05-03 11:20:29Z-Ps" + "6376dcca-4549-41d7-a2b2-5c664f19731e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501229510)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106029510)\\/\",\"ClientRequestId\":\"0fcf5a56-85ff-4771-a9f1-3a2069e6ed68-2020-05-03 11:20:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VvOHaDjp+W6r2mfhfnqKsYdgaOf8ccgiu/W8wr7PA4Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618691994388)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296794388)\\/\",\"ClientRequestId\":\"2093f232-2c74-4045-a67e-4a43b250298b-2021-04-17 21:39:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6V3iGv1ql20uehKLqyed21dy1zVBQB+fNNaiF/CKFUc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14275,38 +13855,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11854" + "11829" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2243dc58-cb73-47b7-b651-25657ed12fbd" + "dffe20a0-2527-44ab-a345-7b5307362b9f" ], "x-ms-client-request-id": [ - "0fcf5a56-85ff-4771-a9f1-3a2069e6ed68-2020-05-03 11:20:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6376dcca-4549-41d7-a2b2-5c664f19731e" ], "x-ms-correlation-request-id": [ - "2243dc58-cb73-47b7-b651-25657ed12fbd" + "dffe20a0-2527-44ab-a345-7b5307362b9f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112029Z:2243dc58-cb73-47b7-b651-25657ed12fbd" + "CENTRALUSEUAP:20210417T213954Z:dffe20a0-2527-44ab-a345-7b5307362b9f" ], "Date": [ - "Sun, 03 May 2020 11:20:29 GMT" + "Sat, 17 Apr 2021 21:39:53 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -14315,29 +13892,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fc0675b-2e6e-4797-8a3f-5ec4162ef3d2-2020-05-03 11:20:40Z-Ps" + "11ce58b0-46db-4987-9984-f9c7fad16307" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501240085)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106040085)\\/\",\"ClientRequestId\":\"9fc0675b-2e6e-4797-8a3f-5ec4162ef3d2-2020-05-03 11:20:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eNOtC6165dBkQfR4JMf9zdJxXxeP9niPIRjLvEttIBg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692004761)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296804761)\\/\",\"ClientRequestId\":\"921d7cbc-7037-4bf5-810f-2fcb024b935c-2021-04-17 21:40:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"42kQhVM2WancWYLMHT12ng7eJKcYTzYVSKehzq4Fw84=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14348,38 +13925,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11853" + "11828" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f974c408-b2a9-4529-95be-c0485daab1ea" + "15e5c2f0-de7d-4323-a023-1017849e7101" ], "x-ms-client-request-id": [ - "9fc0675b-2e6e-4797-8a3f-5ec4162ef3d2-2020-05-03 11:20:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "11ce58b0-46db-4987-9984-f9c7fad16307" ], "x-ms-correlation-request-id": [ - "f974c408-b2a9-4529-95be-c0485daab1ea" + "15e5c2f0-de7d-4323-a023-1017849e7101" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112040Z:f974c408-b2a9-4529-95be-c0485daab1ea" + "CENTRALUSEUAP:20210417T214004Z:15e5c2f0-de7d-4323-a023-1017849e7101" ], "Date": [ - "Sun, 03 May 2020 11:20:39 GMT" + "Sat, 17 Apr 2021 21:40:04 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -14388,29 +13962,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "faaf9053-84c3-4a19-8cef-1daf4db4921c-2020-05-03 11:20:50Z-Ps" + "34c420ec-a30e-418f-8885-e4caa02b6173" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501250570)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106050570)\\/\",\"ClientRequestId\":\"faaf9053-84c3-4a19-8cef-1daf4db4921c-2020-05-03 11:20:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/fAaFGtPUYY7LxbszNwA3oQYFBiAWIj/js0kk48syFk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692015133)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296815133)\\/\",\"ClientRequestId\":\"c6473bbf-3b21-42d6-8b92-521a00393533-2021-04-17 21:40:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kLlu2woKS7EqVafMCRm5jp8nhDEr4cNb3aXFJ3vqpoM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14421,38 +13995,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11852" + "11827" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "53874120-8190-4733-b725-32ae7cbd6be1" + "447e538d-a311-42bd-a90b-e107010836a5" ], "x-ms-client-request-id": [ - "faaf9053-84c3-4a19-8cef-1daf4db4921c-2020-05-03 11:20:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "34c420ec-a30e-418f-8885-e4caa02b6173" ], "x-ms-correlation-request-id": [ - "53874120-8190-4733-b725-32ae7cbd6be1" + "447e538d-a311-42bd-a90b-e107010836a5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112052Z:53874120-8190-4733-b725-32ae7cbd6be1" + "CENTRALUSEUAP:20210417T214015Z:447e538d-a311-42bd-a90b-e107010836a5" ], "Date": [ - "Sun, 03 May 2020 11:20:51 GMT" + "Sat, 17 Apr 2021 21:40:15 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -14461,29 +14032,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "659cd4aa-a25b-4d00-bde5-b45b9f404729-2020-05-03 11:21:02Z-Ps" + "6456cac8-4ecf-429b-a90d-f6ef72962bcb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501262384)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106062384)\\/\",\"ClientRequestId\":\"659cd4aa-a25b-4d00-bde5-b45b9f404729-2020-05-03 11:21:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"03kfcv+81bW0eJSEMxYaWvbo5QOcla76dt10nRciZBE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692025495)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296825495)\\/\",\"ClientRequestId\":\"c483e06d-0fc1-4494-b337-d338d8d4d674-2021-04-17 21:40:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jbEGKoit2zBsW3vNo1dmQU/Vo9Rau5mtvaIpWDQBdw8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14494,38 +14065,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11851" + "11826" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "32dd6187-eff3-4352-b49e-74de76830ef4" + "4450c551-1ec9-4ba0-8796-96469ad93cbd" ], "x-ms-client-request-id": [ - "659cd4aa-a25b-4d00-bde5-b45b9f404729-2020-05-03 11:21:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6456cac8-4ecf-429b-a90d-f6ef72962bcb" ], "x-ms-correlation-request-id": [ - "32dd6187-eff3-4352-b49e-74de76830ef4" + "4450c551-1ec9-4ba0-8796-96469ad93cbd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112102Z:32dd6187-eff3-4352-b49e-74de76830ef4" + "CENTRALUSEUAP:20210417T214025Z:4450c551-1ec9-4ba0-8796-96469ad93cbd" ], "Date": [ - "Sun, 03 May 2020 11:21:02 GMT" + "Sat, 17 Apr 2021 21:40:24 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -14534,29 +14102,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc86b669-faed-4c11-b964-69d13f1615cf-2020-05-03 11:21:12Z-Ps" + "3b9d56fb-d1dc-427f-8532-cb7bb9be1cb5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501272907)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106072907)\\/\",\"ClientRequestId\":\"dc86b669-faed-4c11-b964-69d13f1615cf-2020-05-03 11:21:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8YFwhcquKjmbEZWmWhCbS5lxNBGKou62SQVeaMsi/W8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692035850)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296835850)\\/\",\"ClientRequestId\":\"21fed5e6-6dd8-45ab-999b-137665b61d0e-2021-04-17 21:40:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JG8spfxjvs/zTptp27O2v0l9u3Ab8Ta1q6QZbu9oaW4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14567,38 +14135,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" + "11825" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e761f8cc-1b6d-4446-978c-9f19019c7777" + "73e50037-5e99-4b2b-ad45-daa5429ec7e8" ], "x-ms-client-request-id": [ - "dc86b669-faed-4c11-b964-69d13f1615cf-2020-05-03 11:21:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3b9d56fb-d1dc-427f-8532-cb7bb9be1cb5" ], "x-ms-correlation-request-id": [ - "e761f8cc-1b6d-4446-978c-9f19019c7777" + "73e50037-5e99-4b2b-ad45-daa5429ec7e8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112113Z:e761f8cc-1b6d-4446-978c-9f19019c7777" + "CENTRALUSEUAP:20210417T214036Z:73e50037-5e99-4b2b-ad45-daa5429ec7e8" ], "Date": [ - "Sun, 03 May 2020 11:21:12 GMT" + "Sat, 17 Apr 2021 21:40:35 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -14607,29 +14172,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bbea16f-a33b-45cb-ae07-ada7716d7faf-2020-05-03 11:21:23Z-Ps" + "dea08480-801d-4551-9730-964471391d42" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501283457)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106083457)\\/\",\"ClientRequestId\":\"5bbea16f-a33b-45cb-ae07-ada7716d7faf-2020-05-03 11:21:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GIXJjJMzLfcLHhmn0M0UKW8uwKatOn/P3TldZhajcdY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692046215)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296846215)\\/\",\"ClientRequestId\":\"c0782fbb-7aa4-4d92-9341-018a4782fde0-2021-04-17 21:40:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5x4BAmuZYBMJoT0ktFs5l2eC8LET1mFBqcIvst8C+/k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14640,38 +14205,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11849" + "11824" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e06312b0-cd91-4260-8bb8-b43e42420b53" + "86f88bd0-eaed-4881-b9fc-48b996a528be" ], "x-ms-client-request-id": [ - "5bbea16f-a33b-45cb-ae07-ada7716d7faf-2020-05-03 11:21:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "dea08480-801d-4551-9730-964471391d42" ], "x-ms-correlation-request-id": [ - "e06312b0-cd91-4260-8bb8-b43e42420b53" + "86f88bd0-eaed-4881-b9fc-48b996a528be" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112123Z:e06312b0-cd91-4260-8bb8-b43e42420b53" + "CENTRALUSEUAP:20210417T214046Z:86f88bd0-eaed-4881-b9fc-48b996a528be" ], "Date": [ - "Sun, 03 May 2020 11:21:23 GMT" + "Sat, 17 Apr 2021 21:40:46 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -14680,29 +14242,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "404ec385-73f3-406c-a182-c484caa3a5e7-2020-05-03 11:21:33Z-Ps" + "baab63e9-ac0f-4390-9544-f41e70dbee9b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501293969)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106093969)\\/\",\"ClientRequestId\":\"404ec385-73f3-406c-a182-c484caa3a5e7-2020-05-03 11:21:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zv9wlwLIL1tX3Vl9CBcakNC+jEerhpN/jSBY/6WE87s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692056584)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296856584)\\/\",\"ClientRequestId\":\"cbde7363-50ae-48b7-bb66-f54aece095d9-2021-04-17 21:40:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8Tz9l9gRBoCQZY0VaVYdERl3eFIhrzM0YOwmeCgf+oE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14713,38 +14275,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11848" + "11823" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b968e374-0d93-46ba-961f-749dae260596" + "71c83eb5-e84e-4dde-bcfb-f9807ce93e39" ], "x-ms-client-request-id": [ - "404ec385-73f3-406c-a182-c484caa3a5e7-2020-05-03 11:21:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "baab63e9-ac0f-4390-9544-f41e70dbee9b" ], "x-ms-correlation-request-id": [ - "b968e374-0d93-46ba-961f-749dae260596" + "71c83eb5-e84e-4dde-bcfb-f9807ce93e39" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112134Z:b968e374-0d93-46ba-961f-749dae260596" + "CENTRALUSEUAP:20210417T214056Z:71c83eb5-e84e-4dde-bcfb-f9807ce93e39" ], "Date": [ - "Sun, 03 May 2020 11:21:33 GMT" + "Sat, 17 Apr 2021 21:40:56 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -14753,29 +14312,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e0b83bc-8172-4048-88ed-d6df64d64eff-2020-05-03 11:21:44Z-Ps" + "bcd84629-7d86-40ba-9b73-11fe0f40bdbd" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501304497)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106104497)\\/\",\"ClientRequestId\":\"6e0b83bc-8172-4048-88ed-d6df64d64eff-2020-05-03 11:21:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"R+Ei7Og+misPMHxymWykyrbpzCHD4K8R6cIK8hSv2NA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692066957)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296866957)\\/\",\"ClientRequestId\":\"483fdea7-ef9c-4da5-9b2d-8e39a8caf8a7-2021-04-17 21:41:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8g3NpfrUADMzkq664SAbhK7A87LQH9CZ2JihpJqRN/U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14786,38 +14345,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11847" + "11822" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "31905b0b-fcb1-413b-8403-b27700d08982" + "39db285e-159b-4e6f-b1d8-73225fb215c2" ], "x-ms-client-request-id": [ - "6e0b83bc-8172-4048-88ed-d6df64d64eff-2020-05-03 11:21:44Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bcd84629-7d86-40ba-9b73-11fe0f40bdbd" ], "x-ms-correlation-request-id": [ - "31905b0b-fcb1-413b-8403-b27700d08982" + "39db285e-159b-4e6f-b1d8-73225fb215c2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112144Z:31905b0b-fcb1-413b-8403-b27700d08982" + "CENTRALUSEUAP:20210417T214107Z:39db285e-159b-4e6f-b1d8-73225fb215c2" ], "Date": [ - "Sun, 03 May 2020 11:21:44 GMT" + "Sat, 17 Apr 2021 21:41:07 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -14826,29 +14382,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d72eb3c2-e8e6-41e8-b2a0-a86a112e6e0d-2020-05-03 11:21:55Z-Ps" + "8515a6ec-bfb4-4e93-8d7e-4308f035c7b6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501315064)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106115064)\\/\",\"ClientRequestId\":\"d72eb3c2-e8e6-41e8-b2a0-a86a112e6e0d-2020-05-03 11:21:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5JjavI5J7u8gi6hcvYPUBpg2EZLqYJWOuZ75D0+fs8Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692077320)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296877320)\\/\",\"ClientRequestId\":\"b4281f4e-344b-4641-87b4-6ab8e33fb481-2021-04-17 21:41:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hIFtbWYlzpKQLpRKakZBM6+M8lWZJ07QtT74mLoxSS8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14859,38 +14415,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11846" + "11821" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "dea1ef3f-1bd7-4c53-a8c3-6e08f668977d" + "b7ab1e9f-6cd4-4941-a0e6-23764befed47" ], "x-ms-client-request-id": [ - "d72eb3c2-e8e6-41e8-b2a0-a86a112e6e0d-2020-05-03 11:21:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8515a6ec-bfb4-4e93-8d7e-4308f035c7b6" ], "x-ms-correlation-request-id": [ - "dea1ef3f-1bd7-4c53-a8c3-6e08f668977d" + "b7ab1e9f-6cd4-4941-a0e6-23764befed47" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112155Z:dea1ef3f-1bd7-4c53-a8c3-6e08f668977d" + "CENTRALUSEUAP:20210417T214117Z:b7ab1e9f-6cd4-4941-a0e6-23764befed47" ], "Date": [ - "Sun, 03 May 2020 11:21:55 GMT" + "Sat, 17 Apr 2021 21:41:17 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -14899,29 +14452,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8c46741-d3d9-4928-9381-cf9b64e94583-2020-05-03 11:22:05Z-Ps" + "a1d875d9-d5b6-4eb5-a68c-ab9d722d54fd" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501325622)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106125622)\\/\",\"ClientRequestId\":\"c8c46741-d3d9-4928-9381-cf9b64e94583-2020-05-03 11:22:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/raaYsLwfr0/jKkd+Mw1zUSmOrHKsdKo4XootOsoOao=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692087703)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296887703)\\/\",\"ClientRequestId\":\"dafc198d-9239-4f20-86b6-bd2ca9042032-2021-04-17 21:41:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1UfZ6HXtgW7ykUNdZKLv4K/eANMreBUFRwuRhgNiaGg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14931,39 +14484,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11820" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e7a239ec-5cd4-40e8-97e6-4911b8e91dc5" + "9fbfd512-dd8c-4b33-b22a-3c2e7c6ebc02" ], "x-ms-client-request-id": [ - "c8c46741-d3d9-4928-9381-cf9b64e94583-2020-05-03 11:22:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11845" + "a1d875d9-d5b6-4eb5-a68c-ab9d722d54fd" ], "x-ms-correlation-request-id": [ - "e7a239ec-5cd4-40e8-97e6-4911b8e91dc5" + "9fbfd512-dd8c-4b33-b22a-3c2e7c6ebc02" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112206Z:e7a239ec-5cd4-40e8-97e6-4911b8e91dc5" + "CENTRALUSEUAP:20210417T214127Z:9fbfd512-dd8c-4b33-b22a-3c2e7c6ebc02" ], "Date": [ - "Sun, 03 May 2020 11:22:05 GMT" + "Sat, 17 Apr 2021 21:41:27 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -14972,29 +14522,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "feb031ad-5163-4eee-ba94-6ffd330214eb-2020-05-03 11:22:16Z-Ps" + "43299edd-580e-4794-88c8-f6876ade62ee" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501336200)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106136200)\\/\",\"ClientRequestId\":\"feb031ad-5163-4eee-ba94-6ffd330214eb-2020-05-03 11:22:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xi+eS9Ar9EV8RibZeoaad27Za/en0Wiu28IK0bUX2e4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692098064)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296898064)\\/\",\"ClientRequestId\":\"d5edc925-6252-4e8d-900d-cd098b39a43e-2021-04-17 21:41:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HSjhs/0hg+3S05E80801UacmMPWaBn47VWHMEOvyCEA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15005,38 +14555,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11844" + "11819" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1a74095c-02b9-43a5-ad84-9729f825d83e" + "c52cf011-126e-4cf8-9015-12f82f723c67" ], "x-ms-client-request-id": [ - "feb031ad-5163-4eee-ba94-6ffd330214eb-2020-05-03 11:22:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "43299edd-580e-4794-88c8-f6876ade62ee" ], "x-ms-correlation-request-id": [ - "1a74095c-02b9-43a5-ad84-9729f825d83e" + "c52cf011-126e-4cf8-9015-12f82f723c67" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112217Z:1a74095c-02b9-43a5-ad84-9729f825d83e" + "CENTRALUSEUAP:20210417T214138Z:c52cf011-126e-4cf8-9015-12f82f723c67" ], "Date": [ - "Sun, 03 May 2020 11:22:16 GMT" + "Sat, 17 Apr 2021 21:41:37 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -15045,29 +14592,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b0d1e51-0ead-471d-b6b4-b927df9355a0-2020-05-03 11:22:27Z-Ps" + "12d9731b-fbce-4740-8ebe-fd6fbf0597ed" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501347862)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106147862)\\/\",\"ClientRequestId\":\"0b0d1e51-0ead-471d-b6b4-b927df9355a0-2020-05-03 11:22:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ivdI5UbYzMm7/vN4g4qKh6z+RnHT6bqWRqg6LDoYX2s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692108466)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296908466)\\/\",\"ClientRequestId\":\"bdacdbde-9149-4f4f-88c4-cb0bc637beab-2021-04-17 21:41:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7fgPym7QpVjZL/e6dQ3+a9h34S5tNBEHYLeFNeDI8E4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15078,38 +14625,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11843" + "11818" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "db3e4f78-a02e-479c-a718-7c96830c72c3" + "a4f96e42-5985-429d-8f62-eef0c70ffbee" ], "x-ms-client-request-id": [ - "0b0d1e51-0ead-471d-b6b4-b927df9355a0-2020-05-03 11:22:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "12d9731b-fbce-4740-8ebe-fd6fbf0597ed" ], "x-ms-correlation-request-id": [ - "db3e4f78-a02e-479c-a718-7c96830c72c3" + "a4f96e42-5985-429d-8f62-eef0c70ffbee" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112228Z:db3e4f78-a02e-479c-a718-7c96830c72c3" + "CENTRALUSEUAP:20210417T214148Z:a4f96e42-5985-429d-8f62-eef0c70ffbee" ], "Date": [ - "Sun, 03 May 2020 11:22:27 GMT" + "Sat, 17 Apr 2021 21:41:47 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -15118,29 +14662,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6d0b3cb-b8e5-43a5-aaaf-cd2a64c570d4-2020-05-03 11:22:38Z-Ps" + "b81b01b4-075d-4375-a145-f09e88e8fcff" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501358376)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106158376)\\/\",\"ClientRequestId\":\"e6d0b3cb-b8e5-43a5-aaaf-cd2a64c570d4-2020-05-03 11:22:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CmtsIpUCaW9zG5Z3NZ+uKfSsuViV8lBrzdxUzc91qRI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692118822)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296918822)\\/\",\"ClientRequestId\":\"5dbc63e7-cd5f-42df-beac-6b7e25405f5c-2021-04-17 21:41:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AV5ixtiPgNsu1Ix2WYBeJcD0BeTvOJ3ZPW65qyzrQc8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15151,38 +14695,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11842" + "11817" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d852311a-7c27-4f42-a841-94cb8264ff7f" + "2fb5762c-c2ef-4260-934a-f53bfabc806c" ], "x-ms-client-request-id": [ - "e6d0b3cb-b8e5-43a5-aaaf-cd2a64c570d4-2020-05-03 11:22:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b81b01b4-075d-4375-a145-f09e88e8fcff" ], "x-ms-correlation-request-id": [ - "d852311a-7c27-4f42-a841-94cb8264ff7f" + "2fb5762c-c2ef-4260-934a-f53bfabc806c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112238Z:d852311a-7c27-4f42-a841-94cb8264ff7f" + "CENTRALUSEUAP:20210417T214159Z:2fb5762c-c2ef-4260-934a-f53bfabc806c" ], "Date": [ - "Sun, 03 May 2020 11:22:38 GMT" + "Sat, 17 Apr 2021 21:41:58 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -15191,29 +14732,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a80b221-10f4-483a-be72-d297bad7b6cf-2020-05-03 11:22:48Z-Ps" + "7f3bab24-d936-4053-b9cc-f496ddf1d6f3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501368874)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106168874)\\/\",\"ClientRequestId\":\"1a80b221-10f4-483a-be72-d297bad7b6cf-2020-05-03 11:22:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mZtDyawq8r/K6QaC5zc+fiQETqLOo8l6M7JvfH3HTMQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692129196)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296929196)\\/\",\"ClientRequestId\":\"492237e9-0896-4851-a8fe-be57ee2cbd93-2021-04-17 21:42:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/642fhrpfZE/MhELfjyyFuXwIRE94F4eJrZtZYTnUtY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15224,38 +14765,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11841" + "11816" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "72aa4b99-216d-4836-827f-4fc01e65258f" + "e06f3ceb-64e8-42af-9658-c11820c1dee1" ], "x-ms-client-request-id": [ - "1a80b221-10f4-483a-be72-d297bad7b6cf-2020-05-03 11:22:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7f3bab24-d936-4053-b9cc-f496ddf1d6f3" ], "x-ms-correlation-request-id": [ - "72aa4b99-216d-4836-827f-4fc01e65258f" + "e06f3ceb-64e8-42af-9658-c11820c1dee1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112250Z:72aa4b99-216d-4836-827f-4fc01e65258f" + "CENTRALUSEUAP:20210417T214209Z:e06f3ceb-64e8-42af-9658-c11820c1dee1" ], "Date": [ - "Sun, 03 May 2020 11:22:49 GMT" + "Sat, 17 Apr 2021 21:42:09 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -15264,29 +14802,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0752e256-cab0-4e19-aa9b-9489ceb75fb8-2020-05-03 11:23:00Z-Ps" + "a2b6cb62-3950-44eb-9853-8fc4c45e68bf" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501380554)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106180554)\\/\",\"ClientRequestId\":\"0752e256-cab0-4e19-aa9b-9489ceb75fb8-2020-05-03 11:23:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5y0eRLjwIyDkJvtsj2IqzANQUYhc1NdZGMbQf5/YZVE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692139579)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296939579)\\/\",\"ClientRequestId\":\"fdcfbded-c308-4113-9c8b-5a9cded94e23-2021-04-17 21:42:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"T96p4ioQ9sgbWeuOH9ecjhb5sLdLDpGms6dwdQs7kqU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15297,38 +14835,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11840" + "11815" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d7c069af-5e5a-4902-9f40-4afe14f8f61c" + "021721b4-d1ed-45b0-bf97-727869e5e96b" ], "x-ms-client-request-id": [ - "0752e256-cab0-4e19-aa9b-9489ceb75fb8-2020-05-03 11:23:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a2b6cb62-3950-44eb-9853-8fc4c45e68bf" ], "x-ms-correlation-request-id": [ - "d7c069af-5e5a-4902-9f40-4afe14f8f61c" + "021721b4-d1ed-45b0-bf97-727869e5e96b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112300Z:d7c069af-5e5a-4902-9f40-4afe14f8f61c" + "CENTRALUSEUAP:20210417T214219Z:021721b4-d1ed-45b0-bf97-727869e5e96b" ], "Date": [ - "Sun, 03 May 2020 11:23:00 GMT" + "Sat, 17 Apr 2021 21:42:19 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -15337,29 +14872,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe5753d2-cd36-4dd5-8bbe-10197d4a078b-2020-05-03 11:23:11Z-Ps" + "fda97c1a-0a3c-4767-a579-d5a66207afcb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501391152)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106191152)\\/\",\"ClientRequestId\":\"fe5753d2-cd36-4dd5-8bbe-10197d4a078b-2020-05-03 11:23:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Rg/NLd1/7mrmR4+EwTF6Z/dgnnxOpJlNKv930VhlreE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692149938)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296949938)\\/\",\"ClientRequestId\":\"19ceb2ef-f864-45b5-87c7-83dca68bb779-2021-04-17 21:42:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NB0PfxbEwADESxmdBd+7cQfTqqcVET8F0hCZ1PR8SbI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15370,38 +14905,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11839" + "11814" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "fc117d14-e7b3-4956-a1d8-700848e8febb" + "1fa99abb-9fea-4907-9891-5a9737895c59" ], "x-ms-client-request-id": [ - "fe5753d2-cd36-4dd5-8bbe-10197d4a078b-2020-05-03 11:23:11Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "fda97c1a-0a3c-4767-a579-d5a66207afcb" ], "x-ms-correlation-request-id": [ - "fc117d14-e7b3-4956-a1d8-700848e8febb" + "1fa99abb-9fea-4907-9891-5a9737895c59" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112311Z:fc117d14-e7b3-4956-a1d8-700848e8febb" + "CENTRALUSEUAP:20210417T214230Z:1fa99abb-9fea-4907-9891-5a9737895c59" ], "Date": [ - "Sun, 03 May 2020 11:23:10 GMT" + "Sat, 17 Apr 2021 21:42:30 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -15410,29 +14942,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c8c771a-8aca-4b1f-8fda-9eb316a90948-2020-05-03 11:23:21Z-Ps" + "b66ad4b4-74f6-4da5-912d-8324e5ba0cd2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501401704)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106201704)\\/\",\"ClientRequestId\":\"2c8c771a-8aca-4b1f-8fda-9eb316a90948-2020-05-03 11:23:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BhHheDmkaIM4mlLzC+n3Nv/IE+pv42EogJhttOKNP5A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692160294)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296960294)\\/\",\"ClientRequestId\":\"1140edf8-d04c-464d-abe4-ca38530bc228-2021-04-17 21:42:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6WGcRdsvUymKVVNW3NJn/XCZdhkkZ+TSKSnDtTP4f3E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15443,38 +14975,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11838" + "11813" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ce906992-c292-468f-9d2c-8d23047af03c" + "164225f2-b1e6-489d-be08-a3a5ad7d7a85" ], "x-ms-client-request-id": [ - "2c8c771a-8aca-4b1f-8fda-9eb316a90948-2020-05-03 11:23:21Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b66ad4b4-74f6-4da5-912d-8324e5ba0cd2" ], "x-ms-correlation-request-id": [ - "ce906992-c292-468f-9d2c-8d23047af03c" + "164225f2-b1e6-489d-be08-a3a5ad7d7a85" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112322Z:ce906992-c292-468f-9d2c-8d23047af03c" + "CENTRALUSEUAP:20210417T214240Z:164225f2-b1e6-489d-be08-a3a5ad7d7a85" ], "Date": [ - "Sun, 03 May 2020 11:23:22 GMT" + "Sat, 17 Apr 2021 21:42:39 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -15483,29 +15012,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b32912dd-677b-42d4-b1fb-4a3e7670512a-2020-05-03 11:23:32Z-Ps" + "1824b56f-f598-42eb-92b2-b84375a41bad" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501412222)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106212222)\\/\",\"ClientRequestId\":\"b32912dd-677b-42d4-b1fb-4a3e7670512a-2020-05-03 11:23:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UiHeq4uofiV/mWAiGqYK8h9ZOXgrSZDdQoxqXwAJLVI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692170657)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296970657)\\/\",\"ClientRequestId\":\"b304ea53-be5b-487f-aa6e-4fbb00865f08-2021-04-17 21:42:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"X46sGVWCsXl0Wep1WiHGpbSA3GdlmO2rgFYc6oYZzCk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15516,38 +15045,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11837" + "11812" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "54e0d783-e4f0-4112-962a-b197895f5b78" + "8100b6fa-772a-4944-bfbb-0dc23ac3f157" ], "x-ms-client-request-id": [ - "b32912dd-677b-42d4-b1fb-4a3e7670512a-2020-05-03 11:23:32Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1824b56f-f598-42eb-92b2-b84375a41bad" ], "x-ms-correlation-request-id": [ - "54e0d783-e4f0-4112-962a-b197895f5b78" + "8100b6fa-772a-4944-bfbb-0dc23ac3f157" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112332Z:54e0d783-e4f0-4112-962a-b197895f5b78" + "CENTRALUSEUAP:20210417T214250Z:8100b6fa-772a-4944-bfbb-0dc23ac3f157" ], "Date": [ - "Sun, 03 May 2020 11:23:32 GMT" + "Sat, 17 Apr 2021 21:42:50 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -15556,29 +15082,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ea22f2f-7694-4fad-94c5-69a486e40883-2020-05-03 11:23:42Z-Ps" + "f6e2d0a5-0dc8-4a8b-8b9b-ba1d65462856" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501422753)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106222753)\\/\",\"ClientRequestId\":\"7ea22f2f-7694-4fad-94c5-69a486e40883-2020-05-03 11:23:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+XuvTZCQajtvbJ2gXdd6oeXqj2cszO1aQd+uNljz7zY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692181017)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296981017)\\/\",\"ClientRequestId\":\"ee8d3a48-c4a6-4ab8-a3b2-57cf717e9e2d-2021-04-17 21:43:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BW1tbzupYXnIVmngte09euhFWppj4XmASOLkY2eeWaw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15589,38 +15115,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11836" + "11811" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ede9cbd8-804a-4c0e-8319-9201175f88f4" + "46cea42e-fb6e-418d-88cd-693ee063a437" ], "x-ms-client-request-id": [ - "7ea22f2f-7694-4fad-94c5-69a486e40883-2020-05-03 11:23:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f6e2d0a5-0dc8-4a8b-8b9b-ba1d65462856" ], "x-ms-correlation-request-id": [ - "ede9cbd8-804a-4c0e-8319-9201175f88f4" + "46cea42e-fb6e-418d-88cd-693ee063a437" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112343Z:ede9cbd8-804a-4c0e-8319-9201175f88f4" + "CENTRALUSEUAP:20210417T214301Z:46cea42e-fb6e-418d-88cd-693ee063a437" ], "Date": [ - "Sun, 03 May 2020 11:23:42 GMT" + "Sat, 17 Apr 2021 21:43:00 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -15629,29 +15152,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d09f82e9-ac0d-4ae9-bff5-7ffd2110dbd2-2020-05-03 11:23:53Z-Ps" + "e4978a1b-e900-4078-a21e-a4c1612b8605" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501433282)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106233282)\\/\",\"ClientRequestId\":\"d09f82e9-ac0d-4ae9-bff5-7ffd2110dbd2-2020-05-03 11:23:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FlW/7acHGJcCm+GbdBVSBGMHbx1xIV6vodVrVyktyls=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692192237)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619296992237)\\/\",\"ClientRequestId\":\"c4b5a663-dd7f-4cdb-8719-7786191da8ce-2021-04-17 21:43:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ehxXxikg4TfcDTJ6Dn9ToY6G2DB/vw5638rfEnzIXQ8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15662,38 +15185,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11835" + "11810" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ab4e62c5-adaa-4421-ba53-aad13504f477" + "433d1b43-d923-41d9-99b9-b6f9b9daa610" ], "x-ms-client-request-id": [ - "d09f82e9-ac0d-4ae9-bff5-7ffd2110dbd2-2020-05-03 11:23:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e4978a1b-e900-4078-a21e-a4c1612b8605" ], "x-ms-correlation-request-id": [ - "ab4e62c5-adaa-4421-ba53-aad13504f477" + "433d1b43-d923-41d9-99b9-b6f9b9daa610" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112354Z:ab4e62c5-adaa-4421-ba53-aad13504f477" + "CENTRALUSEUAP:20210417T214312Z:433d1b43-d923-41d9-99b9-b6f9b9daa610" ], "Date": [ - "Sun, 03 May 2020 11:23:54 GMT" + "Sat, 17 Apr 2021 21:43:11 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -15702,29 +15222,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4623155-887b-4da3-9293-4ae4a8ae4cf8-2020-05-03 11:24:04Z-Ps" + "4a2c7466-a863-4e2d-93bf-49d6d69a965e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501444986)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106244986)\\/\",\"ClientRequestId\":\"c4623155-887b-4da3-9293-4ae4a8ae4cf8-2020-05-03 11:24:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lgauYr7EHkdI3eCwfJTQU8t+t6159teO8aiNz6hlZso=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692202867)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297002867)\\/\",\"ClientRequestId\":\"55c6d023-4e8c-48af-bae8-736105dd8a9e-2021-04-17 21:43:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ALRDKXDFi8gYTxh3TfMCiU/kAbJkMry3UPTyU9Nur1w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15735,38 +15255,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11834" + "11809" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "98cd6a52-f18d-4191-a4eb-d06d26cd370d" + "16ef9348-aaa8-4e2b-8cbd-2da9172a51b3" ], "x-ms-client-request-id": [ - "c4623155-887b-4da3-9293-4ae4a8ae4cf8-2020-05-03 11:24:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4a2c7466-a863-4e2d-93bf-49d6d69a965e" ], "x-ms-correlation-request-id": [ - "98cd6a52-f18d-4191-a4eb-d06d26cd370d" + "16ef9348-aaa8-4e2b-8cbd-2da9172a51b3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112405Z:98cd6a52-f18d-4191-a4eb-d06d26cd370d" + "CENTRALUSEUAP:20210417T214323Z:16ef9348-aaa8-4e2b-8cbd-2da9172a51b3" ], "Date": [ - "Sun, 03 May 2020 11:24:04 GMT" + "Sat, 17 Apr 2021 21:43:23 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -15775,29 +15292,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4444ba3e-165d-4de7-aa65-df76f62e1f93-2020-05-03 11:24:15Z-Ps" + "f0bfc728-2407-47dc-8a77-c468e10377f7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501455512)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106255512)\\/\",\"ClientRequestId\":\"4444ba3e-165d-4de7-aa65-df76f62e1f93-2020-05-03 11:24:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hgiv8WXW7gaXjgmmNnSsDM+rYq3F11AAAvtpvSBIbd8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692213283)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297013283)\\/\",\"ClientRequestId\":\"ad19ca0b-20ec-45f8-a0d7-228136dfd35c-2021-04-17 21:43:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DeDbGeFovd+mszTmPc/+xMKxBQfTeAfY+aK066sJ2Vg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15808,38 +15325,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11833" + "11808" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "eb8bd421-0e0e-4d20-a23a-74beb98b08fe" + "4c4d1550-6158-46bf-a454-7a179cd434a4" ], "x-ms-client-request-id": [ - "4444ba3e-165d-4de7-aa65-df76f62e1f93-2020-05-03 11:24:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f0bfc728-2407-47dc-8a77-c468e10377f7" ], "x-ms-correlation-request-id": [ - "eb8bd421-0e0e-4d20-a23a-74beb98b08fe" + "4c4d1550-6158-46bf-a454-7a179cd434a4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112415Z:eb8bd421-0e0e-4d20-a23a-74beb98b08fe" + "CENTRALUSEUAP:20210417T214333Z:4c4d1550-6158-46bf-a454-7a179cd434a4" ], "Date": [ - "Sun, 03 May 2020 11:24:15 GMT" + "Sat, 17 Apr 2021 21:43:33 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -15848,29 +15362,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9dcfeaa3-6358-48d1-8c0a-319b8df9f43a-2020-05-03 11:24:26Z-Ps" + "cecf85aa-654b-42ba-86c8-da10df3ef9dc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501466064)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106266064)\\/\",\"ClientRequestId\":\"9dcfeaa3-6358-48d1-8c0a-319b8df9f43a-2020-05-03 11:24:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ReEK8zNqstQZEd3V+wPYodTAaXR5dhOgUYeMAzKGuMw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692223636)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297023636)\\/\",\"ClientRequestId\":\"02777d15-8748-435b-bd7e-9401d6038c0d-2021-04-17 21:43:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DTwOPUompkZfOgwGlwWLVRUnUy8xYg5bimsip4VfmnY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15881,38 +15395,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11832" + "11807" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "356e6b7e-81a4-4500-a3d0-a4f556e683a7" + "ac79a615-baea-4617-8b11-43f36e2dfea5" ], "x-ms-client-request-id": [ - "9dcfeaa3-6358-48d1-8c0a-319b8df9f43a-2020-05-03 11:24:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cecf85aa-654b-42ba-86c8-da10df3ef9dc" ], "x-ms-correlation-request-id": [ - "356e6b7e-81a4-4500-a3d0-a4f556e683a7" + "ac79a615-baea-4617-8b11-43f36e2dfea5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112426Z:356e6b7e-81a4-4500-a3d0-a4f556e683a7" + "CENTRALUSEUAP:20210417T214343Z:ac79a615-baea-4617-8b11-43f36e2dfea5" ], "Date": [ - "Sun, 03 May 2020 11:24:26 GMT" + "Sat, 17 Apr 2021 21:43:43 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -15921,29 +15432,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d0701d7-8ea4-47b1-be3c-dbe6533b5b8c-2020-05-03 11:24:36Z-Ps" + "79a7604e-e624-4d8f-9589-076cd6815511" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501476581)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106276581)\\/\",\"ClientRequestId\":\"9d0701d7-8ea4-47b1-be3c-dbe6533b5b8c-2020-05-03 11:24:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"h6tXpDFx9WjBIYDRxoEHQks+O1AAcCTGgf3iz8GN9I8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692234096)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297034096)\\/\",\"ClientRequestId\":\"57882a1a-af96-476d-b08c-bbaf9dfc2f52-2021-04-17 21:43:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ExUq75OTzOZup6+XjBESs+ozL/do6I4KuiqN4G1DwQI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15954,38 +15465,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11831" + "11806" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9b540a40-02d8-4d60-a65d-8508cc105f59" + "7d81c85b-9345-4700-9928-4f1e0e75d924" ], "x-ms-client-request-id": [ - "9d0701d7-8ea4-47b1-be3c-dbe6533b5b8c-2020-05-03 11:24:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "79a7604e-e624-4d8f-9589-076cd6815511" ], "x-ms-correlation-request-id": [ - "9b540a40-02d8-4d60-a65d-8508cc105f59" + "7d81c85b-9345-4700-9928-4f1e0e75d924" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112436Z:9b540a40-02d8-4d60-a65d-8508cc105f59" + "CENTRALUSEUAP:20210417T214354Z:7d81c85b-9345-4700-9928-4f1e0e75d924" ], "Date": [ - "Sun, 03 May 2020 11:24:36 GMT" + "Sat, 17 Apr 2021 21:43:53 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -15994,29 +15502,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4b4ddff-d42a-4ed9-80c3-bf9887cac860-2020-05-03 11:24:47Z-Ps" + "66f702c6-919a-4303-a78a-b03ccc05098f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501487140)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106287140)\\/\",\"ClientRequestId\":\"d4b4ddff-d42a-4ed9-80c3-bf9887cac860-2020-05-03 11:24:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2tCpbBif4O/CnOeXWpNoqR62Ycvx/zRHrj3cApWRV6Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692244462)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297044462)\\/\",\"ClientRequestId\":\"0238cd81-c071-4e7b-90a8-9eb9ff2def6a-2021-04-17 21:44:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UXO5MjzmCqO4vLT6TU7onyNrttolEr9Xx1jZD/Zcch0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16027,38 +15535,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11830" + "11805" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d4dd608c-f800-475e-9e91-4eea0b34fe7c" + "cbd3ec12-18d5-4aa4-a384-f25648244722" ], "x-ms-client-request-id": [ - "d4b4ddff-d42a-4ed9-80c3-bf9887cac860-2020-05-03 11:24:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "66f702c6-919a-4303-a78a-b03ccc05098f" ], "x-ms-correlation-request-id": [ - "d4dd608c-f800-475e-9e91-4eea0b34fe7c" + "cbd3ec12-18d5-4aa4-a384-f25648244722" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112447Z:d4dd608c-f800-475e-9e91-4eea0b34fe7c" + "CENTRALUSEUAP:20210417T214404Z:cbd3ec12-18d5-4aa4-a384-f25648244722" ], "Date": [ - "Sun, 03 May 2020 11:24:46 GMT" + "Sat, 17 Apr 2021 21:44:04 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -16067,29 +15572,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "836ec9fc-49b5-497c-b140-e13509965b76-2020-05-03 11:24:57Z-Ps" + "3e68ceae-894b-4480-b8fa-80771985cc57" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501497710)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106297710)\\/\",\"ClientRequestId\":\"836ec9fc-49b5-497c-b140-e13509965b76-2020-05-03 11:24:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YESjFpbVas1gKjbhdIbkeC6e5/yOoKnnY7rO6fhUQuA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692254968)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297054968)\\/\",\"ClientRequestId\":\"14da273e-e25c-44b9-9cb4-40e5c943bd95-2021-04-17 21:44:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AXKt6jkqBaHYtYaTyz4U+VYnxG07kyUqu6XLv4YiBIA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16100,38 +15605,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11829" + "11804" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f2dc1506-977f-4b8e-b954-270917f5f15f" + "5ed9bd66-9c3e-4384-ab9d-6c50c0a8e0fa" ], "x-ms-client-request-id": [ - "836ec9fc-49b5-497c-b140-e13509965b76-2020-05-03 11:24:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3e68ceae-894b-4480-b8fa-80771985cc57" ], "x-ms-correlation-request-id": [ - "f2dc1506-977f-4b8e-b954-270917f5f15f" + "5ed9bd66-9c3e-4384-ab9d-6c50c0a8e0fa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112458Z:f2dc1506-977f-4b8e-b954-270917f5f15f" + "CENTRALUSEUAP:20210417T214415Z:5ed9bd66-9c3e-4384-ab9d-6c50c0a8e0fa" ], "Date": [ - "Sun, 03 May 2020 11:24:58 GMT" + "Sat, 17 Apr 2021 21:44:14 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -16140,29 +15642,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ada0fb4-2225-44e1-b2c1-519970a31bd5-2020-05-03 11:25:08Z-Ps" + "8bbe61fd-b8c3-46b9-9725-34ed951f4b3a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501508249)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106308249)\\/\",\"ClientRequestId\":\"4ada0fb4-2225-44e1-b2c1-519970a31bd5-2020-05-03 11:25:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IZ75u9yutuux9Qzc7QK2ZB56Le1AuRwTlCvfjhCml84=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692265327)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297065327)\\/\",\"ClientRequestId\":\"4d090260-0c00-4ce8-b067-53b94c02cd76-2021-04-17 21:44:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YNz1IHbhdD4HkeHMHR5D2SguaLENTeHV6Q+v4uEo2kA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16172,39 +15674,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11803" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "10399471-943b-429b-b43f-4a9924cbafac" + "5f05723f-c6e5-4b68-82ca-728214caf51a" ], "x-ms-client-request-id": [ - "4ada0fb4-2225-44e1-b2c1-519970a31bd5-2020-05-03 11:25:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11828" + "8bbe61fd-b8c3-46b9-9725-34ed951f4b3a" ], "x-ms-correlation-request-id": [ - "10399471-943b-429b-b43f-4a9924cbafac" + "5f05723f-c6e5-4b68-82ca-728214caf51a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112508Z:10399471-943b-429b-b43f-4a9924cbafac" + "CENTRALUSEUAP:20210417T214425Z:5f05723f-c6e5-4b68-82ca-728214caf51a" ], "Date": [ - "Sun, 03 May 2020 11:25:08 GMT" + "Sat, 17 Apr 2021 21:44:24 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -16213,29 +15712,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "155dfa07-0401-45c0-a6bc-822c03eb57a5-2020-05-03 11:25:19Z-Ps" + "ce361a51-63a1-496e-849b-2d01949ea3cb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501519008)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106319008)\\/\",\"ClientRequestId\":\"155dfa07-0401-45c0-a6bc-822c03eb57a5-2020-05-03 11:25:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Nmaq35YS4K3QH5oL84RgjNL3iwXWqlpIGZApa0OENgw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692275696)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297075696)\\/\",\"ClientRequestId\":\"eb57578c-8bf4-404f-a6e1-205632bd8642-2021-04-17 21:44:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"on2iUaZSo3KHjAigwCvA71gwUN/crpXveXtM6w9mu4U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16245,39 +15744,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11827" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a3ee4197-ba1c-437b-b5d3-881004e71a0f" + "ed5e3122-edd4-4b7f-b32b-19d67c1d986c" ], "x-ms-client-request-id": [ - "155dfa07-0401-45c0-a6bc-822c03eb57a5-2020-05-03 11:25:19Z-Ps" + "ce361a51-63a1-496e-849b-2d01949ea3cb" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11802" ], "x-ms-correlation-request-id": [ - "a3ee4197-ba1c-437b-b5d3-881004e71a0f" + "ed5e3122-edd4-4b7f-b32b-19d67c1d986c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112520Z:a3ee4197-ba1c-437b-b5d3-881004e71a0f" + "CENTRALUSEUAP:20210417T214435Z:ed5e3122-edd4-4b7f-b32b-19d67c1d986c" ], "Date": [ - "Sun, 03 May 2020 11:25:19 GMT" + "Sat, 17 Apr 2021 21:44:35 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -16286,29 +15782,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1e107e9-dc3c-4b6a-a6f8-116a6b7703ad-2020-05-03 11:25:30Z-Ps" + "16e748ac-f5c1-480c-b791-3523f72445f5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501530584)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106330584)\\/\",\"ClientRequestId\":\"f1e107e9-dc3c-4b6a-a6f8-116a6b7703ad-2020-05-03 11:25:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AhvsTtfoxLnpNza1zwTPSWZiqXnS98TAQYXmdkmziVk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692286134)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297086134)\\/\",\"ClientRequestId\":\"df08a3f0-b41c-4bf3-b134-ae722d3ebb55-2021-04-17 21:44:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BJvxKqpNBv/ATxrCc3Plh7+I1CpPFD7Onv/O/FbUK0I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16319,38 +15815,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11826" + "11801" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "574facf7-eba9-4bdd-8160-ada05d9238ff" + "65976ec1-f8d5-49ef-be0a-02c8aea3a32d" ], "x-ms-client-request-id": [ - "f1e107e9-dc3c-4b6a-a6f8-116a6b7703ad-2020-05-03 11:25:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "16e748ac-f5c1-480c-b791-3523f72445f5" ], "x-ms-correlation-request-id": [ - "574facf7-eba9-4bdd-8160-ada05d9238ff" + "65976ec1-f8d5-49ef-be0a-02c8aea3a32d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112530Z:574facf7-eba9-4bdd-8160-ada05d9238ff" + "CENTRALUSEUAP:20210417T214446Z:65976ec1-f8d5-49ef-be0a-02c8aea3a32d" ], "Date": [ - "Sun, 03 May 2020 11:25:30 GMT" + "Sat, 17 Apr 2021 21:44:46 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -16359,29 +15852,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91a8f3fe-5e9f-4018-b63f-f6d7abe8be1e-2020-05-03 11:25:41Z-Ps" + "baec9de9-1583-4fc2-aee9-071fb2dcffe0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501541079)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106341079)\\/\",\"ClientRequestId\":\"91a8f3fe-5e9f-4018-b63f-f6d7abe8be1e-2020-05-03 11:25:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FqmWtdjPRyw/ds2BStDeSvZFVsnFaxCqX8hp/J8skZM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692296747)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297096747)\\/\",\"ClientRequestId\":\"835c12a3-87e2-4e58-a210-659d4c151741-2021-04-17 21:44:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ww2C+tM5nDHTUDo5cTflBisbvq/McjZn6zx6SfekkhU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16392,38 +15885,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11825" + "11800" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5bee51b9-f6c6-41df-a9ec-69339b31d87b" + "cb4176ae-dd44-476c-b9fb-9861fb5c2f25" ], "x-ms-client-request-id": [ - "91a8f3fe-5e9f-4018-b63f-f6d7abe8be1e-2020-05-03 11:25:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "baec9de9-1583-4fc2-aee9-071fb2dcffe0" ], "x-ms-correlation-request-id": [ - "5bee51b9-f6c6-41df-a9ec-69339b31d87b" + "cb4176ae-dd44-476c-b9fb-9861fb5c2f25" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112541Z:5bee51b9-f6c6-41df-a9ec-69339b31d87b" + "CENTRALUSEUAP:20210417T214456Z:cb4176ae-dd44-476c-b9fb-9861fb5c2f25" ], "Date": [ - "Sun, 03 May 2020 11:25:41 GMT" + "Sat, 17 Apr 2021 21:44:56 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -16432,29 +15922,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "566e506d-0f2b-4453-b89d-7738268220bc-2020-05-03 11:25:51Z-Ps" + "3fc511e7-b4d8-4173-b682-07c7846ab844" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501551567)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106351567)\\/\",\"ClientRequestId\":\"566e506d-0f2b-4453-b89d-7738268220bc-2020-05-03 11:25:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1iQ9jBf8siVyRoZcRcNCdXk2RAI5omINm7jrtM+f2is=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692307119)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297107119)\\/\",\"ClientRequestId\":\"7cdcd56b-66d9-416b-836e-cc0b8e6a0c9a-2021-04-17 21:45:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DDOVcm1xGUiOtHx0smiEDRC19vplL8zorSOCiaKhiCU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16465,38 +15955,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11824" + "11799" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "39a9ae96-6ba1-4361-b824-65ad10d871a6" + "5347c91f-7646-4cd7-96df-c0266ee2816e" ], "x-ms-client-request-id": [ - "566e506d-0f2b-4453-b89d-7738268220bc-2020-05-03 11:25:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3fc511e7-b4d8-4173-b682-07c7846ab844" ], "x-ms-correlation-request-id": [ - "39a9ae96-6ba1-4361-b824-65ad10d871a6" + "5347c91f-7646-4cd7-96df-c0266ee2816e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112551Z:39a9ae96-6ba1-4361-b824-65ad10d871a6" + "CENTRALUSEUAP:20210417T214507Z:5347c91f-7646-4cd7-96df-c0266ee2816e" ], "Date": [ - "Sun, 03 May 2020 11:25:51 GMT" + "Sat, 17 Apr 2021 21:45:06 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -16505,29 +15992,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3492142-be50-4e06-97f8-7a22c30a55b4-2020-05-03 11:26:02Z-Ps" + "1b780958-da28-46ba-8566-3b36f895917b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501562055)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106362055)\\/\",\"ClientRequestId\":\"e3492142-be50-4e06-97f8-7a22c30a55b4-2020-05-03 11:26:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"n7o3jWhsvi3D4g1OTkUanwnqZZDkzLCq1XE3Sr9nncI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692317490)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297117490)\\/\",\"ClientRequestId\":\"83f8c755-f5f1-44d0-b725-be114b382d9a-2021-04-17 21:45:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mD8r8LwhkHpRJB1nX4XiZzDudDDpswAqGj+LMLGxvQo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16538,38 +16025,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11823" + "11798" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3d98179c-d194-4d45-827c-704925f0eb80" + "751b3884-c726-49a7-bae6-3f44f5ba5daf" ], "x-ms-client-request-id": [ - "e3492142-be50-4e06-97f8-7a22c30a55b4-2020-05-03 11:26:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1b780958-da28-46ba-8566-3b36f895917b" ], "x-ms-correlation-request-id": [ - "3d98179c-d194-4d45-827c-704925f0eb80" + "751b3884-c726-49a7-bae6-3f44f5ba5daf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112602Z:3d98179c-d194-4d45-827c-704925f0eb80" + "CENTRALUSEUAP:20210417T214517Z:751b3884-c726-49a7-bae6-3f44f5ba5daf" ], "Date": [ - "Sun, 03 May 2020 11:26:01 GMT" + "Sat, 17 Apr 2021 21:45:17 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -16578,29 +16062,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bca3a9c4-6fde-40b6-af1e-a77d5805dcc1-2020-05-03 11:26:12Z-Ps" + "9c1f9c8b-8975-42f6-b380-ce5f8446b830" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501572640)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106372640)\\/\",\"ClientRequestId\":\"bca3a9c4-6fde-40b6-af1e-a77d5805dcc1-2020-05-03 11:26:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YjsFv/lqX/nsM4vce2dgI6TPwYaU+aWURWNgUP+NZlw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692327859)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297127859)\\/\",\"ClientRequestId\":\"0d16f4ca-32d0-4372-b052-4c12e699b1fa-2021-04-17 21:45:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7D6/tMT7Xm8CTAcQz/OAdxDCxddmk8uAb79Ikuwcbsk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16611,38 +16095,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11822" + "11797" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "92a12721-0ebd-448e-96bc-598f02d8f189" + "6d5ef552-6391-4b43-9829-767132190bc3" ], "x-ms-client-request-id": [ - "bca3a9c4-6fde-40b6-af1e-a77d5805dcc1-2020-05-03 11:26:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9c1f9c8b-8975-42f6-b380-ce5f8446b830" ], "x-ms-correlation-request-id": [ - "92a12721-0ebd-448e-96bc-598f02d8f189" + "6d5ef552-6391-4b43-9829-767132190bc3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112614Z:92a12721-0ebd-448e-96bc-598f02d8f189" + "CENTRALUSEUAP:20210417T214528Z:6d5ef552-6391-4b43-9829-767132190bc3" ], "Date": [ - "Sun, 03 May 2020 11:26:13 GMT" + "Sat, 17 Apr 2021 21:45:28 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -16651,29 +16132,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4dc57ca3-bf63-41e1-9d79-c8908884a380-2020-05-03 11:26:24Z-Ps" + "cd9d52cf-5d85-4327-8cfb-b0b9ebc0e713" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501584368)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106384368)\\/\",\"ClientRequestId\":\"4dc57ca3-bf63-41e1-9d79-c8908884a380-2020-05-03 11:26:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"i1FviyzSIX4oV4vNoVaOH7X1bF7mOELcdZu3qzEsXTw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692338247)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297138247)\\/\",\"ClientRequestId\":\"14f5d952-5069-4b66-a727-6493cf617f89-2021-04-17 21:45:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tm+Uy95HFeRKiYrvhysj++B0u6/byylgU8Sec0E8A7o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16684,38 +16165,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11821" + "11796" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e74db178-0f1b-43d6-a327-c0aa5ab8a6a9" + "1837efeb-6240-4ef4-ab92-b5526cfeb7ac" ], "x-ms-client-request-id": [ - "4dc57ca3-bf63-41e1-9d79-c8908884a380-2020-05-03 11:26:24Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cd9d52cf-5d85-4327-8cfb-b0b9ebc0e713" ], "x-ms-correlation-request-id": [ - "e74db178-0f1b-43d6-a327-c0aa5ab8a6a9" + "1837efeb-6240-4ef4-ab92-b5526cfeb7ac" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112625Z:e74db178-0f1b-43d6-a327-c0aa5ab8a6a9" + "CENTRALUSEUAP:20210417T214538Z:1837efeb-6240-4ef4-ab92-b5526cfeb7ac" ], "Date": [ - "Sun, 03 May 2020 11:26:25 GMT" + "Sat, 17 Apr 2021 21:45:37 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -16724,29 +16202,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a1d7bbd-9e39-4200-a3ee-da2c5766a233-2020-05-03 11:26:36Z-Ps" + "96e7f06d-b257-4657-8e4d-ac91adb872cd" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501596011)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106396011)\\/\",\"ClientRequestId\":\"4a1d7bbd-9e39-4200-a3ee-da2c5766a233-2020-05-03 11:26:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Xti2efDz3sqGbhhIUyqafKfyXdXT2RpBFwEJxGbz3y4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692348641)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297148641)\\/\",\"ClientRequestId\":\"2f49fc4b-9311-4003-b85a-6fd91bf22f55-2021-04-17 21:45:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"24KQpF7trevwt0EwkLYZCPpCUx4GQ7afUnyvYFjKw9o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16757,38 +16235,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11820" + "11795" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "fcdaf5b6-0d85-47cb-bb0a-a193774a0085" + "f417afe2-3465-4941-9cd7-2af2d545fab4" ], "x-ms-client-request-id": [ - "4a1d7bbd-9e39-4200-a3ee-da2c5766a233-2020-05-03 11:26:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "96e7f06d-b257-4657-8e4d-ac91adb872cd" ], "x-ms-correlation-request-id": [ - "fcdaf5b6-0d85-47cb-bb0a-a193774a0085" + "f417afe2-3465-4941-9cd7-2af2d545fab4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112636Z:fcdaf5b6-0d85-47cb-bb0a-a193774a0085" + "CENTRALUSEUAP:20210417T214548Z:f417afe2-3465-4941-9cd7-2af2d545fab4" ], "Date": [ - "Sun, 03 May 2020 11:26:35 GMT" + "Sat, 17 Apr 2021 21:45:48 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -16797,29 +16272,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e31dacd5-11ab-403f-bcde-7c806f80b209-2020-05-03 11:26:46Z-Ps" + "baf3aec6-4e1c-47ee-a0ae-0c8b024432c0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501606509)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106406509)\\/\",\"ClientRequestId\":\"e31dacd5-11ab-403f-bcde-7c806f80b209-2020-05-03 11:26:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8wwlyX8xmrpmiydrx1Qv2KGVBinmvrCSAvd8lS2R2VU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692359014)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297159014)\\/\",\"ClientRequestId\":\"fa15f489-3f53-453c-8ae3-b03f85353e53-2021-04-17 21:45:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wVLHpgjIp5G6lHXl1oJAA1Zs7XjNQjkk3a2qR8oJ1ew=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16830,38 +16305,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11819" + "11794" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d401acef-cd7f-49f5-81b0-50b20ced1dd9" + "17945d6c-ebac-42c1-b578-25e3bbd2cc71" ], "x-ms-client-request-id": [ - "e31dacd5-11ab-403f-bcde-7c806f80b209-2020-05-03 11:26:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "baf3aec6-4e1c-47ee-a0ae-0c8b024432c0" ], "x-ms-correlation-request-id": [ - "d401acef-cd7f-49f5-81b0-50b20ced1dd9" + "17945d6c-ebac-42c1-b578-25e3bbd2cc71" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112646Z:d401acef-cd7f-49f5-81b0-50b20ced1dd9" + "CENTRALUSEUAP:20210417T214559Z:17945d6c-ebac-42c1-b578-25e3bbd2cc71" ], "Date": [ - "Sun, 03 May 2020 11:26:46 GMT" + "Sat, 17 Apr 2021 21:45:59 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -16870,29 +16342,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22f4d9fd-4cad-4bf1-b1e6-590cde275bac-2020-05-03 11:26:57Z-Ps" + "1c7b2daa-5b7b-4b01-ad9c-101a7ff1d15d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501617018)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106417018)\\/\",\"ClientRequestId\":\"22f4d9fd-4cad-4bf1-b1e6-590cde275bac-2020-05-03 11:26:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dX4jBNz0O5kSaTH3z7ARrXPqc2JYxss0eJ3GXEeGra0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692369380)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297169380)\\/\",\"ClientRequestId\":\"d24ba2ac-af18-4ff5-a3cc-7e366d429718-2021-04-17 21:46:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Wg65WU4Bg3UEFhODlO3ZVcSvdNZurdJ9pmiYVR2WwcM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16903,38 +16375,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11818" + "11793" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5ab320db-ba1e-43b8-ab14-bbca756667a1" + "7d570881-566f-48fc-9b5d-aedf5832ca4e" ], "x-ms-client-request-id": [ - "22f4d9fd-4cad-4bf1-b1e6-590cde275bac-2020-05-03 11:26:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1c7b2daa-5b7b-4b01-ad9c-101a7ff1d15d" ], "x-ms-correlation-request-id": [ - "5ab320db-ba1e-43b8-ab14-bbca756667a1" + "7d570881-566f-48fc-9b5d-aedf5832ca4e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112657Z:5ab320db-ba1e-43b8-ab14-bbca756667a1" + "CENTRALUSEUAP:20210417T214609Z:7d570881-566f-48fc-9b5d-aedf5832ca4e" ], "Date": [ - "Sun, 03 May 2020 11:26:57 GMT" + "Sat, 17 Apr 2021 21:46:08 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -16943,29 +16412,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1657cee-a592-49da-8c45-c9e3fe17d6ae-2020-05-03 11:27:07Z-Ps" + "426a199c-761d-4dba-8e23-7f435782bc77" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501627556)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106427556)\\/\",\"ClientRequestId\":\"d1657cee-a592-49da-8c45-c9e3fe17d6ae-2020-05-03 11:27:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ECCV8c+jXqkHtTJCIl+zv2+8PBDwg7W3eh5NdHGB1hc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692379774)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297179774)\\/\",\"ClientRequestId\":\"2303f062-d5d0-455a-b531-1a7ec406a71b-2021-04-17 21:46:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BxWPA3E/ipaGsD09xL+fkV+ZYOnaivPEOl6G8YK5mAQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16976,38 +16445,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11817" + "11792" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "22b76839-8588-4619-9982-6ab382940bcd" + "a3d2dc78-ad1b-43ce-a881-e49eb3fdb566" ], "x-ms-client-request-id": [ - "d1657cee-a592-49da-8c45-c9e3fe17d6ae-2020-05-03 11:27:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "426a199c-761d-4dba-8e23-7f435782bc77" ], "x-ms-correlation-request-id": [ - "22b76839-8588-4619-9982-6ab382940bcd" + "a3d2dc78-ad1b-43ce-a881-e49eb3fdb566" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112707Z:22b76839-8588-4619-9982-6ab382940bcd" + "CENTRALUSEUAP:20210417T214619Z:a3d2dc78-ad1b-43ce-a881-e49eb3fdb566" ], "Date": [ - "Sun, 03 May 2020 11:27:07 GMT" + "Sat, 17 Apr 2021 21:46:19 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -17016,29 +16482,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9d1b56f-474e-4780-bd7f-b3b1bd682c6e-2020-05-03 11:27:18Z-Ps" + "59c4d48d-288d-419f-b0f8-bda7ee5b2ee3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501638092)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106438092)\\/\",\"ClientRequestId\":\"a9d1b56f-474e-4780-bd7f-b3b1bd682c6e-2020-05-03 11:27:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6qjpBc9ipcEgjF66SZE/l7MitkK6YACdD4GBR6BqvYY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692390138)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297190138)\\/\",\"ClientRequestId\":\"c7d8b71a-9254-441f-8513-50a39f5020aa-2021-04-17 21:46:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"noWAH06S4VIRWWCgPx6AcLcCDvAkkC2P/Ao2EqSV9d8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17049,38 +16515,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11816" + "11791" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5c0fe719-df4c-48ae-84e1-5fa0d154611b" + "829895a1-5e09-4933-a5d3-4a7b1ee37ef8" ], "x-ms-client-request-id": [ - "a9d1b56f-474e-4780-bd7f-b3b1bd682c6e-2020-05-03 11:27:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "59c4d48d-288d-419f-b0f8-bda7ee5b2ee3" ], "x-ms-correlation-request-id": [ - "5c0fe719-df4c-48ae-84e1-5fa0d154611b" + "829895a1-5e09-4933-a5d3-4a7b1ee37ef8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112718Z:5c0fe719-df4c-48ae-84e1-5fa0d154611b" + "CENTRALUSEUAP:20210417T214630Z:829895a1-5e09-4933-a5d3-4a7b1ee37ef8" ], "Date": [ - "Sun, 03 May 2020 11:27:18 GMT" + "Sat, 17 Apr 2021 21:46:29 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -17089,29 +16552,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f787755-dfc4-4e0f-b8ea-9bac460908cd-2020-05-03 11:27:28Z-Ps" + "82261931-225c-4d07-952a-e1cf80f39b6c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501648621)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106448621)\\/\",\"ClientRequestId\":\"9f787755-dfc4-4e0f-b8ea-9bac460908cd-2020-05-03 11:27:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bhCJcvscEFJBVW+8jL4uUWxghcnOObRHGLNlVxH1Ubg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692400502)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297200502)\\/\",\"ClientRequestId\":\"cbdb1939-c265-4d7b-b96b-032ce531d6a2-2021-04-17 21:46:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8EyTpKUEYQ7gu5rFm8dZi/7BfR/6aOzdwtjUhMqCcds=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17122,38 +16585,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11815" + "11790" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c09e10c6-880c-4f19-9362-7d5c7be21ddf" + "b5aab6eb-8fc0-4db6-b63a-ab5462a35ba1" ], "x-ms-client-request-id": [ - "9f787755-dfc4-4e0f-b8ea-9bac460908cd-2020-05-03 11:27:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "82261931-225c-4d07-952a-e1cf80f39b6c" ], "x-ms-correlation-request-id": [ - "c09e10c6-880c-4f19-9362-7d5c7be21ddf" + "b5aab6eb-8fc0-4db6-b63a-ab5462a35ba1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112728Z:c09e10c6-880c-4f19-9362-7d5c7be21ddf" + "CENTRALUSEUAP:20210417T214640Z:b5aab6eb-8fc0-4db6-b63a-ab5462a35ba1" ], "Date": [ - "Sun, 03 May 2020 11:27:28 GMT" + "Sat, 17 Apr 2021 21:46:40 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -17162,29 +16622,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "958e3dc1-7615-4120-83e8-733aa93f63aa-2020-05-03 11:27:39Z-Ps" + "ebf360c2-17d2-497a-9bdd-401fcc15af71" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501659119)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106459119)\\/\",\"ClientRequestId\":\"958e3dc1-7615-4120-83e8-733aa93f63aa-2020-05-03 11:27:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ie/4/i5zDf8bAfp65BacUPLMrt3QdZpkuTHbGZlwpuo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692410897)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297210897)\\/\",\"ClientRequestId\":\"a6d09224-09f1-425a-bab2-7eac6529cff7-2021-04-17 21:46:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AGgxhM7VY8R3pDuK+jthhAsqJOPGZfEOTBN+znoiAyQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17194,39 +16654,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11789" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3afda786-cd50-4168-9eef-1a53147af168" + "67480453-39b1-4a97-b72d-c6fb2426856d" ], "x-ms-client-request-id": [ - "958e3dc1-7615-4120-83e8-733aa93f63aa-2020-05-03 11:27:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11814" + "ebf360c2-17d2-497a-9bdd-401fcc15af71" ], "x-ms-correlation-request-id": [ - "3afda786-cd50-4168-9eef-1a53147af168" + "67480453-39b1-4a97-b72d-c6fb2426856d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112739Z:3afda786-cd50-4168-9eef-1a53147af168" + "CENTRALUSEUAP:20210417T214651Z:67480453-39b1-4a97-b72d-c6fb2426856d" ], "Date": [ - "Sun, 03 May 2020 11:27:38 GMT" + "Sat, 17 Apr 2021 21:46:50 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -17235,29 +16692,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50888b41-a223-49c4-a561-68fd22cacd59-2020-05-03 11:27:49Z-Ps" + "b2fb4729-434c-4f1c-aa4f-a73aa91cc58e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501669614)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106469614)\\/\",\"ClientRequestId\":\"50888b41-a223-49c4-a561-68fd22cacd59-2020-05-03 11:27:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"p3nVh/0keA/+7tJ7emYRhtTzqbUb4WCCDln2Byf0Wyg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692421267)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297221267)\\/\",\"ClientRequestId\":\"48081af8-9a72-4596-8269-bd17bfa96615-2021-04-17 21:47:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3zHemt3CpcaXLKTiSSZACjMYcpzuk5U6NwF5KOjOIas=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17268,38 +16725,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11813" + "11788" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8624ccff-4ea5-46ab-a89e-d5c70051e840" + "916d00ac-b00b-4ca0-b7aa-cbac9ca2bb9f" ], "x-ms-client-request-id": [ - "50888b41-a223-49c4-a561-68fd22cacd59-2020-05-03 11:27:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b2fb4729-434c-4f1c-aa4f-a73aa91cc58e" ], "x-ms-correlation-request-id": [ - "8624ccff-4ea5-46ab-a89e-d5c70051e840" + "916d00ac-b00b-4ca0-b7aa-cbac9ca2bb9f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112751Z:8624ccff-4ea5-46ab-a89e-d5c70051e840" + "CENTRALUSEUAP:20210417T214701Z:916d00ac-b00b-4ca0-b7aa-cbac9ca2bb9f" ], "Date": [ - "Sun, 03 May 2020 11:27:50 GMT" + "Sat, 17 Apr 2021 21:47:01 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -17308,29 +16762,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "623ae187-e996-4128-b03c-b4995e01a8bd-2020-05-03 11:28:01Z-Ps" + "8198a2f3-fa20-4323-a76a-07a280c45de1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501681413)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106481413)\\/\",\"ClientRequestId\":\"623ae187-e996-4128-b03c-b4995e01a8bd-2020-05-03 11:28:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EUbiAo45jU7vP5bg60Ee+HKIsiXTbFI8khEAnqEFc1Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692431651)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297231651)\\/\",\"ClientRequestId\":\"8b7cdef9-5a92-4f56-a98a-2dc38166a418-2021-04-17 21:47:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"INLwtIsfMmUzsw7tpw+WDcvkz4BNOq1QecpHQm4chpo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17341,38 +16795,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11812" + "11787" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c5211653-6fae-42f5-bbf5-808231ab4760" + "99a75b9e-2309-4ec9-b96e-ab506afe57ee" ], "x-ms-client-request-id": [ - "623ae187-e996-4128-b03c-b4995e01a8bd-2020-05-03 11:28:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8198a2f3-fa20-4323-a76a-07a280c45de1" ], "x-ms-correlation-request-id": [ - "c5211653-6fae-42f5-bbf5-808231ab4760" + "99a75b9e-2309-4ec9-b96e-ab506afe57ee" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112801Z:c5211653-6fae-42f5-bbf5-808231ab4760" + "CENTRALUSEUAP:20210417T214711Z:99a75b9e-2309-4ec9-b96e-ab506afe57ee" ], "Date": [ - "Sun, 03 May 2020 11:28:01 GMT" + "Sat, 17 Apr 2021 21:47:11 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -17381,29 +16832,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "913d1895-1aa3-462a-aef7-8d37cd41f46a-2020-05-03 11:28:11Z-Ps" + "2fb371fe-faac-4760-82fd-940a9571b6d1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501691913)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106491913)\\/\",\"ClientRequestId\":\"913d1895-1aa3-462a-aef7-8d37cd41f46a-2020-05-03 11:28:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FACmzQ2+/nawaU36H2cqhsYyf746QeBP+ZmlfrMLfXE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692442041)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297242041)\\/\",\"ClientRequestId\":\"66b1c357-86d1-4f0e-845c-1ec077e07cea-2021-04-17 21:47:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bI1eXMNosj1/H6+Pus7Jd+JuH5Vd/0yd3jEX2x05qxU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17414,38 +16865,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11811" + "11786" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9bd5fc11-7f96-49d4-8680-c4aa29cc0624" + "3123be95-d856-474a-9823-3bff3b6ae082" ], "x-ms-client-request-id": [ - "913d1895-1aa3-462a-aef7-8d37cd41f46a-2020-05-03 11:28:11Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2fb371fe-faac-4760-82fd-940a9571b6d1" ], "x-ms-correlation-request-id": [ - "9bd5fc11-7f96-49d4-8680-c4aa29cc0624" + "3123be95-d856-474a-9823-3bff3b6ae082" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112812Z:9bd5fc11-7f96-49d4-8680-c4aa29cc0624" + "CENTRALUSEUAP:20210417T214722Z:3123be95-d856-474a-9823-3bff3b6ae082" ], "Date": [ - "Sun, 03 May 2020 11:28:11 GMT" + "Sat, 17 Apr 2021 21:47:21 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -17454,29 +16902,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ede7264f-92f8-45b2-bcde-e9768f4c81d0-2020-05-03 11:28:22Z-Ps" + "1a611a50-c18b-4773-878e-2da1b57216c3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501702461)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106502461)\\/\",\"ClientRequestId\":\"ede7264f-92f8-45b2-bcde-e9768f4c81d0-2020-05-03 11:28:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UTGPVdcI9eOo0aE09nwwnKhh6bAm3cvOVYD/31u87WQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692452407)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297252407)\\/\",\"ClientRequestId\":\"9f1202f1-9ab6-4cd6-8e5a-31c5cd4bc477-2021-04-17 21:47:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"e/lYph99XoRTt/pt11FMnTJcDOsTN9E+KuM+CMMsMwY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17487,38 +16935,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11810" + "11785" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2a45a59e-a89e-435f-930e-2fcfe7e91f68" + "745db55b-bf44-41d3-959c-64b381bc3d41" ], "x-ms-client-request-id": [ - "ede7264f-92f8-45b2-bcde-e9768f4c81d0-2020-05-03 11:28:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1a611a50-c18b-4773-878e-2da1b57216c3" ], "x-ms-correlation-request-id": [ - "2a45a59e-a89e-435f-930e-2fcfe7e91f68" + "745db55b-bf44-41d3-959c-64b381bc3d41" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112823Z:2a45a59e-a89e-435f-930e-2fcfe7e91f68" + "CENTRALUSEUAP:20210417T214732Z:745db55b-bf44-41d3-959c-64b381bc3d41" ], "Date": [ - "Sun, 03 May 2020 11:28:22 GMT" + "Sat, 17 Apr 2021 21:47:31 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -17527,29 +16972,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3989c215-6ab3-45d8-ac6f-61d062eb5887-2020-05-03 11:28:33Z-Ps" + "2deea4cc-fa68-48a5-abe8-187598101834" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501713250)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106513250)\\/\",\"ClientRequestId\":\"3989c215-6ab3-45d8-ac6f-61d062eb5887-2020-05-03 11:28:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZdoVyhJ2Y3C2EPdmWGihCr+YPbQfZQU31x3wX65kYYg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692462772)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297262772)\\/\",\"ClientRequestId\":\"1d4c6b9d-c287-4750-9cb3-a49f0a3c388a-2021-04-17 21:47:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Q4ZvpYdDDdZlXbGNYpQGolmdrxFih2s3NCR04nzkvvQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17560,38 +17005,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11809" + "11784" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "82b7ba0d-bba5-41e1-8d42-25fd99dfdc72" + "74231eb5-1e8e-46a2-9641-4fc2fba05de3" ], "x-ms-client-request-id": [ - "3989c215-6ab3-45d8-ac6f-61d062eb5887-2020-05-03 11:28:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2deea4cc-fa68-48a5-abe8-187598101834" ], "x-ms-correlation-request-id": [ - "82b7ba0d-bba5-41e1-8d42-25fd99dfdc72" + "74231eb5-1e8e-46a2-9641-4fc2fba05de3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112833Z:82b7ba0d-bba5-41e1-8d42-25fd99dfdc72" + "CENTRALUSEUAP:20210417T214742Z:74231eb5-1e8e-46a2-9641-4fc2fba05de3" ], "Date": [ - "Sun, 03 May 2020 11:28:33 GMT" + "Sat, 17 Apr 2021 21:47:42 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -17600,29 +17042,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d1ae1ed-abbd-420c-82b5-c91eacb956fc-2020-05-03 11:28:43Z-Ps" + "e2d7fdcb-21fa-44ea-96f0-f38b4f3b7620" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501723744)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106523744)\\/\",\"ClientRequestId\":\"6d1ae1ed-abbd-420c-82b5-c91eacb956fc-2020-05-03 11:28:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OL8rwL2nC35Ih6hLTAE6Gty9omhJg/iflUlRqi6nWyc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692473148)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297273148)\\/\",\"ClientRequestId\":\"356a980e-6eb5-4541-8081-effef2b87567-2021-04-17 21:47:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"npkWOkIaDe5IrYjHtFaFE+UuWOYrgT0MtLydhiUpaaE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17633,38 +17075,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11808" + "11783" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bf41e99e-3d61-451b-8b77-ad46600fd333" + "d2a8d288-48ac-44aa-b103-115c5f6fa745" ], "x-ms-client-request-id": [ - "6d1ae1ed-abbd-420c-82b5-c91eacb956fc-2020-05-03 11:28:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e2d7fdcb-21fa-44ea-96f0-f38b4f3b7620" ], "x-ms-correlation-request-id": [ - "bf41e99e-3d61-451b-8b77-ad46600fd333" + "d2a8d288-48ac-44aa-b103-115c5f6fa745" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112844Z:bf41e99e-3d61-451b-8b77-ad46600fd333" + "CENTRALUSEUAP:20210417T214753Z:d2a8d288-48ac-44aa-b103-115c5f6fa745" ], "Date": [ - "Sun, 03 May 2020 11:28:43 GMT" + "Sat, 17 Apr 2021 21:47:52 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -17673,29 +17112,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcdd6515-1dcf-4c6e-b920-ef5ed9f94443-2020-05-03 11:28:54Z-Ps" + "5b537b59-3414-487f-9b42-37b37283b3fd" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501734234)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106534234)\\/\",\"ClientRequestId\":\"fcdd6515-1dcf-4c6e-b920-ef5ed9f94443-2020-05-03 11:28:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"S9l+XEHgcOEsCaxcqJUK+ajfRCMFnqS9sMsE4QpQYZ0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692483539)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297283539)\\/\",\"ClientRequestId\":\"1183e149-854f-4a4f-818b-53c72397a3bb-2021-04-17 21:48:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"98lAb/qMCUhxWVzXDQ34oCjbLQmVwjhZYk2ol+PJZFw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17706,38 +17145,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11807" + "11782" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "53b54382-f2fa-42fc-8de8-62817e50ad4b" + "831521f5-b156-478a-9260-529f3dd47130" ], "x-ms-client-request-id": [ - "fcdd6515-1dcf-4c6e-b920-ef5ed9f94443-2020-05-03 11:28:54Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5b537b59-3414-487f-9b42-37b37283b3fd" ], "x-ms-correlation-request-id": [ - "53b54382-f2fa-42fc-8de8-62817e50ad4b" + "831521f5-b156-478a-9260-529f3dd47130" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112854Z:53b54382-f2fa-42fc-8de8-62817e50ad4b" + "CENTRALUSEUAP:20210417T214803Z:831521f5-b156-478a-9260-529f3dd47130" ], "Date": [ - "Sun, 03 May 2020 11:28:53 GMT" + "Sat, 17 Apr 2021 21:48:03 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -17746,29 +17182,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8f639e0-5609-4429-bed5-5c6a5c236837-2020-05-03 11:29:04Z-Ps" + "7c64d9ee-f135-4fe3-bd2e-861c292c8c7d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501744752)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106544752)\\/\",\"ClientRequestId\":\"a8f639e0-5609-4429-bed5-5c6a5c236837-2020-05-03 11:29:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IcOF6FfXoOpnd0QVJbV/uZqv3baEuDw0R/CwMBLshmA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692493908)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297293908)\\/\",\"ClientRequestId\":\"8d78c69a-43b7-4416-8023-c7b8ffbfb268-2021-04-17 21:48:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/T0YCH2v2WFBwVdH4Ctb6+bzDJaXLlXDk8KADAvRC2Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17778,39 +17214,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11781" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7e6df8bf-b59f-4858-ae0c-377898c2a785" + "63b55f73-7987-409d-900b-ea14e0c87206" ], "x-ms-client-request-id": [ - "a8f639e0-5609-4429-bed5-5c6a5c236837-2020-05-03 11:29:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11806" + "7c64d9ee-f135-4fe3-bd2e-861c292c8c7d" ], "x-ms-correlation-request-id": [ - "7e6df8bf-b59f-4858-ae0c-377898c2a785" + "63b55f73-7987-409d-900b-ea14e0c87206" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112905Z:7e6df8bf-b59f-4858-ae0c-377898c2a785" + "CENTRALUSEUAP:20210417T214814Z:63b55f73-7987-409d-900b-ea14e0c87206" ], "Date": [ - "Sun, 03 May 2020 11:29:04 GMT" + "Sat, 17 Apr 2021 21:48:13 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -17819,29 +17252,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8331d1a2-c7ac-4ca9-9867-8ce36105684b-2020-05-03 11:29:15Z-Ps" + "111f65d6-51c1-49eb-974b-04d6c2363bee" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501755242)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106555242)\\/\",\"ClientRequestId\":\"8331d1a2-c7ac-4ca9-9867-8ce36105684b-2020-05-03 11:29:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HnOM77sj7v/4sH3dQ/oTqJ4WyjilcLO6XYAaXnH1lek=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692504279)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297304279)\\/\",\"ClientRequestId\":\"2d055b59-c695-491d-a179-f68ebe5732d7-2021-04-17 21:48:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IiseBKRNRfTvU8v62hLc456wdOcvvWJq3YsqAbFH3TA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17852,38 +17285,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11805" + "11780" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a9f64ad3-0b3f-4280-a695-e3837e1636c1" + "4df9c5b6-8bf6-4d7c-a0f7-63d26b9157c6" ], "x-ms-client-request-id": [ - "8331d1a2-c7ac-4ca9-9867-8ce36105684b-2020-05-03 11:29:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "111f65d6-51c1-49eb-974b-04d6c2363bee" ], "x-ms-correlation-request-id": [ - "a9f64ad3-0b3f-4280-a695-e3837e1636c1" + "4df9c5b6-8bf6-4d7c-a0f7-63d26b9157c6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112916Z:a9f64ad3-0b3f-4280-a695-e3837e1636c1" + "CENTRALUSEUAP:20210417T214824Z:4df9c5b6-8bf6-4d7c-a0f7-63d26b9157c6" ], "Date": [ - "Sun, 03 May 2020 11:29:16 GMT" + "Sat, 17 Apr 2021 21:48:23 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -17892,29 +17322,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2c023ba-947f-4085-a088-cbd7a9217854-2020-05-03 11:29:26Z-Ps" + "9172f34d-6712-45d8-85f0-af8f65a60c78" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501766980)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106566980)\\/\",\"ClientRequestId\":\"e2c023ba-947f-4085-a088-cbd7a9217854-2020-05-03 11:29:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ePpaWaNXIrn/OahRIp5bvdotdSP4dknd+nqUo0Bn8Nk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692514675)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297314675)\\/\",\"ClientRequestId\":\"353dbec7-a710-454f-ab49-c1c975f27755-2021-04-17 21:48:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FOwqzyi8NJlpxQi1XDrVB+LG9fHKAJPYuJ3UyPsAGas=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17925,38 +17355,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11804" + "11779" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "624725a0-966b-4f0d-8e6a-f4cddaf33746" + "369f0f74-15d6-47ef-a51a-87c77650a125" ], "x-ms-client-request-id": [ - "e2c023ba-947f-4085-a088-cbd7a9217854-2020-05-03 11:29:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9172f34d-6712-45d8-85f0-af8f65a60c78" ], "x-ms-correlation-request-id": [ - "624725a0-966b-4f0d-8e6a-f4cddaf33746" + "369f0f74-15d6-47ef-a51a-87c77650a125" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112927Z:624725a0-966b-4f0d-8e6a-f4cddaf33746" + "CENTRALUSEUAP:20210417T214834Z:369f0f74-15d6-47ef-a51a-87c77650a125" ], "Date": [ - "Sun, 03 May 2020 11:29:26 GMT" + "Sat, 17 Apr 2021 21:48:34 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -17965,29 +17392,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffae86b9-21d6-4bac-a2bb-9da9ecdaa0e2-2020-05-03 11:29:37Z-Ps" + "bbfe1385-bc91-47f5-9792-649a62895109" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501777568)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106577568)\\/\",\"ClientRequestId\":\"ffae86b9-21d6-4bac-a2bb-9da9ecdaa0e2-2020-05-03 11:29:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cxM7w27ffq0Ud+wARAXmsQ/R5JRdfBcETWuKlpR9fqU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692525101)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297325101)\\/\",\"ClientRequestId\":\"c2f5e51c-cb70-4eb1-9933-e2f6e8c59fd9-2021-04-17 21:48:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RqWRsZDVsxKPrQafI0U+tZ+OkQd7lWTSFFiisTL/SVI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17998,38 +17425,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11803" + "11778" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "403f960b-4b82-4c9a-82fc-af4268416845" + "b728047b-7f7d-4983-ada6-9dcf72891fa3" ], "x-ms-client-request-id": [ - "ffae86b9-21d6-4bac-a2bb-9da9ecdaa0e2-2020-05-03 11:29:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bbfe1385-bc91-47f5-9792-649a62895109" ], "x-ms-correlation-request-id": [ - "403f960b-4b82-4c9a-82fc-af4268416845" + "b728047b-7f7d-4983-ada6-9dcf72891fa3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112937Z:403f960b-4b82-4c9a-82fc-af4268416845" + "CENTRALUSEUAP:20210417T214845Z:b728047b-7f7d-4983-ada6-9dcf72891fa3" ], "Date": [ - "Sun, 03 May 2020 11:29:37 GMT" + "Sat, 17 Apr 2021 21:48:44 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -18038,29 +17462,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b0c41f6-dc45-4fab-b7cc-f6d445f82873-2020-05-03 11:29:48Z-Ps" + "3463bbee-cfa4-4989-8fae-da5645a10bfe" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501788069)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106588069)\\/\",\"ClientRequestId\":\"9b0c41f6-dc45-4fab-b7cc-f6d445f82873-2020-05-03 11:29:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"z31WeJN0E8ljPDPUnUCup2HzIUPpT3Kx8SrSpgsoUsw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692535475)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297335475)\\/\",\"ClientRequestId\":\"cf693a3e-b14e-4c29-a80a-594a738e3b50-2021-04-17 21:48:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZchIQmvwklPpQUUjI8KgYw4I7GmbfVqmRMEAJKJDthU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18071,38 +17495,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11802" + "11777" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bd914e7e-c437-42e3-826e-5546c6864a63" + "a898b99d-5500-43e3-97d6-ab223b088cd1" ], "x-ms-client-request-id": [ - "9b0c41f6-dc45-4fab-b7cc-f6d445f82873-2020-05-03 11:29:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3463bbee-cfa4-4989-8fae-da5645a10bfe" ], "x-ms-correlation-request-id": [ - "bd914e7e-c437-42e3-826e-5546c6864a63" + "a898b99d-5500-43e3-97d6-ab223b088cd1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112948Z:bd914e7e-c437-42e3-826e-5546c6864a63" + "CENTRALUSEUAP:20210417T214855Z:a898b99d-5500-43e3-97d6-ab223b088cd1" ], "Date": [ - "Sun, 03 May 2020 11:29:47 GMT" + "Sat, 17 Apr 2021 21:48:55 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -18111,29 +17532,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7989acc9-c7eb-4e6b-9d74-b05ed22f8494-2020-05-03 11:29:58Z-Ps" + "c843367b-82a7-4ea4-9103-3589f6ddba95" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501798611)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106598611)\\/\",\"ClientRequestId\":\"7989acc9-c7eb-4e6b-9d74-b05ed22f8494-2020-05-03 11:29:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Z4l7kegrOOlMMlhYFOMzMKIdgOSmLIhknobRfIX4UdU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692545891)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297345891)\\/\",\"ClientRequestId\":\"6995d568-6c9f-45e6-ad4e-ace430baae44-2021-04-17 21:49:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9100WpTvhLR9RRWPYgtwbPUMJfF4mj8Ze/p0wOzs5QQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18144,38 +17565,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11801" + "11776" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a28d1ff9-7b4a-4271-a6dd-09a153c2a2e4" + "6830b62e-fa3d-4afc-9fbe-abeed393cdf0" ], "x-ms-client-request-id": [ - "7989acc9-c7eb-4e6b-9d74-b05ed22f8494-2020-05-03 11:29:58Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c843367b-82a7-4ea4-9103-3589f6ddba95" ], "x-ms-correlation-request-id": [ - "a28d1ff9-7b4a-4271-a6dd-09a153c2a2e4" + "6830b62e-fa3d-4afc-9fbe-abeed393cdf0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T112958Z:a28d1ff9-7b4a-4271-a6dd-09a153c2a2e4" + "CENTRALUSEUAP:20210417T214906Z:6830b62e-fa3d-4afc-9fbe-abeed393cdf0" ], "Date": [ - "Sun, 03 May 2020 11:29:58 GMT" + "Sat, 17 Apr 2021 21:49:06 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -18184,29 +17602,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93e66b6c-f45d-4d94-ae51-d25d3184f659-2020-05-03 11:30:09Z-Ps" + "84a05009-b5e3-486d-8494-10a55c305d8c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501809148)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106609148)\\/\",\"ClientRequestId\":\"93e66b6c-f45d-4d94-ae51-d25d3184f659-2020-05-03 11:30:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KSyTbxHinLzyp6YqzptTSXhpaMCeDwfJowzH80UtRxs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692556287)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297356287)\\/\",\"ClientRequestId\":\"4eedfb58-bd8d-4244-80ba-ec3a6d47e45c-2021-04-17 21:49:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dnSSEqyTPBjCO+gsuGpFJ7r8LawqelZtZJm1IHY1M8g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18217,38 +17635,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11800" + "11775" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a963c630-7ae4-4386-b264-349861cdadee" + "8d06b864-dfb6-4cbb-a692-34a6a8c31ee2" ], "x-ms-client-request-id": [ - "93e66b6c-f45d-4d94-ae51-d25d3184f659-2020-05-03 11:30:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "84a05009-b5e3-486d-8494-10a55c305d8c" ], "x-ms-correlation-request-id": [ - "a963c630-7ae4-4386-b264-349861cdadee" + "8d06b864-dfb6-4cbb-a692-34a6a8c31ee2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113009Z:a963c630-7ae4-4386-b264-349861cdadee" + "CENTRALUSEUAP:20210417T214916Z:8d06b864-dfb6-4cbb-a692-34a6a8c31ee2" ], "Date": [ - "Sun, 03 May 2020 11:30:09 GMT" + "Sat, 17 Apr 2021 21:49:15 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -18257,29 +17672,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aceabff0-0857-4d09-80d2-a598139724b2-2020-05-03 11:30:19Z-Ps" + "7a2e7530-fcf7-4e5b-afa4-0d1ee3d5dea3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501819676)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106619676)\\/\",\"ClientRequestId\":\"aceabff0-0857-4d09-80d2-a598139724b2-2020-05-03 11:30:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kyPEeRSapgFmhWTdR5sxVpchbTiuNlvBJoJSCUm+hys=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692566665)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297366665)\\/\",\"ClientRequestId\":\"2826c01a-49de-458f-b6aa-984a3ff732a6-2021-04-17 21:49:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fMebpPsBR5NgjkXADZUC3tuXRr43/EaZpyT9ehXBRW4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18290,38 +17705,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11799" + "11774" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b8efcd04-5980-408b-a307-9acb271723a3" + "87becd70-ead1-4a35-a77f-db1a8d3e0d39" ], "x-ms-client-request-id": [ - "aceabff0-0857-4d09-80d2-a598139724b2-2020-05-03 11:30:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7a2e7530-fcf7-4e5b-afa4-0d1ee3d5dea3" ], "x-ms-correlation-request-id": [ - "b8efcd04-5980-408b-a307-9acb271723a3" + "87becd70-ead1-4a35-a77f-db1a8d3e0d39" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113020Z:b8efcd04-5980-408b-a307-9acb271723a3" + "CENTRALUSEUAP:20210417T214926Z:87becd70-ead1-4a35-a77f-db1a8d3e0d39" ], "Date": [ - "Sun, 03 May 2020 11:30:19 GMT" + "Sat, 17 Apr 2021 21:49:25 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -18330,29 +17742,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f438bcbc-6f42-4488-b33b-83dc586e7c71-2020-05-03 11:30:30Z-Ps" + "b57b7d7f-7d58-49bf-9338-ea8fb53e5136" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501830203)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106630203)\\/\",\"ClientRequestId\":\"f438bcbc-6f42-4488-b33b-83dc586e7c71-2020-05-03 11:30:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OLhwyJ6dSu5vgnevyb0czYGmTEWT7hw8w/aDJdEzmNE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692577068)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297377068)\\/\",\"ClientRequestId\":\"043e9a1e-df01-4bc5-9dde-5ae4eaa3ad3d-2021-04-17 21:49:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Hb8srMeFB20UqDGTG3A1R5ecucw6t92o3Kg/teFnZbM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18362,39 +17774,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11773" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bc7aefc2-c8a0-40c8-87e4-0c48cda82b6b" + "fbd3247c-26c2-4d18-9f67-80134b8ff344" ], "x-ms-client-request-id": [ - "f438bcbc-6f42-4488-b33b-83dc586e7c71-2020-05-03 11:30:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11798" + "b57b7d7f-7d58-49bf-9338-ea8fb53e5136" ], "x-ms-correlation-request-id": [ - "bc7aefc2-c8a0-40c8-87e4-0c48cda82b6b" + "fbd3247c-26c2-4d18-9f67-80134b8ff344" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113030Z:bc7aefc2-c8a0-40c8-87e4-0c48cda82b6b" + "CENTRALUSEUAP:20210417T214937Z:fbd3247c-26c2-4d18-9f67-80134b8ff344" ], "Date": [ - "Sun, 03 May 2020 11:30:29 GMT" + "Sat, 17 Apr 2021 21:49:36 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -18403,29 +17812,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45a6f81b-961e-4f9f-8b62-e9d63c889f4d-2020-05-03 11:30:40Z-Ps" + "3aca4404-6600-426e-97d2-69b86a187d81" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501840755)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106640755)\\/\",\"ClientRequestId\":\"45a6f81b-961e-4f9f-8b62-e9d63c889f4d-2020-05-03 11:30:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iA8eEQ4Ejiv+1qVEQViGjYl4hwd5+ssxzRNCPb0I3+c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692587446)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297387446)\\/\",\"ClientRequestId\":\"746ae1ab-176a-49a4-9fab-439688ab683d-2021-04-17 21:49:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qrOUvdPAuvbBl10cGemjDYfHu3aWDMttJYksxB3gIFY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18436,38 +17845,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11797" + "11772" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5dbb967a-3a75-4bdc-9f08-bc5252627972" + "c8c10485-c514-4fb2-81ca-b0bb9d8d2985" ], "x-ms-client-request-id": [ - "45a6f81b-961e-4f9f-8b62-e9d63c889f4d-2020-05-03 11:30:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3aca4404-6600-426e-97d2-69b86a187d81" ], "x-ms-correlation-request-id": [ - "5dbb967a-3a75-4bdc-9f08-bc5252627972" + "c8c10485-c514-4fb2-81ca-b0bb9d8d2985" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113042Z:5dbb967a-3a75-4bdc-9f08-bc5252627972" + "CENTRALUSEUAP:20210417T214948Z:c8c10485-c514-4fb2-81ca-b0bb9d8d2985" ], "Date": [ - "Sun, 03 May 2020 11:30:42 GMT" + "Sat, 17 Apr 2021 21:49:48 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -18476,29 +17882,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "589fdb12-b2b3-47a8-a9ac-97bc7497a3cf-2020-05-03 11:30:52Z-Ps" + "503f6cc3-d9d3-4268-a65a-e49e19b6e6af" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501852313)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106652313)\\/\",\"ClientRequestId\":\"589fdb12-b2b3-47a8-a9ac-97bc7497a3cf-2020-05-03 11:30:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GcRbH1I2ffO3IbdXtqL6/lqqYD9oZhMM/Ua+/Wu25Xw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692598359)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297398359)\\/\",\"ClientRequestId\":\"d06ece07-f0b0-452b-8864-56e56a6b0019-2021-04-17 21:49:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"D9dR6Gb/jTDCP8K/NRdRlUsp+1r1XqBxMJ9QPxbBMio=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18509,38 +17915,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11796" + "11771" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f8528f4f-3fdf-4680-b98b-a19c52fff66a" + "bfbae510-8657-46c7-a8f2-538fee89cc05" ], "x-ms-client-request-id": [ - "589fdb12-b2b3-47a8-a9ac-97bc7497a3cf-2020-05-03 11:30:52Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "503f6cc3-d9d3-4268-a65a-e49e19b6e6af" ], "x-ms-correlation-request-id": [ - "f8528f4f-3fdf-4680-b98b-a19c52fff66a" + "bfbae510-8657-46c7-a8f2-538fee89cc05" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113052Z:f8528f4f-3fdf-4680-b98b-a19c52fff66a" + "CENTRALUSEUAP:20210417T214958Z:bfbae510-8657-46c7-a8f2-538fee89cc05" ], "Date": [ - "Sun, 03 May 2020 11:30:52 GMT" + "Sat, 17 Apr 2021 21:49:58 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -18549,29 +17952,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8bf31ca7-5a2a-4157-a63c-ad2bcb8ab625-2020-05-03 11:31:02Z-Ps" + "a79f9d16-37ee-41b9-81ba-86ee163e20fb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501862803)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106662803)\\/\",\"ClientRequestId\":\"8bf31ca7-5a2a-4157-a63c-ad2bcb8ab625-2020-05-03 11:31:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DD7evFrQfby1CGb5+9cTiwpoVxEwxHCZHTIyAGRAz7w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692608760)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297408760)\\/\",\"ClientRequestId\":\"0ef5296c-a27a-46fb-b581-9d7ebaa0ec99-2021-04-17 21:50:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bo3SebxhlZfcme2Lg6pwzZ9mZXql6M8D3aC03Y6elqk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18581,39 +17984,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11795" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1a812c4e-79f7-4754-9f93-e8101ed7c767" + "e5bbfd92-6401-4434-aa3c-a937d207f75e" ], "x-ms-client-request-id": [ - "8bf31ca7-5a2a-4157-a63c-ad2bcb8ab625-2020-05-03 11:31:02Z-Ps" + "a79f9d16-37ee-41b9-81ba-86ee163e20fb" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11773" ], "x-ms-correlation-request-id": [ - "1a812c4e-79f7-4754-9f93-e8101ed7c767" + "e5bbfd92-6401-4434-aa3c-a937d207f75e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113103Z:1a812c4e-79f7-4754-9f93-e8101ed7c767" + "CENTRALUSEUAP:20210417T215008Z:e5bbfd92-6401-4434-aa3c-a937d207f75e" ], "Date": [ - "Sun, 03 May 2020 11:31:02 GMT" + "Sat, 17 Apr 2021 21:50:08 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -18622,29 +18022,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe5fb42b-f140-4456-b5b6-92d94cb2dc20-2020-05-03 11:31:13Z-Ps" + "8a14f0de-8480-483c-bc30-19d25940e715" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501873327)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106673327)\\/\",\"ClientRequestId\":\"fe5fb42b-f140-4456-b5b6-92d94cb2dc20-2020-05-03 11:31:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GOQs+qzQfkRVbVfDztGSQyZa/Sya8ga+E5csEsvrhQw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692619168)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297419168)\\/\",\"ClientRequestId\":\"2c533817-c50e-4834-bb34-89b2ccb7c383-2021-04-17 21:50:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"M0PORe83PPGCpq4Q5zC+4iVhxFClfUVsMxFvjEvVaBo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18655,38 +18055,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11794" + "11772" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a04d5bcb-98bf-48b4-93b2-ba9435bfe5e3" + "aafb728f-ec39-4a65-a620-7f0d11643d74" ], "x-ms-client-request-id": [ - "fe5fb42b-f140-4456-b5b6-92d94cb2dc20-2020-05-03 11:31:13Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8a14f0de-8480-483c-bc30-19d25940e715" ], "x-ms-correlation-request-id": [ - "a04d5bcb-98bf-48b4-93b2-ba9435bfe5e3" + "aafb728f-ec39-4a65-a620-7f0d11643d74" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113113Z:a04d5bcb-98bf-48b4-93b2-ba9435bfe5e3" + "CENTRALUSEUAP:20210417T215019Z:aafb728f-ec39-4a65-a620-7f0d11643d74" ], "Date": [ - "Sun, 03 May 2020 11:31:13 GMT" + "Sat, 17 Apr 2021 21:50:18 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -18695,29 +18092,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6fa68c2-cf36-45cd-9f28-e9504b3443b2-2020-05-03 11:31:23Z-Ps" + "91e16a69-e4cf-402d-bcb7-c2d68047d1a9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501883853)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106683853)\\/\",\"ClientRequestId\":\"b6fa68c2-cf36-45cd-9f28-e9504b3443b2-2020-05-03 11:31:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"a/Qcz5zLQj9PGCqvoYEthi31mcOby1JoYQ+H/55nNxQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692629646)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297429646)\\/\",\"ClientRequestId\":\"016fe0ae-d33f-48f0-95e3-02f119daa3e6-2021-04-17 21:50:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1v/0/ASmnXSuOHl5WKlytNd4/kxMjTDNCMR8GPNu/LI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18728,38 +18125,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11793" + "11771" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "12a7e17f-05ff-4351-b8c1-a62217100d08" + "43a0f238-23e7-472b-8d10-66102390ab4b" ], "x-ms-client-request-id": [ - "b6fa68c2-cf36-45cd-9f28-e9504b3443b2-2020-05-03 11:31:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "91e16a69-e4cf-402d-bcb7-c2d68047d1a9" ], "x-ms-correlation-request-id": [ - "12a7e17f-05ff-4351-b8c1-a62217100d08" + "43a0f238-23e7-472b-8d10-66102390ab4b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113124Z:12a7e17f-05ff-4351-b8c1-a62217100d08" + "CENTRALUSEUAP:20210417T215032Z:43a0f238-23e7-472b-8d10-66102390ab4b" ], "Date": [ - "Sun, 03 May 2020 11:31:23 GMT" + "Sat, 17 Apr 2021 21:50:32 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -18768,29 +18162,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22f89a39-c8ac-4552-a92f-3c2f213f35f1-2020-05-03 11:31:34Z-Ps" + "9492d00e-eef0-416a-b82d-91a191ac8d9d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501894428)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106694428)\\/\",\"ClientRequestId\":\"22f89a39-c8ac-4552-a92f-3c2f213f35f1-2020-05-03 11:31:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WSFa60ftCyk4fqJaVBzBOwgG9cmAlLzyrufV2atOXrA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692643041)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297443041)\\/\",\"ClientRequestId\":\"f5fb6a0f-8ea6-45bb-ab76-5e32e8ed4dc9-2021-04-17 21:50:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"spANcDDRQTTyrFQvDBbIL4D/T8+UA1El9oDtU6XWISc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18801,38 +18195,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11792" + "11770" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "58a8f763-e315-456b-95a0-b76af317b3b6" + "02cc10a8-d419-41c1-8ee2-f6b1beef5f98" ], "x-ms-client-request-id": [ - "22f89a39-c8ac-4552-a92f-3c2f213f35f1-2020-05-03 11:31:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9492d00e-eef0-416a-b82d-91a191ac8d9d" ], "x-ms-correlation-request-id": [ - "58a8f763-e315-456b-95a0-b76af317b3b6" + "02cc10a8-d419-41c1-8ee2-f6b1beef5f98" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113135Z:58a8f763-e315-456b-95a0-b76af317b3b6" + "CENTRALUSEUAP:20210417T215043Z:02cc10a8-d419-41c1-8ee2-f6b1beef5f98" ], "Date": [ - "Sun, 03 May 2020 11:31:35 GMT" + "Sat, 17 Apr 2021 21:50:42 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -18841,29 +18232,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "869c9ed4-cff8-42ac-a83b-07dcf8577f1f-2020-05-03 11:31:45Z-Ps" + "893d63fd-0f5d-4238-a24e-b8dab1db8abe" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501905365)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106705365)\\/\",\"ClientRequestId\":\"869c9ed4-cff8-42ac-a83b-07dcf8577f1f-2020-05-03 11:31:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gNFPxMCHTJY8UBZv/a4yGIl3/4enT+yI4vsH3Gk+RoY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692653418)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297453418)\\/\",\"ClientRequestId\":\"45448c63-3712-483f-b182-87b2ca909e1b-2021-04-17 21:50:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8mNg/JggacLXkfs0mIdPGnCGXZyZv3DQ2xfaipGC8RU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18874,38 +18265,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11791" + "11769" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a3dd09e4-bfa5-4e82-9440-8f8f40562623" + "d16e8d65-7e15-48ba-bb1a-cfafc4ba5f7a" ], "x-ms-client-request-id": [ - "869c9ed4-cff8-42ac-a83b-07dcf8577f1f-2020-05-03 11:31:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "893d63fd-0f5d-4238-a24e-b8dab1db8abe" ], "x-ms-correlation-request-id": [ - "a3dd09e4-bfa5-4e82-9440-8f8f40562623" + "d16e8d65-7e15-48ba-bb1a-cfafc4ba5f7a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113145Z:a3dd09e4-bfa5-4e82-9440-8f8f40562623" + "CENTRALUSEUAP:20210417T215053Z:d16e8d65-7e15-48ba-bb1a-cfafc4ba5f7a" ], "Date": [ - "Sun, 03 May 2020 11:31:45 GMT" + "Sat, 17 Apr 2021 21:50:53 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -18914,29 +18302,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1dbb40a7-9e99-4a60-bcf5-8d1a8baaa762-2020-05-03 11:31:55Z-Ps" + "70e6b02f-c188-4e89-9a38-56b99b812737" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501915908)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106715908)\\/\",\"ClientRequestId\":\"1dbb40a7-9e99-4a60-bcf5-8d1a8baaa762-2020-05-03 11:31:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1PV1T3MUk1rjg6y3zLKcbGBPgrLTt85Z+yW8yNl+u/4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692663784)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297463784)\\/\",\"ClientRequestId\":\"70af5a3b-cd5d-44cf-8b78-727e3f46d053-2021-04-17 21:51:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NJJ/bzDtD7cBzo47Pb/GSLh6msqor/d9Ir4AmO/Kq+4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18946,39 +18334,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11768" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "67afae1d-be0e-4f83-b896-11efadcac1af" + "1a6b94f5-e692-4ee8-8305-85d28a44aefd" ], "x-ms-client-request-id": [ - "1dbb40a7-9e99-4a60-bcf5-8d1a8baaa762-2020-05-03 11:31:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11790" + "70e6b02f-c188-4e89-9a38-56b99b812737" ], "x-ms-correlation-request-id": [ - "67afae1d-be0e-4f83-b896-11efadcac1af" + "1a6b94f5-e692-4ee8-8305-85d28a44aefd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113156Z:67afae1d-be0e-4f83-b896-11efadcac1af" + "CENTRALUSEUAP:20210417T215103Z:1a6b94f5-e692-4ee8-8305-85d28a44aefd" ], "Date": [ - "Sun, 03 May 2020 11:31:55 GMT" + "Sat, 17 Apr 2021 21:51:03 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -18987,29 +18372,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "842ae6f2-19cd-4f97-8003-8532563d0b46-2020-05-03 11:32:06Z-Ps" + "515a6733-0f4c-437c-a5d5-004e41674557" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501926436)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106726436)\\/\",\"ClientRequestId\":\"842ae6f2-19cd-4f97-8003-8532563d0b46-2020-05-03 11:32:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MZvY04qe1fT7o+NW7oTJHH5jrjwMTszIfjoqnZatDH0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692674142)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297474142)\\/\",\"ClientRequestId\":\"682d53c9-d184-45dd-a35b-7c070f449687-2021-04-17 21:51:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eTqAMb99u6da88pKZ5l1i27a0lfVXBBiSJ5KYaSu0hU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19020,38 +18405,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11789" + "11767" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6689d4b1-02d2-486e-a257-cc05676a4039" + "a714c7ed-8918-4237-a11f-27fff3e77927" ], "x-ms-client-request-id": [ - "842ae6f2-19cd-4f97-8003-8532563d0b46-2020-05-03 11:32:06Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "515a6733-0f4c-437c-a5d5-004e41674557" ], "x-ms-correlation-request-id": [ - "6689d4b1-02d2-486e-a257-cc05676a4039" + "a714c7ed-8918-4237-a11f-27fff3e77927" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113207Z:6689d4b1-02d2-486e-a257-cc05676a4039" + "CENTRALUSEUAP:20210417T215114Z:a714c7ed-8918-4237-a11f-27fff3e77927" ], "Date": [ - "Sun, 03 May 2020 11:32:07 GMT" + "Sat, 17 Apr 2021 21:51:14 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -19060,29 +18442,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb4649a6-0ca2-4e06-a461-f48316998a1f-2020-05-03 11:32:18Z-Ps" + "bb082d5c-d371-4172-b7ae-d1d9e089de74" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501938080)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106738080)\\/\",\"ClientRequestId\":\"cb4649a6-0ca2-4e06-a461-f48316998a1f-2020-05-03 11:32:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yljIratbAnVDe8s3Xy+rnXLrbxzbc+9FVQ3xkcyG9zo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692684589)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297484589)\\/\",\"ClientRequestId\":\"bfeff9b2-702b-49ee-a944-cd5273477030-2021-04-17 21:51:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2uzfKCLS4ikie7v8mSPedrEj+waQi7dSl0SmDbalOAQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19093,38 +18475,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11788" + "11766" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "756e2e91-8a4e-4c0c-b44c-44b0730c0de7" + "71e8fcb6-e3ab-40b7-945e-b3d003c5e95e" ], "x-ms-client-request-id": [ - "cb4649a6-0ca2-4e06-a461-f48316998a1f-2020-05-03 11:32:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bb082d5c-d371-4172-b7ae-d1d9e089de74" ], "x-ms-correlation-request-id": [ - "756e2e91-8a4e-4c0c-b44c-44b0730c0de7" + "71e8fcb6-e3ab-40b7-945e-b3d003c5e95e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113218Z:756e2e91-8a4e-4c0c-b44c-44b0730c0de7" + "CENTRALUSEUAP:20210417T215124Z:71e8fcb6-e3ab-40b7-945e-b3d003c5e95e" ], "Date": [ - "Sun, 03 May 2020 11:32:18 GMT" + "Sat, 17 Apr 2021 21:51:24 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -19133,29 +18512,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c6ce9a0-c706-41e0-8bd2-b8dfe578378f-2020-05-03 11:32:28Z-Ps" + "852fdcca-1b5f-45c3-8529-f78bc1f1ef16" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501948604)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106748604)\\/\",\"ClientRequestId\":\"0c6ce9a0-c706-41e0-8bd2-b8dfe578378f-2020-05-03 11:32:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sdmd+/yXl1XSIGekhBKLEg1fGkffgGlt9d1B507HOvk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692694954)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297494954)\\/\",\"ClientRequestId\":\"d292ad9a-a57e-4d75-9fda-29cf755c04c5-2021-04-17 21:51:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bfofBXt/oc4Dw373WKW9tQcrAKpwgJZC4Rc2Q7AV8MY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19166,38 +18545,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11787" + "11765" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1f1ac815-83b0-40b5-a00e-62811fec952f" + "cec2262c-23e3-43bc-b292-d79a105caae0" ], "x-ms-client-request-id": [ - "0c6ce9a0-c706-41e0-8bd2-b8dfe578378f-2020-05-03 11:32:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "852fdcca-1b5f-45c3-8529-f78bc1f1ef16" ], "x-ms-correlation-request-id": [ - "1f1ac815-83b0-40b5-a00e-62811fec952f" + "cec2262c-23e3-43bc-b292-d79a105caae0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113228Z:1f1ac815-83b0-40b5-a00e-62811fec952f" + "CENTRALUSEUAP:20210417T215135Z:cec2262c-23e3-43bc-b292-d79a105caae0" ], "Date": [ - "Sun, 03 May 2020 11:32:28 GMT" + "Sat, 17 Apr 2021 21:51:35 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -19206,29 +18582,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5765a8f8-25fb-47b8-95a0-8df48a20dbfd-2020-05-03 11:32:39Z-Ps" + "752162d7-97e6-46f9-98c9-8850885706f9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501959104)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106759104)\\/\",\"ClientRequestId\":\"5765a8f8-25fb-47b8-95a0-8df48a20dbfd-2020-05-03 11:32:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PV3S1KsbGuwUQOnOlQP9gM9M47uSTImVVhMQoR9tVjg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692705346)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297505346)\\/\",\"ClientRequestId\":\"c3bcd3c5-5a5c-4725-b969-bfb0a59acaaf-2021-04-17 21:51:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bLmZlPBymoeol6FreL41NIzhR6HAyATi6LX40DjOGVU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19239,38 +18615,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11786" + "11764" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5e02f0ec-99bd-4b38-8ffe-b1ac622eaba7" + "3913ec4c-d24d-4172-af93-728ad9ef0e8e" ], "x-ms-client-request-id": [ - "5765a8f8-25fb-47b8-95a0-8df48a20dbfd-2020-05-03 11:32:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "752162d7-97e6-46f9-98c9-8850885706f9" ], "x-ms-correlation-request-id": [ - "5e02f0ec-99bd-4b38-8ffe-b1ac622eaba7" + "3913ec4c-d24d-4172-af93-728ad9ef0e8e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113239Z:5e02f0ec-99bd-4b38-8ffe-b1ac622eaba7" + "CENTRALUSEUAP:20210417T215145Z:3913ec4c-d24d-4172-af93-728ad9ef0e8e" ], "Date": [ - "Sun, 03 May 2020 11:32:38 GMT" + "Sat, 17 Apr 2021 21:51:45 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -19279,29 +18652,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78e5fa07-9c1f-481c-b402-10acc89d3af9-2020-05-03 11:32:49Z-Ps" + "bcdedc0f-c84b-468b-b62d-76fbc34bcce7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501969669)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106769669)\\/\",\"ClientRequestId\":\"78e5fa07-9c1f-481c-b402-10acc89d3af9-2020-05-03 11:32:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6ekmQtm6geOSK8Gk19ymYEFysw33FDxMNQSQEazvUZE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692715704)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297515704)\\/\",\"ClientRequestId\":\"00b4340b-5af6-4f06-9f07-7fa754a60644-2021-04-17 21:51:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"D2WIvCY8b2PNSn8Wer6dUGx1tFTz5LYOGlKAYfeO7kc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19312,38 +18685,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11785" + "11763" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e86dc7bd-a759-4f7e-9b23-ee71d15c8154" + "d513215d-bd26-495f-a8f7-57f781715432" ], "x-ms-client-request-id": [ - "78e5fa07-9c1f-481c-b402-10acc89d3af9-2020-05-03 11:32:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bcdedc0f-c84b-468b-b62d-76fbc34bcce7" ], "x-ms-correlation-request-id": [ - "e86dc7bd-a759-4f7e-9b23-ee71d15c8154" + "d513215d-bd26-495f-a8f7-57f781715432" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113250Z:e86dc7bd-a759-4f7e-9b23-ee71d15c8154" + "CENTRALUSEUAP:20210417T215155Z:d513215d-bd26-495f-a8f7-57f781715432" ], "Date": [ - "Sun, 03 May 2020 11:32:49 GMT" + "Sat, 17 Apr 2021 21:51:55 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -19352,29 +18722,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2698c65e-7ad2-43ce-8845-e15c706d056f-2020-05-03 11:33:00Z-Ps" + "65c0f79c-812f-44ae-9873-ccd8b1736b64" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501980321)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106780321)\\/\",\"ClientRequestId\":\"2698c65e-7ad2-43ce-8845-e15c706d056f-2020-05-03 11:33:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bViBQTej67HFDEFtX7Tc9RewHwp3Lqia5jZSZLtlUzs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692726074)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297526074)\\/\",\"ClientRequestId\":\"e54ff65f-02c6-4cfa-98a1-5b547c9359c6-2021-04-17 21:52:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SyP3Lu/AdfSJfx3mfI1WjZilLU6capFTKB4JbdKjL1U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19385,38 +18755,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11784" + "11762" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c640b7d1-c6b2-4f71-a150-4002a8a05291" + "1d380ca7-89d7-4a9c-8b73-8a6ffefeca6d" ], "x-ms-client-request-id": [ - "2698c65e-7ad2-43ce-8845-e15c706d056f-2020-05-03 11:33:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "65c0f79c-812f-44ae-9873-ccd8b1736b64" ], "x-ms-correlation-request-id": [ - "c640b7d1-c6b2-4f71-a150-4002a8a05291" + "1d380ca7-89d7-4a9c-8b73-8a6ffefeca6d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113300Z:c640b7d1-c6b2-4f71-a150-4002a8a05291" + "CENTRALUSEUAP:20210417T215206Z:1d380ca7-89d7-4a9c-8b73-8a6ffefeca6d" ], "Date": [ - "Sun, 03 May 2020 11:33:00 GMT" + "Sat, 17 Apr 2021 21:52:06 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -19425,29 +18792,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04537dd4-b6db-4692-a6aa-2a9846aa0af9-2020-05-03 11:33:11Z-Ps" + "69aeef6f-8926-4643-8c2c-7f5af11cce25" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588501991174)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106791174)\\/\",\"ClientRequestId\":\"04537dd4-b6db-4692-a6aa-2a9846aa0af9-2020-05-03 11:33:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"U6hOGPLpXqlpDso4E3RhBym8+JTDYngzU4BOKm+gG58=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692736444)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297536444)\\/\",\"ClientRequestId\":\"9c56bb27-335a-41e6-a06d-7296d19a87a9-2021-04-17 21:52:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GMdLsYpznQ26f3ju5bDj5ZKR0w9ReXMZKGCBxGcVb5c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19458,38 +18825,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11783" + "11761" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c82985d5-1d1c-40df-a997-0a3a0731ce72" + "df35469e-dbf0-439c-9b9b-d9922aef3432" ], "x-ms-client-request-id": [ - "04537dd4-b6db-4692-a6aa-2a9846aa0af9-2020-05-03 11:33:11Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "69aeef6f-8926-4643-8c2c-7f5af11cce25" ], "x-ms-correlation-request-id": [ - "c82985d5-1d1c-40df-a997-0a3a0731ce72" + "df35469e-dbf0-439c-9b9b-d9922aef3432" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113311Z:c82985d5-1d1c-40df-a997-0a3a0731ce72" + "CENTRALUSEUAP:20210417T215216Z:df35469e-dbf0-439c-9b9b-d9922aef3432" ], "Date": [ - "Sun, 03 May 2020 11:33:10 GMT" + "Sat, 17 Apr 2021 21:52:16 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -19498,29 +18862,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2ef1d83-18f7-4ef3-83a2-1d964e01ee1b-2020-05-03 11:33:21Z-Ps" + "b0aac733-ca78-4a55-9626-570a4d411958" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502001706)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106801706)\\/\",\"ClientRequestId\":\"b2ef1d83-18f7-4ef3-83a2-1d964e01ee1b-2020-05-03 11:33:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Im2lX+m7K1i7iutokV1tOCpCmXqfsKPZVOJbXH+UqVc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692746800)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297546800)\\/\",\"ClientRequestId\":\"a61bc5dc-aadc-42c1-91bf-48655b29821c-2021-04-17 21:52:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PBq4ckHkyudZmAT+ciPnRgUkHfRjAmL1pGCz/k/TG6k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19530,39 +18894,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11760" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "016ca4b6-32d7-4722-9eea-b37e708cb5f0" + "009505d3-f743-4e4b-bbf5-bd069e813bc9" ], "x-ms-client-request-id": [ - "b2ef1d83-18f7-4ef3-83a2-1d964e01ee1b-2020-05-03 11:33:21Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11782" + "b0aac733-ca78-4a55-9626-570a4d411958" ], "x-ms-correlation-request-id": [ - "016ca4b6-32d7-4722-9eea-b37e708cb5f0" + "009505d3-f743-4e4b-bbf5-bd069e813bc9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113322Z:016ca4b6-32d7-4722-9eea-b37e708cb5f0" + "CENTRALUSEUAP:20210417T215226Z:009505d3-f743-4e4b-bbf5-bd069e813bc9" ], "Date": [ - "Sun, 03 May 2020 11:33:21 GMT" + "Sat, 17 Apr 2021 21:52:26 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -19571,29 +18932,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28a0132e-f12d-4ca2-ab45-c6bf19fcb7a4-2020-05-03 11:33:32Z-Ps" + "0b8a48b0-ebb5-4d3b-b97e-c6442637b2c3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502012257)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106812257)\\/\",\"ClientRequestId\":\"28a0132e-f12d-4ca2-ab45-c6bf19fcb7a4-2020-05-03 11:33:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HRMKSX9kMyhTwBigA5e5hjjLZ7Ht69o5UXaHHrihdww=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692757182)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297557182)\\/\",\"ClientRequestId\":\"6132c89a-b2f2-4661-80ef-600c123c8374-2021-04-17 21:52:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cTNF0TvPy+gGPPO5Zhzj4uAiRrk0dgLohsuJN1RR4yU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19604,38 +18965,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11781" + "11759" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "06cdda9c-740a-4f96-9035-09e7473abc48" + "0c51a900-1f03-445c-a7c5-7b50704da6c7" ], "x-ms-client-request-id": [ - "28a0132e-f12d-4ca2-ab45-c6bf19fcb7a4-2020-05-03 11:33:32Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0b8a48b0-ebb5-4d3b-b97e-c6442637b2c3" ], "x-ms-correlation-request-id": [ - "06cdda9c-740a-4f96-9035-09e7473abc48" + "0c51a900-1f03-445c-a7c5-7b50704da6c7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113333Z:06cdda9c-740a-4f96-9035-09e7473abc48" + "CENTRALUSEUAP:20210417T215237Z:0c51a900-1f03-445c-a7c5-7b50704da6c7" ], "Date": [ - "Sun, 03 May 2020 11:33:33 GMT" + "Sat, 17 Apr 2021 21:52:36 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -19644,29 +19002,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "549dd9d2-33f3-41d5-b08c-1e0595203187-2020-05-03 11:33:43Z-Ps" + "74346daa-7258-4875-b6a2-46093ead3f1f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502023881)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106823881)\\/\",\"ClientRequestId\":\"549dd9d2-33f3-41d5-b08c-1e0595203187-2020-05-03 11:33:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QJTN0LsnGVKjU1ksCGF49MkzgEhLDaVs4C+22v9MnWA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692767538)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297567538)\\/\",\"ClientRequestId\":\"89438215-0d18-4c03-bf8c-29cca16959fd-2021-04-17 21:52:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iJM5LPKwz+NQmHYkivWHLMM0cG9uCqwXuZBP2i9RBmE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19677,38 +19035,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11780" + "11758" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e30b2f92-1683-4656-b40e-aad8b1c70398" + "4065679d-1858-4987-84a4-834501a75270" ], "x-ms-client-request-id": [ - "549dd9d2-33f3-41d5-b08c-1e0595203187-2020-05-03 11:33:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "74346daa-7258-4875-b6a2-46093ead3f1f" ], "x-ms-correlation-request-id": [ - "e30b2f92-1683-4656-b40e-aad8b1c70398" + "4065679d-1858-4987-84a4-834501a75270" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113344Z:e30b2f92-1683-4656-b40e-aad8b1c70398" + "CENTRALUSEUAP:20210417T215247Z:4065679d-1858-4987-84a4-834501a75270" ], "Date": [ - "Sun, 03 May 2020 11:33:43 GMT" + "Sat, 17 Apr 2021 21:52:47 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -19717,29 +19072,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55474132-3afe-4b0e-a2cf-23f5e133448c-2020-05-03 11:33:54Z-Ps" + "fb600bf9-b314-4a15-8b16-954ec3d40115" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502034397)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106834397)\\/\",\"ClientRequestId\":\"55474132-3afe-4b0e-a2cf-23f5e133448c-2020-05-03 11:33:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"N0tFnypOUxKGea3YppSXDZZ0HR9x8LiIesAIhf3wK1Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692777908)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297577908)\\/\",\"ClientRequestId\":\"afbca718-033d-43f2-b6d2-93721afb3124-2021-04-17 21:52:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"L7YJwofc8+PYXUVg4O6g5qzZ0JqZmSPSFNE0DmBG14g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19750,38 +19105,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11779" + "11757" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2ca8d4f8-b493-481c-8553-0b69931a443e" + "3401fad4-1386-43c6-8689-df5104f15328" ], "x-ms-client-request-id": [ - "55474132-3afe-4b0e-a2cf-23f5e133448c-2020-05-03 11:33:54Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "fb600bf9-b314-4a15-8b16-954ec3d40115" ], "x-ms-correlation-request-id": [ - "2ca8d4f8-b493-481c-8553-0b69931a443e" + "3401fad4-1386-43c6-8689-df5104f15328" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113354Z:2ca8d4f8-b493-481c-8553-0b69931a443e" + "CENTRALUSEUAP:20210417T215258Z:3401fad4-1386-43c6-8689-df5104f15328" ], "Date": [ - "Sun, 03 May 2020 11:33:53 GMT" + "Sat, 17 Apr 2021 21:52:58 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -19790,29 +19142,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1aedde87-90be-4e53-a548-ec268dc02fcd-2020-05-03 11:34:04Z-Ps" + "63ac4112-45a7-47e8-bb46-62d93faad5e7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502044908)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106844908)\\/\",\"ClientRequestId\":\"1aedde87-90be-4e53-a548-ec268dc02fcd-2020-05-03 11:34:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4M12WcijpWT7eIiV29oEWjwbzWJJ7sbENzVyx2ST+xc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692788276)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297588276)\\/\",\"ClientRequestId\":\"a50ef8c8-c33b-41d7-a721-0f9a0b9a9668-2021-04-17 21:53:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AzrfjdmPgfIsR2h1AiU7B+JyWetoylefpmkn0tMfEZg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19823,38 +19175,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11778" + "11756" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a3070d62-ab50-4529-ac19-d6536288b085" + "5f532528-1bec-4d7b-b402-ab1ae87320f4" ], "x-ms-client-request-id": [ - "1aedde87-90be-4e53-a548-ec268dc02fcd-2020-05-03 11:34:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "63ac4112-45a7-47e8-bb46-62d93faad5e7" ], "x-ms-correlation-request-id": [ - "a3070d62-ab50-4529-ac19-d6536288b085" + "5f532528-1bec-4d7b-b402-ab1ae87320f4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113405Z:a3070d62-ab50-4529-ac19-d6536288b085" + "CENTRALUSEUAP:20210417T215308Z:5f532528-1bec-4d7b-b402-ab1ae87320f4" ], "Date": [ - "Sun, 03 May 2020 11:34:05 GMT" + "Sat, 17 Apr 2021 21:53:07 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -19863,29 +19212,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6654b1d8-902c-4cde-bd41-019d26edde65-2020-05-03 11:34:15Z-Ps" + "aabfbe41-85aa-4421-b17b-be426dd9c717" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502055415)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106855415)\\/\",\"ClientRequestId\":\"6654b1d8-902c-4cde-bd41-019d26edde65-2020-05-03 11:34:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DjR5uYBuJHxhJNISTxI95TF4ZmcfxZorJunXzkyb+hE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692798731)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297598731)\\/\",\"ClientRequestId\":\"15382451-9a56-4f23-bb7c-a9f37081a15c-2021-04-17 21:53:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ScT1vuOUE+XwJlj/ic9v6uwhUdI8ctlqtBAJcCqXczk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19896,38 +19245,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11777" + "11755" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d1e11d15-588f-4d5d-b71f-5deba6ec8b9e" + "93b5af1b-b75c-4caa-b1d0-1759f3b39e1c" ], "x-ms-client-request-id": [ - "6654b1d8-902c-4cde-bd41-019d26edde65-2020-05-03 11:34:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "aabfbe41-85aa-4421-b17b-be426dd9c717" ], "x-ms-correlation-request-id": [ - "d1e11d15-588f-4d5d-b71f-5deba6ec8b9e" + "93b5af1b-b75c-4caa-b1d0-1759f3b39e1c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113415Z:d1e11d15-588f-4d5d-b71f-5deba6ec8b9e" + "CENTRALUSEUAP:20210417T215318Z:93b5af1b-b75c-4caa-b1d0-1759f3b39e1c" ], "Date": [ - "Sun, 03 May 2020 11:34:15 GMT" + "Sat, 17 Apr 2021 21:53:18 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -19936,29 +19282,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9db396b7-a505-4118-8404-481fc984a920-2020-05-03 11:34:25Z-Ps" + "2648b354-f884-419a-8a5a-1a5bfb6ff700" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502065924)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106865924)\\/\",\"ClientRequestId\":\"9db396b7-a505-4118-8404-481fc984a920-2020-05-03 11:34:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rmIEsy+JQxehVjSiGSZtw8a+z4K4A9hXAizrDfZWMmI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692809089)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297609089)\\/\",\"ClientRequestId\":\"c844e923-c1d7-4af6-b452-e635a670d411-2021-04-17 21:53:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qVMaLa1brjz6jM4kkMTPlmFrs4shRme/tHmEG7tT4hs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19969,38 +19315,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11776" + "11754" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "73a13a8f-d440-40cb-8467-80b834a1c268" + "b9bc7e26-c3f0-4a9a-bfa4-3673ff88390f" ], "x-ms-client-request-id": [ - "9db396b7-a505-4118-8404-481fc984a920-2020-05-03 11:34:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2648b354-f884-419a-8a5a-1a5bfb6ff700" ], "x-ms-correlation-request-id": [ - "73a13a8f-d440-40cb-8467-80b834a1c268" + "b9bc7e26-c3f0-4a9a-bfa4-3673ff88390f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113426Z:73a13a8f-d440-40cb-8467-80b834a1c268" + "CENTRALUSEUAP:20210417T215329Z:b9bc7e26-c3f0-4a9a-bfa4-3673ff88390f" ], "Date": [ - "Sun, 03 May 2020 11:34:26 GMT" + "Sat, 17 Apr 2021 21:53:29 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -20009,29 +19352,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffefe696-ba12-4299-8041-e6fa65dc3cf0-2020-05-03 11:34:36Z-Ps" + "08acc893-83cf-498c-ac9a-caef02e64320" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502076426)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106876426)\\/\",\"ClientRequestId\":\"ffefe696-ba12-4299-8041-e6fa65dc3cf0-2020-05-03 11:34:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sF/+4dcTNi6X5wptTrGYasqSb9k7EQqyWBQh3bF3J4A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692819455)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297619455)\\/\",\"ClientRequestId\":\"26d25c3a-fa8a-4286-a372-2b1bcccd0b0a-2021-04-17 21:53:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QXyZOrrxkKiuwdfr4bmZxITfyMRAGwXjl/uVzpOqTpk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20042,38 +19385,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11775" + "11753" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "66183a19-2b3f-47d5-a068-9ce6b35e9173" + "77d492af-8108-4299-9b5f-ac5146d75623" ], "x-ms-client-request-id": [ - "ffefe696-ba12-4299-8041-e6fa65dc3cf0-2020-05-03 11:34:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "08acc893-83cf-498c-ac9a-caef02e64320" ], "x-ms-correlation-request-id": [ - "66183a19-2b3f-47d5-a068-9ce6b35e9173" + "77d492af-8108-4299-9b5f-ac5146d75623" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113436Z:66183a19-2b3f-47d5-a068-9ce6b35e9173" + "CENTRALUSEUAP:20210417T215339Z:77d492af-8108-4299-9b5f-ac5146d75623" ], "Date": [ - "Sun, 03 May 2020 11:34:36 GMT" + "Sat, 17 Apr 2021 21:53:39 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -20082,29 +19422,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c1415bf-a36b-48a6-b2ce-95bb5eca1a70-2020-05-03 11:34:46Z-Ps" + "4f90a002-b1e9-4a71-bd1c-34dd025fcc85" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502086953)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106886953)\\/\",\"ClientRequestId\":\"4c1415bf-a36b-48a6-b2ce-95bb5eca1a70-2020-05-03 11:34:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2Ay5AWqOXsu3Zmu5Qmsf/+fCRtC9l0i15Lg9Ps+KYq4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692829831)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297629831)\\/\",\"ClientRequestId\":\"3cd7bac5-05cf-4d6a-86f9-8facfaf7074c-2021-04-17 21:53:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yLr3O+Wcvs9RevDc6NYSzaYQiviGcHFAF7UDRFPq4H8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20114,39 +19454,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11752" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ae0d5c92-0dd8-4bfa-9f2b-9bf124022c6a" + "0dfe8cb0-4974-4371-acfe-e713e7faf7c8" ], "x-ms-client-request-id": [ - "4c1415bf-a36b-48a6-b2ce-95bb5eca1a70-2020-05-03 11:34:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11774" + "4f90a002-b1e9-4a71-bd1c-34dd025fcc85" ], "x-ms-correlation-request-id": [ - "ae0d5c92-0dd8-4bfa-9f2b-9bf124022c6a" + "0dfe8cb0-4974-4371-acfe-e713e7faf7c8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113447Z:ae0d5c92-0dd8-4bfa-9f2b-9bf124022c6a" + "CENTRALUSEUAP:20210417T215350Z:0dfe8cb0-4974-4371-acfe-e713e7faf7c8" ], "Date": [ - "Sun, 03 May 2020 11:34:46 GMT" + "Sat, 17 Apr 2021 21:53:50 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -20155,29 +19492,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04c0f06a-c0f5-41a8-979d-47a00126e7ab-2020-05-03 11:34:57Z-Ps" + "27901e7d-2cee-4b9d-9f2c-03d1f1928056" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502097490)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106897490)\\/\",\"ClientRequestId\":\"04c0f06a-c0f5-41a8-979d-47a00126e7ab-2020-05-03 11:34:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"k+dXniP3SZg/zEaJW+n6SlApk3EDF2Ei6zMm/ujAugE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692840240)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297640240)\\/\",\"ClientRequestId\":\"8017907b-74ef-48fe-a5eb-3ae096301d48-2021-04-17 21:54:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"aX33n/PPijMPthKDjix/eBVCS8xkTgC8q+w0YljKcCk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20188,38 +19525,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11773" + "11751" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "cb783ac2-3495-41a0-bef7-a48357797315" + "99785211-6d8f-4130-8354-154783ea793c" ], "x-ms-client-request-id": [ - "04c0f06a-c0f5-41a8-979d-47a00126e7ab-2020-05-03 11:34:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "27901e7d-2cee-4b9d-9f2c-03d1f1928056" ], "x-ms-correlation-request-id": [ - "cb783ac2-3495-41a0-bef7-a48357797315" + "99785211-6d8f-4130-8354-154783ea793c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113459Z:cb783ac2-3495-41a0-bef7-a48357797315" + "CENTRALUSEUAP:20210417T215400Z:99785211-6d8f-4130-8354-154783ea793c" ], "Date": [ - "Sun, 03 May 2020 11:34:58 GMT" + "Sat, 17 Apr 2021 21:54:00 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -20228,29 +19562,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4af310f0-421e-4b2b-aa6e-ceab7831b68a-2020-05-03 11:35:09Z-Ps" + "38a81bf5-be15-4766-95a3-0f78167822a2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502109256)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106909256)\\/\",\"ClientRequestId\":\"4af310f0-421e-4b2b-aa6e-ceab7831b68a-2020-05-03 11:35:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OhungOd/ddTRVInI4sxBN2Y6vQHeKmzq7OxWNhjPNKA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692850600)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297650600)\\/\",\"ClientRequestId\":\"cca39807-67f6-45ad-9364-5190c025959e-2021-04-17 21:54:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5Hyt+s9uG/mnt6mURepLqM8lQwJwKM0Tpd5a+rbHBr4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20261,38 +19595,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11772" + "11750" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "eaf433ff-9fa6-453a-80d8-a23b82119675" + "32b21210-13e7-439a-a0a8-22a5e7bb3ef3" ], "x-ms-client-request-id": [ - "4af310f0-421e-4b2b-aa6e-ceab7831b68a-2020-05-03 11:35:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "38a81bf5-be15-4766-95a3-0f78167822a2" ], "x-ms-correlation-request-id": [ - "eaf433ff-9fa6-453a-80d8-a23b82119675" + "32b21210-13e7-439a-a0a8-22a5e7bb3ef3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113509Z:eaf433ff-9fa6-453a-80d8-a23b82119675" + "CENTRALUSEUAP:20210417T215410Z:32b21210-13e7-439a-a0a8-22a5e7bb3ef3" ], "Date": [ - "Sun, 03 May 2020 11:35:09 GMT" + "Sat, 17 Apr 2021 21:54:10 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -20301,29 +19632,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c9df9fd-ae2b-4b4a-81ec-aa2f57ecd8f1-2020-05-03 11:35:19Z-Ps" + "7402b4aa-be4c-435a-a261-bdf86eb4be8b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502119766)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106919766)\\/\",\"ClientRequestId\":\"6c9df9fd-ae2b-4b4a-81ec-aa2f57ecd8f1-2020-05-03 11:35:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"u2HrI4bNNRIVT1XWWkPxxnBNjZ7aZXpvnO7eEXW2N2k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692860959)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297660959)\\/\",\"ClientRequestId\":\"a19e6d9f-e5f7-4f6d-8bde-d2e68e097227-2021-04-17 21:54:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MPn6TGqnDawKojwnQBNfzGuPAlq8eKCc5N41mLX5Yw0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20334,38 +19665,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11771" + "11749" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "93178fc6-25a7-4db2-a0db-13b2f7190d54" + "d3d4a4dc-5c9e-4f23-894c-dec182ae5dcd" ], "x-ms-client-request-id": [ - "6c9df9fd-ae2b-4b4a-81ec-aa2f57ecd8f1-2020-05-03 11:35:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7402b4aa-be4c-435a-a261-bdf86eb4be8b" ], "x-ms-correlation-request-id": [ - "93178fc6-25a7-4db2-a0db-13b2f7190d54" + "d3d4a4dc-5c9e-4f23-894c-dec182ae5dcd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113520Z:93178fc6-25a7-4db2-a0db-13b2f7190d54" + "CENTRALUSEUAP:20210417T215421Z:d3d4a4dc-5c9e-4f23-894c-dec182ae5dcd" ], "Date": [ - "Sun, 03 May 2020 11:35:19 GMT" + "Sat, 17 Apr 2021 21:54:20 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -20374,29 +19702,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c341a86-36d6-4d58-9d1a-c9b49ff0c93d-2020-05-03 11:35:30Z-Ps" + "91d8a8b4-40e6-4da1-8718-e6f2710edf54" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502130266)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106930266)\\/\",\"ClientRequestId\":\"4c341a86-36d6-4d58-9d1a-c9b49ff0c93d-2020-05-03 11:35:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"c8AJl8O2H52AhckPJfZLvJJ//P60FP9wZewZSWKwE1I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692871330)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297671330)\\/\",\"ClientRequestId\":\"981379ba-6d3b-488f-a7c5-78ad8f5e64eb-2021-04-17 21:54:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"P+//+uivGR3Eycfs5BidlWHnuwJJLheOjVR6DXl/jZ4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20407,38 +19735,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11770" + "11748" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8d6c2cf9-01d9-447c-9601-f826defaa9cf" + "432f0854-b58e-4238-8600-f6ce157e9dd0" ], "x-ms-client-request-id": [ - "4c341a86-36d6-4d58-9d1a-c9b49ff0c93d-2020-05-03 11:35:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "91d8a8b4-40e6-4da1-8718-e6f2710edf54" ], "x-ms-correlation-request-id": [ - "8d6c2cf9-01d9-447c-9601-f826defaa9cf" + "432f0854-b58e-4238-8600-f6ce157e9dd0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113530Z:8d6c2cf9-01d9-447c-9601-f826defaa9cf" + "CENTRALUSEUAP:20210417T215431Z:432f0854-b58e-4238-8600-f6ce157e9dd0" ], "Date": [ - "Sun, 03 May 2020 11:35:29 GMT" + "Sat, 17 Apr 2021 21:54:31 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -20447,29 +19772,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed441abb-77dc-4fd8-93cf-6378b9773a38-2020-05-03 11:35:40Z-Ps" + "f0b7633d-6e71-4ccd-95b9-0f4dd153c0ed" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502140775)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106940775)\\/\",\"ClientRequestId\":\"ed441abb-77dc-4fd8-93cf-6378b9773a38-2020-05-03 11:35:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nslp27WC1y494DBer6j15KW8hKkHzpZW2t9uVCbr6PA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692881708)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297681708)\\/\",\"ClientRequestId\":\"87be7f9a-3da5-4328-b8e2-2cf14f179b4b-2021-04-17 21:54:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"C6Ib9lHGsjf074QqCFIdoEqarUYPmVZMZd5FC4aiDt0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20480,38 +19805,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11769" + "11747" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d89c2381-dd41-4113-aff4-ea68b62e6e56" + "011a838c-02c1-4bb3-9f55-eb674f7d8a39" ], "x-ms-client-request-id": [ - "ed441abb-77dc-4fd8-93cf-6378b9773a38-2020-05-03 11:35:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f0b7633d-6e71-4ccd-95b9-0f4dd153c0ed" ], "x-ms-correlation-request-id": [ - "d89c2381-dd41-4113-aff4-ea68b62e6e56" + "011a838c-02c1-4bb3-9f55-eb674f7d8a39" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113541Z:d89c2381-dd41-4113-aff4-ea68b62e6e56" + "CENTRALUSEUAP:20210417T215441Z:011a838c-02c1-4bb3-9f55-eb674f7d8a39" ], "Date": [ - "Sun, 03 May 2020 11:35:41 GMT" + "Sat, 17 Apr 2021 21:54:41 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -20520,29 +19842,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a71179e-726d-4bef-8a2f-3c5945562ebc-2020-05-03 11:35:51Z-Ps" + "01929ecd-f708-463f-9023-b40e1df13c10" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502151340)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106951340)\\/\",\"ClientRequestId\":\"2a71179e-726d-4bef-8a2f-3c5945562ebc-2020-05-03 11:35:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3LD3nN/745kiJyrtfcpy2wsCdnb+b5/UsAwfzIK6j8Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692892084)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297692084)\\/\",\"ClientRequestId\":\"786880a3-4cff-4b09-ac96-c264359b416a-2021-04-17 21:54:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fDLtxoCL5+5+ov5+yPdBIAuAAdVm2KzyLvzSWQMpH8E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20553,38 +19875,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11768" + "11746" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a661fb90-ff3a-41ed-8944-2f11b9a4ee2d" + "ba4b1b8a-4e14-4fb8-a1b1-61ffb03a7d6d" ], "x-ms-client-request-id": [ - "2a71179e-726d-4bef-8a2f-3c5945562ebc-2020-05-03 11:35:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "01929ecd-f708-463f-9023-b40e1df13c10" ], "x-ms-correlation-request-id": [ - "a661fb90-ff3a-41ed-8944-2f11b9a4ee2d" + "ba4b1b8a-4e14-4fb8-a1b1-61ffb03a7d6d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113551Z:a661fb90-ff3a-41ed-8944-2f11b9a4ee2d" + "CENTRALUSEUAP:20210417T215452Z:ba4b1b8a-4e14-4fb8-a1b1-61ffb03a7d6d" ], "Date": [ - "Sun, 03 May 2020 11:35:51 GMT" + "Sat, 17 Apr 2021 21:54:52 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -20593,29 +19912,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68dd3bc3-8907-4c91-8744-fec69419e33c-2020-05-03 11:36:01Z-Ps" + "c8294f19-fecc-402f-abc5-6ecdb6f51e91" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502161887)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106961887)\\/\",\"ClientRequestId\":\"68dd3bc3-8907-4c91-8744-fec69419e33c-2020-05-03 11:36:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4mmvD2ptw0qhUL4PgB6Rxb+iEW6VLPCCcFkf1AnNuso=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692902495)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297702495)\\/\",\"ClientRequestId\":\"ac51874c-3cae-41b9-976d-d14a03f0196d-2021-04-17 21:55:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5a5QfgsR+K4eGDkzYypoL1+ismY3iTXokV00eSecVC0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20626,38 +19945,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11767" + "11749" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "00179736-3584-432e-b747-d53afa3620b9" + "8970e0ca-cf98-45c1-ac3e-dcd80f7e6559" ], "x-ms-client-request-id": [ - "68dd3bc3-8907-4c91-8744-fec69419e33c-2020-05-03 11:36:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c8294f19-fecc-402f-abc5-6ecdb6f51e91" ], "x-ms-correlation-request-id": [ - "00179736-3584-432e-b747-d53afa3620b9" + "8970e0ca-cf98-45c1-ac3e-dcd80f7e6559" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113602Z:00179736-3584-432e-b747-d53afa3620b9" + "CENTRALUSEUAP:20210417T215502Z:8970e0ca-cf98-45c1-ac3e-dcd80f7e6559" ], "Date": [ - "Sun, 03 May 2020 11:36:01 GMT" + "Sat, 17 Apr 2021 21:55:02 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -20666,29 +19982,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6592a9e0-8819-4252-86b2-cd7a0add5dd4-2020-05-03 11:36:12Z-Ps" + "680c9901-47c3-4ca7-9633-ded4651573b8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502172391)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106972391)\\/\",\"ClientRequestId\":\"6592a9e0-8819-4252-86b2-cd7a0add5dd4-2020-05-03 11:36:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SdZk52IYy1wkSTu4Mq2UaUlLbFiPKmr9Nw9CUB1Mpwo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692912859)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297712859)\\/\",\"ClientRequestId\":\"1428b911-a09e-476b-96ed-eb8382c24eb6-2021-04-17 21:55:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ebTtNFRStSt2xRHYowWXcTpXfJS7NcPuE+idaifc6GE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20698,39 +20014,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11748" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "cae23780-a290-402a-bfc9-282cbad4ef4a" + "e5f5dc88-edfb-4a25-9b0a-6b2640af3962" ], "x-ms-client-request-id": [ - "6592a9e0-8819-4252-86b2-cd7a0add5dd4-2020-05-03 11:36:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11766" + "680c9901-47c3-4ca7-9633-ded4651573b8" ], "x-ms-correlation-request-id": [ - "cae23780-a290-402a-bfc9-282cbad4ef4a" + "e5f5dc88-edfb-4a25-9b0a-6b2640af3962" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113612Z:cae23780-a290-402a-bfc9-282cbad4ef4a" + "CENTRALUSEUAP:20210417T215513Z:e5f5dc88-edfb-4a25-9b0a-6b2640af3962" ], "Date": [ - "Sun, 03 May 2020 11:36:12 GMT" + "Sat, 17 Apr 2021 21:55:13 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -20739,29 +20052,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ac562d6-287d-45d5-b75a-e2015ba91442-2020-05-03 11:36:22Z-Ps" + "4e3953d9-0835-4568-b153-bd42cafbbe86" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502182904)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106982904)\\/\",\"ClientRequestId\":\"3ac562d6-287d-45d5-b75a-e2015ba91442-2020-05-03 11:36:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NCUwTAwQH4AaaDLH7sGYwolw1Sra/ugty+spC+yAxug=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692923226)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297723226)\\/\",\"ClientRequestId\":\"81f2bc8b-04ef-4e91-9aa4-440b0475fdb1-2021-04-17 21:55:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Oran8wFSKNkb0b++IvASDIbVa/lK3Fzt0Bp6CsYNKfU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20772,38 +20085,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11765" + "11747" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b6f8261b-f54c-46db-bf00-19ff719b3e92" + "6b1b8a93-c80b-4010-bd43-aef09e58660d" ], "x-ms-client-request-id": [ - "3ac562d6-287d-45d5-b75a-e2015ba91442-2020-05-03 11:36:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4e3953d9-0835-4568-b153-bd42cafbbe86" ], "x-ms-correlation-request-id": [ - "b6f8261b-f54c-46db-bf00-19ff719b3e92" + "6b1b8a93-c80b-4010-bd43-aef09e58660d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113624Z:b6f8261b-f54c-46db-bf00-19ff719b3e92" + "CENTRALUSEUAP:20210417T215523Z:6b1b8a93-c80b-4010-bd43-aef09e58660d" ], "Date": [ - "Sun, 03 May 2020 11:36:23 GMT" + "Sat, 17 Apr 2021 21:55:23 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -20812,29 +20122,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6ba200c-fe1d-4bed-b2a0-f0da46b40bb2-2020-05-03 11:36:34Z-Ps" + "4293f1b6-4152-4273-95e2-3be516dd4aa1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502194541)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589106994541)\\/\",\"ClientRequestId\":\"f6ba200c-fe1d-4bed-b2a0-f0da46b40bb2-2020-05-03 11:36:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kAPGeTZHy5FEU+K5kMDeDH4qzxvVp5vPvcRP45iYuQ4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692933588)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297733588)\\/\",\"ClientRequestId\":\"2bc8924c-e60a-4a10-9191-ebd8cb5404d3-2021-04-17 21:55:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"J1rAP6kulE7AgyzuHjOLgXPEhFctZsZ3nRDH5GNbaIg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20844,39 +20154,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11764" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "57722da8-0257-4c66-89d5-58f604fe205f" + "32db32ef-2ad0-42d0-bed8-a86e2982f371" ], "x-ms-client-request-id": [ - "f6ba200c-fe1d-4bed-b2a0-f0da46b40bb2-2020-05-03 11:36:34Z-Ps" + "4293f1b6-4152-4273-95e2-3be516dd4aa1" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11746" ], "x-ms-correlation-request-id": [ - "57722da8-0257-4c66-89d5-58f604fe205f" + "32db32ef-2ad0-42d0-bed8-a86e2982f371" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113634Z:57722da8-0257-4c66-89d5-58f604fe205f" + "CENTRALUSEUAP:20210417T215533Z:32db32ef-2ad0-42d0-bed8-a86e2982f371" ], "Date": [ - "Sun, 03 May 2020 11:36:33 GMT" + "Sat, 17 Apr 2021 21:55:33 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -20885,29 +20192,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae19666b-4653-42e5-9613-4f005c001413-2020-05-03 11:36:45Z-Ps" + "fe1fa1d3-7080-49cc-b3e1-26ef218c8a08" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502205044)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107005044)\\/\",\"ClientRequestId\":\"ae19666b-4653-42e5-9613-4f005c001413-2020-05-03 11:36:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FIcPvbJyQlFwRWL0EkbHp6Zqpnnl8qnTzzH99wPC1RQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692943956)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297743956)\\/\",\"ClientRequestId\":\"6b31468c-5719-485e-b6a5-f7f6cdcfeac8-2021-04-17 21:55:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SNTgr47LH5FFh+vHCb7wFSCQHN1Zy9O9P6ut8IOEKuo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20918,38 +20225,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11763" + "11745" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3b93c69d-504b-4353-bbfc-b7ceaa488377" + "6e24974a-0fdf-458f-acfa-11dd6b70f762" ], "x-ms-client-request-id": [ - "ae19666b-4653-42e5-9613-4f005c001413-2020-05-03 11:36:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "fe1fa1d3-7080-49cc-b3e1-26ef218c8a08" ], "x-ms-correlation-request-id": [ - "3b93c69d-504b-4353-bbfc-b7ceaa488377" + "6e24974a-0fdf-458f-acfa-11dd6b70f762" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113645Z:3b93c69d-504b-4353-bbfc-b7ceaa488377" + "CENTRALUSEUAP:20210417T215544Z:6e24974a-0fdf-458f-acfa-11dd6b70f762" ], "Date": [ - "Sun, 03 May 2020 11:36:45 GMT" + "Sat, 17 Apr 2021 21:55:43 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -20958,29 +20262,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f429766c-fd22-4ea1-836d-12e9b648c1d5-2020-05-03 11:36:55Z-Ps" + "157eaed8-7666-41e0-9583-e628c866064e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502215546)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107015546)\\/\",\"ClientRequestId\":\"f429766c-fd22-4ea1-836d-12e9b648c1d5-2020-05-03 11:36:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QKKvDTk7Zh6zJbMasCvDz626/9H+iIGdm8ix6AB0hb0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692954616)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297754616)\\/\",\"ClientRequestId\":\"4b379699-c997-47e6-aa51-a8cca27e8115-2021-04-17 21:55:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZQend+dh8aP/0rT2yOx/o18thnPr1Niw7InIDCCExtw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20991,38 +20295,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11762" + "11744" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5e020589-daa3-4022-9d9a-94fda9dff202" + "ec515bbc-9f12-4de1-95c2-79d60c76c778" ], "x-ms-client-request-id": [ - "f429766c-fd22-4ea1-836d-12e9b648c1d5-2020-05-03 11:36:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "157eaed8-7666-41e0-9583-e628c866064e" ], "x-ms-correlation-request-id": [ - "5e020589-daa3-4022-9d9a-94fda9dff202" + "ec515bbc-9f12-4de1-95c2-79d60c76c778" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113655Z:5e020589-daa3-4022-9d9a-94fda9dff202" + "CENTRALUSEUAP:20210417T215554Z:ec515bbc-9f12-4de1-95c2-79d60c76c778" ], "Date": [ - "Sun, 03 May 2020 11:36:55 GMT" + "Sat, 17 Apr 2021 21:55:54 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -21031,29 +20332,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4f53642-2300-4b0f-9d07-509a6d0d3480-2020-05-03 11:37:06Z-Ps" + "e4fb274b-41ea-42a9-9af2-b0bdfa8b4889" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502226185)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107026185)\\/\",\"ClientRequestId\":\"f4f53642-2300-4b0f-9d07-509a6d0d3480-2020-05-03 11:37:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5PXqS6ckf2WSk7yqVJZ/FaQGNZtKg9gNk4CMV9NkIL8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692965002)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297765002)\\/\",\"ClientRequestId\":\"c1b9424e-cd3f-4255-a25f-649be682ae3e-2021-04-17 21:56:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qpQRupQ4m8IufZR+6dEXw4w2GgpG9GaEq3j/2yYed9M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21064,38 +20365,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11761" + "11743" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "19cd11a1-fbc8-4f99-82f2-5163a5432191" + "17aad185-7c9e-4015-abda-9ac1b3c2e04b" ], "x-ms-client-request-id": [ - "f4f53642-2300-4b0f-9d07-509a6d0d3480-2020-05-03 11:37:06Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e4fb274b-41ea-42a9-9af2-b0bdfa8b4889" ], "x-ms-correlation-request-id": [ - "19cd11a1-fbc8-4f99-82f2-5163a5432191" + "17aad185-7c9e-4015-abda-9ac1b3c2e04b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113706Z:19cd11a1-fbc8-4f99-82f2-5163a5432191" + "CENTRALUSEUAP:20210417T215605Z:17aad185-7c9e-4015-abda-9ac1b3c2e04b" ], "Date": [ - "Sun, 03 May 2020 11:37:05 GMT" + "Sat, 17 Apr 2021 21:56:05 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -21104,29 +20402,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9631fe9-9bf7-49e4-96c8-1e1f22350228-2020-05-03 11:37:16Z-Ps" + "f24b563b-b5c5-4d03-8b4a-9d53dc8a8930" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502236736)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107036736)\\/\",\"ClientRequestId\":\"f9631fe9-9bf7-49e4-96c8-1e1f22350228-2020-05-03 11:37:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"e8DMSBbJdovAY6zCuCBm3wB62IYsUuRDKXkqL7Iqrco=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692975387)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297775387)\\/\",\"ClientRequestId\":\"dac0c9a4-f0f7-4898-88f8-915fa2968f04-2021-04-17 21:56:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fvxAPaBuN341mGr2jNPrgg7bn1cKnVellvXD5c/ComA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21137,38 +20435,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11760" + "11742" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "eb3e3b5b-27dd-486b-b907-d0533544d7e8" + "261251f1-ba83-40bc-bb39-66a8060df289" ], "x-ms-client-request-id": [ - "f9631fe9-9bf7-49e4-96c8-1e1f22350228-2020-05-03 11:37:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f24b563b-b5c5-4d03-8b4a-9d53dc8a8930" ], "x-ms-correlation-request-id": [ - "eb3e3b5b-27dd-486b-b907-d0533544d7e8" + "261251f1-ba83-40bc-bb39-66a8060df289" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113717Z:eb3e3b5b-27dd-486b-b907-d0533544d7e8" + "CENTRALUSEUAP:20210417T215615Z:261251f1-ba83-40bc-bb39-66a8060df289" ], "Date": [ - "Sun, 03 May 2020 11:37:16 GMT" + "Sat, 17 Apr 2021 21:56:15 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -21177,29 +20472,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffea3796-3dd5-4fec-9829-113e1e76cbc5-2020-05-03 11:37:27Z-Ps" + "c4980f0b-7b71-4257-9ba8-0c018948c0a7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502247406)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107047406)\\/\",\"ClientRequestId\":\"ffea3796-3dd5-4fec-9829-113e1e76cbc5-2020-05-03 11:37:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"65bYhbPJ4lx1OAMUzkzOPmLGrCDsFBEuEFm5t1byAe4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692986729)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297786729)\\/\",\"ClientRequestId\":\"97b65c78-401d-489a-938a-d1afebac64ac-2021-04-17 21:56:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pra3bKuz+1ZIzpZNBTE1+SI3p+moLLiDk4QZh4VtPWc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21210,38 +20505,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11759" + "11741" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "51c1303e-a706-47f6-851b-f5c44526abdc" + "c1f7b093-daab-4a33-80c6-a42b696bc3a6" ], "x-ms-client-request-id": [ - "ffea3796-3dd5-4fec-9829-113e1e76cbc5-2020-05-03 11:37:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c4980f0b-7b71-4257-9ba8-0c018948c0a7" ], "x-ms-correlation-request-id": [ - "51c1303e-a706-47f6-851b-f5c44526abdc" + "c1f7b093-daab-4a33-80c6-a42b696bc3a6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113727Z:51c1303e-a706-47f6-851b-f5c44526abdc" + "CENTRALUSEUAP:20210417T215626Z:c1f7b093-daab-4a33-80c6-a42b696bc3a6" ], "Date": [ - "Sun, 03 May 2020 11:37:27 GMT" + "Sat, 17 Apr 2021 21:56:26 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -21250,29 +20542,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1010b731-7c6a-41ff-9b70-a16ccdbed1ba-2020-05-03 11:37:37Z-Ps" + "e4e6b795-42ac-4f29-a51f-eda10ebf79a9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502257929)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107057929)\\/\",\"ClientRequestId\":\"1010b731-7c6a-41ff-9b70-a16ccdbed1ba-2020-05-03 11:37:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pwmZUJzZRUtV7LBvVNWgMZDzz8amHiM9QC2ZFLgzvc0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618692997110)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297797110)\\/\",\"ClientRequestId\":\"b55cd01c-be9e-4d2e-96bc-b658237cbcfb-2021-04-17 21:56:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"o1tquY+uKXZb7Lf52jAbZg/KA/2JvDZU+Zqd/FS5UGY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21282,39 +20574,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11740" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1b2d95cb-30ca-4f65-8e5a-d1cdcad54aa4" + "50644b3f-d952-4794-bff2-47e38301b934" ], "x-ms-client-request-id": [ - "1010b731-7c6a-41ff-9b70-a16ccdbed1ba-2020-05-03 11:37:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11758" + "e4e6b795-42ac-4f29-a51f-eda10ebf79a9" ], "x-ms-correlation-request-id": [ - "1b2d95cb-30ca-4f65-8e5a-d1cdcad54aa4" + "50644b3f-d952-4794-bff2-47e38301b934" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113738Z:1b2d95cb-30ca-4f65-8e5a-d1cdcad54aa4" + "CENTRALUSEUAP:20210417T215637Z:50644b3f-d952-4794-bff2-47e38301b934" ], "Date": [ - "Sun, 03 May 2020 11:37:37 GMT" + "Sat, 17 Apr 2021 21:56:36 GMT" ], "Content-Length": [ - "5985" + "5984" ], "Content-Type": [ "application/json" @@ -21323,29 +20612,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52c5c380-ea91-4fdd-a520-b7bfe934bf99-2020-05-03 11:37:48Z-Ps" + "399a867f-f13b-484b-aff3-150b83972797" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502268484)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107068484)\\/\",\"ClientRequestId\":\"52c5c380-ea91-4fdd-a520-b7bfe934bf99-2020-05-03 11:37:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"arUXLNADsSuBgF+8Hmy9BXkoHN3zVt2qqN10azRyJ7U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693007511)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297807511)\\/\",\"ClientRequestId\":\"7106862a-8fb6-4fab-8350-9684b211ca8e-2021-04-17 21:56:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kABo7m/GBHch1czjXQSb2rLgX2FvK4qyidCzPhmvfFY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21356,38 +20645,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11757" + "11739" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "01db3253-dacc-443a-aa94-99ce926753b2" + "c4b570c0-38b6-4a56-99f7-74df762900d4" ], "x-ms-client-request-id": [ - "52c5c380-ea91-4fdd-a520-b7bfe934bf99-2020-05-03 11:37:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "399a867f-f13b-484b-aff3-150b83972797" ], "x-ms-correlation-request-id": [ - "01db3253-dacc-443a-aa94-99ce926753b2" + "c4b570c0-38b6-4a56-99f7-74df762900d4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113750Z:01db3253-dacc-443a-aa94-99ce926753b2" + "CENTRALUSEUAP:20210417T215647Z:c4b570c0-38b6-4a56-99f7-74df762900d4" ], "Date": [ - "Sun, 03 May 2020 11:37:49 GMT" + "Sat, 17 Apr 2021 21:56:47 GMT" ], "Content-Length": [ - "5985" + "6761" ], "Content-Type": [ "application/json" @@ -21396,29 +20682,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"name\": \"dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:56:44.5557018Z\",\r\n \"endTime\": \"2021-04-17T21:56:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "237fb0d4-84bf-4bdb-bb24-bc7d6085f5b9-2020-05-03 11:38:00Z-Ps" + "881111f5-29de-495e-b1c3-30064ac6b92e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502280178)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107080178)\\/\",\"ClientRequestId\":\"237fb0d4-84bf-4bdb-bb24-bc7d6085f5b9-2020-05-03 11:38:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HHtEZtIqLgkJoqUQK8M6cbSFQ5BcCrdQ+OsytPiGtWU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693017971)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297817971)\\/\",\"ClientRequestId\":\"08a66d9b-29de-4ec5-8946-a909621f62a1-2021-04-17 21:56:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/5SAtmr3cSHuZuSM+1TN4xHRcVKvZNCU/hMmIO9MMno=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21429,38 +20715,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11756" + "11738" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "831e8cba-06c2-4912-962b-43aa16ec6ea5" + "0b65ca67-c70c-4c9a-9575-7ff9e3ab7c05" ], "x-ms-client-request-id": [ - "237fb0d4-84bf-4bdb-bb24-bc7d6085f5b9-2020-05-03 11:38:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "881111f5-29de-495e-b1c3-30064ac6b92e" ], "x-ms-correlation-request-id": [ - "831e8cba-06c2-4912-962b-43aa16ec6ea5" + "0b65ca67-c70c-4c9a-9575-7ff9e3ab7c05" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113800Z:831e8cba-06c2-4912-962b-43aa16ec6ea5" + "CENTRALUSEUAP:20210417T215658Z:0b65ca67-c70c-4c9a-9575-7ff9e3ab7c05" ], "Date": [ - "Sun, 03 May 2020 11:38:00 GMT" + "Sat, 17 Apr 2021 21:56:57 GMT" ], "Content-Length": [ - "5985" + "6761" ], "Content-Type": [ "application/json" @@ -21469,29 +20752,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"name\": \"dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:56:44.5557018Z\",\r\n \"endTime\": \"2021-04-17T21:56:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9d1b88b-904c-4edc-b9d5-bbf2e11669f8-2020-05-03 11:38:10Z-Ps" + "3beceb01-2c05-45f2-97f5-01bc3af24f3c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502290702)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107090702)\\/\",\"ClientRequestId\":\"c9d1b88b-904c-4edc-b9d5-bbf2e11669f8-2020-05-03 11:38:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"e5hWpjiwKpb9ScpjuqB0uv9QbdtgQAL1t7fpahw6kSs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693028348)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297828348)\\/\",\"ClientRequestId\":\"c75fb8a0-f4fe-4c99-8e93-050facda1319-2021-04-17 21:57:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SUwwyZ7kxq6bEN/0iTRzpHIcP3bOXFIDEKMvCav0ijc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21502,38 +20785,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11755" + "11737" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6b6cc7c9-590c-430e-98df-6fc8823b8188" + "873ad8f9-eeff-4063-b311-51a0ba4a7529" ], "x-ms-client-request-id": [ - "c9d1b88b-904c-4edc-b9d5-bbf2e11669f8-2020-05-03 11:38:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3beceb01-2c05-45f2-97f5-01bc3af24f3c" ], "x-ms-correlation-request-id": [ - "6b6cc7c9-590c-430e-98df-6fc8823b8188" + "873ad8f9-eeff-4063-b311-51a0ba4a7529" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113811Z:6b6cc7c9-590c-430e-98df-6fc8823b8188" + "CENTRALUSEUAP:20210417T215708Z:873ad8f9-eeff-4063-b311-51a0ba4a7529" ], "Date": [ - "Sun, 03 May 2020 11:38:10 GMT" + "Sat, 17 Apr 2021 21:57:08 GMT" ], "Content-Length": [ - "5985" + "6761" ], "Content-Type": [ "application/json" @@ -21542,29 +20822,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"name\": \"dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:56:44.5557018Z\",\r\n \"endTime\": \"2021-04-17T21:56:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec7d872e-0b47-4482-b7d3-5bf397bb58e3-2020-05-03 11:38:21Z-Ps" + "f148aa5f-0fa8-4f1a-8f4c-20b629d84932" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502301214)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107101214)\\/\",\"ClientRequestId\":\"ec7d872e-0b47-4482-b7d3-5bf397bb58e3-2020-05-03 11:38:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ER4n8iS6jcL0Wl2l+j8iff280Zv26Cdw0LNgArV6ybA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693038723)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297838723)\\/\",\"ClientRequestId\":\"8bd97b32-65ae-4ee3-ae88-62ad6d72494a-2021-04-17 21:57:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bUf6scsDoEVzX63Ad1Hw8GsNUuId6Xkf27dkICVdmSg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21575,38 +20855,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11754" + "11736" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f7b6d0e5-522c-4593-b543-bff8656523ee" + "4643cc48-da5a-46dd-aece-bddfd9d1a32d" ], "x-ms-client-request-id": [ - "ec7d872e-0b47-4482-b7d3-5bf397bb58e3-2020-05-03 11:38:21Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f148aa5f-0fa8-4f1a-8f4c-20b629d84932" ], "x-ms-correlation-request-id": [ - "f7b6d0e5-522c-4593-b543-bff8656523ee" + "4643cc48-da5a-46dd-aece-bddfd9d1a32d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113821Z:f7b6d0e5-522c-4593-b543-bff8656523ee" + "CENTRALUSEUAP:20210417T215718Z:4643cc48-da5a-46dd-aece-bddfd9d1a32d" ], "Date": [ - "Sun, 03 May 2020 11:38:20 GMT" + "Sat, 17 Apr 2021 21:57:18 GMT" ], "Content-Length": [ - "5985" + "6761" ], "Content-Type": [ "application/json" @@ -21615,29 +20892,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"name\": \"dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:56:44.5557018Z\",\r\n \"endTime\": \"2021-04-17T21:56:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "581c9929-6754-431f-a6af-788213eebfce-2020-05-03 11:38:31Z-Ps" + "cbc09d2a-6f05-4912-840b-308c38f4160d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502311786)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107111786)\\/\",\"ClientRequestId\":\"581c9929-6754-431f-a6af-788213eebfce-2020-05-03 11:38:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hl3BLmGKZdRjQwtrGSz0D5EUWya3tJlyp8WCpKcRu5Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693049096)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297849096)\\/\",\"ClientRequestId\":\"d1c10bb2-4c63-4dac-b721-ac315316f5d9-2021-04-17 21:57:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8G3Ex7ySoE//uyWbgFgmCuASnvobd16JNvXC+kp0yPU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21648,38 +20925,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11753" + "11735" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0ecd585a-1832-4b7c-b64d-c105c5baeb2f" + "8a9ddb57-d236-4130-9848-26fd853f7425" ], "x-ms-client-request-id": [ - "581c9929-6754-431f-a6af-788213eebfce-2020-05-03 11:38:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cbc09d2a-6f05-4912-840b-308c38f4160d" ], "x-ms-correlation-request-id": [ - "0ecd585a-1832-4b7c-b64d-c105c5baeb2f" + "8a9ddb57-d236-4130-9848-26fd853f7425" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113832Z:0ecd585a-1832-4b7c-b64d-c105c5baeb2f" + "CENTRALUSEUAP:20210417T215729Z:8a9ddb57-d236-4130-9848-26fd853f7425" ], "Date": [ - "Sun, 03 May 2020 11:38:32 GMT" + "Sat, 17 Apr 2021 21:57:29 GMT" ], "Content-Length": [ - "5985" + "6761" ], "Content-Type": [ "application/json" @@ -21688,29 +20962,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"name\": \"dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:56:44.5557018Z\",\r\n \"endTime\": \"2021-04-17T21:56:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1fb79b4b-ed5a-4fc9-a360-0ec14a1fc6e8-2020-05-03 11:38:42Z-Ps" + "6a10a1ec-2a6d-4f4a-bb76-327cb3b2ce6b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502322303)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107122303)\\/\",\"ClientRequestId\":\"1fb79b4b-ed5a-4fc9-a360-0ec14a1fc6e8-2020-05-03 11:38:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GK4A5QS9z/OI1avCK7QnnPiAaTcOjIEL0GFI1VGIHxE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693059470)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297859470)\\/\",\"ClientRequestId\":\"a9002bcd-fdab-4ebe-a855-dba12b6c7876-2021-04-17 21:57:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HQGuHnsHELDkxQ1QOzr/+4sL2G/zqakkyUhrB0tKW1o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21721,38 +20995,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11752" + "11734" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ef1b719d-53d5-4ff8-a063-3d210fc63c12" + "999edf01-12f6-4b88-80d1-f7a85c1ead07" ], "x-ms-client-request-id": [ - "1fb79b4b-ed5a-4fc9-a360-0ec14a1fc6e8-2020-05-03 11:38:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6a10a1ec-2a6d-4f4a-bb76-327cb3b2ce6b" ], "x-ms-correlation-request-id": [ - "ef1b719d-53d5-4ff8-a063-3d210fc63c12" + "999edf01-12f6-4b88-80d1-f7a85c1ead07" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113842Z:ef1b719d-53d5-4ff8-a063-3d210fc63c12" + "CENTRALUSEUAP:20210417T215739Z:999edf01-12f6-4b88-80d1-f7a85c1ead07" ], "Date": [ - "Sun, 03 May 2020 11:38:42 GMT" + "Sat, 17 Apr 2021 21:57:38 GMT" ], "Content-Length": [ - "5985" + "6761" ], "Content-Type": [ "application/json" @@ -21761,29 +21032,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"name\": \"dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:56:44.5557018Z\",\r\n \"endTime\": \"2021-04-17T21:56:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e2b5ed0-69d7-4723-aac1-6d330d34f1cc-2020-05-03 11:38:52Z-Ps" + "e0c4f957-c2dd-4397-a3c0-f6f034aaafac" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502332851)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107132851)\\/\",\"ClientRequestId\":\"4e2b5ed0-69d7-4723-aac1-6d330d34f1cc-2020-05-03 11:38:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"stIw5MQqLPc9reAuLkIoOgzdhLyjl/4GLhS6QSqLgGc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693069854)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297869854)\\/\",\"ClientRequestId\":\"9da5ac26-3a3d-40cf-b6f8-bbebf4952df2-2021-04-17 21:57:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PgZu7A9E6dUBNPKwLu/0WTpoRPQVdhvgRyQJR7h36Ns=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21794,38 +21065,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11751" + "11733" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6a66eb39-ee9f-447f-a424-ae1c1a21374a" + "a8a43d3e-2aeb-461e-bbb9-cef31d707bc0" ], "x-ms-client-request-id": [ - "4e2b5ed0-69d7-4723-aac1-6d330d34f1cc-2020-05-03 11:38:52Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e0c4f957-c2dd-4397-a3c0-f6f034aaafac" ], "x-ms-correlation-request-id": [ - "6a66eb39-ee9f-447f-a424-ae1c1a21374a" + "a8a43d3e-2aeb-461e-bbb9-cef31d707bc0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113853Z:6a66eb39-ee9f-447f-a424-ae1c1a21374a" + "CENTRALUSEUAP:20210417T215750Z:a8a43d3e-2aeb-461e-bbb9-cef31d707bc0" ], "Date": [ - "Sun, 03 May 2020 11:38:52 GMT" + "Sat, 17 Apr 2021 21:57:50 GMT" ], "Content-Length": [ - "5985" + "6761" ], "Content-Type": [ "application/json" @@ -21834,29 +21102,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"name\": \"dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:56:44.5557018Z\",\r\n \"endTime\": \"2021-04-17T21:56:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc4bf875-f659-45a8-92e7-9ddac26bfd74-2020-05-03 11:39:03Z-Ps" + "be17faa6-5df5-4192-946e-bb7692cb4aa4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502343363)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107143363)\\/\",\"ClientRequestId\":\"dc4bf875-f659-45a8-92e7-9ddac26bfd74-2020-05-03 11:39:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yI7+BfvQwj37wW3JE3YIjpoKc30YyZBaE7TqH5znGAA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693080222)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297880222)\\/\",\"ClientRequestId\":\"1204da93-f7fa-4c4d-affd-5c1e4961030a-2021-04-17 21:58:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IdwfMsQvPT0PemoybautNFjZwkZt4QrWoPrbgsOQeWs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21866,39 +21134,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11732" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ac2f52d4-bd71-4f3e-a08c-b53e913de3d4" + "9b517771-7d9e-4285-a637-e129be70a424" ], "x-ms-client-request-id": [ - "dc4bf875-f659-45a8-92e7-9ddac26bfd74-2020-05-03 11:39:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11750" + "be17faa6-5df5-4192-946e-bb7692cb4aa4" ], "x-ms-correlation-request-id": [ - "ac2f52d4-bd71-4f3e-a08c-b53e913de3d4" + "9b517771-7d9e-4285-a637-e129be70a424" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113903Z:ac2f52d4-bd71-4f3e-a08c-b53e913de3d4" + "CENTRALUSEUAP:20210417T215800Z:9b517771-7d9e-4285-a637-e129be70a424" ], "Date": [ - "Sun, 03 May 2020 11:39:02 GMT" + "Sat, 17 Apr 2021 21:57:59 GMT" ], "Content-Length": [ - "5985" + "6761" ], "Content-Type": [ "application/json" @@ -21907,29 +21172,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"name\": \"dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:56:44.5557018Z\",\r\n \"endTime\": \"2021-04-17T21:56:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d0682fe-b295-4410-a1f9-3b805434bc0c-2020-05-03 11:39:14Z-Ps" + "ebae5479-c4f4-4f48-82de-b994e0f454aa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502354035)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107154035)\\/\",\"ClientRequestId\":\"6d0682fe-b295-4410-a1f9-3b805434bc0c-2020-05-03 11:39:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zg6/USXTxswU+TmrZXXcdzdwgA8zTi5szvDCS8RiN4A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693090612)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297890612)\\/\",\"ClientRequestId\":\"d8da0d50-0ecb-4b52-bde5-fe9ca8d8ccf6-2021-04-17 21:58:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NfdfEVm8ng8IOucrbYkjg3BRiiKrd3MqRWR3kQRUSs4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21940,38 +21205,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11749" + "11731" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "da00679b-f011-4ead-a97f-097d411ee432" + "462346b3-c29b-4057-89cf-183e8ef43be2" ], "x-ms-client-request-id": [ - "6d0682fe-b295-4410-a1f9-3b805434bc0c-2020-05-03 11:39:14Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ebae5479-c4f4-4f48-82de-b994e0f454aa" ], "x-ms-correlation-request-id": [ - "da00679b-f011-4ead-a97f-097d411ee432" + "462346b3-c29b-4057-89cf-183e8ef43be2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113915Z:da00679b-f011-4ead-a97f-097d411ee432" + "CENTRALUSEUAP:20210417T215810Z:462346b3-c29b-4057-89cf-183e8ef43be2" ], "Date": [ - "Sun, 03 May 2020 11:39:15 GMT" + "Sat, 17 Apr 2021 21:58:10 GMT" ], "Content-Length": [ - "5985" + "6761" ], "Content-Type": [ "application/json" @@ -21980,29 +21242,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"name\": \"dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:56:44.5557018Z\",\r\n \"endTime\": \"2021-04-17T21:56:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44bdbed1-3cfe-4b18-b850-4c605d24e7bf-2020-05-03 11:39:25Z-Ps" + "037da73e-6457-4c4c-b714-b2c4149ec000" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502365633)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107165633)\\/\",\"ClientRequestId\":\"44bdbed1-3cfe-4b18-b850-4c605d24e7bf-2020-05-03 11:39:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zsN6Ta55lGOFwHUkKqv5pJe3XHHsflmMYVoU5OQ7EKQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693100995)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297900995)\\/\",\"ClientRequestId\":\"ddfcc811-8df6-4c67-bf23-0cab03c83f22-2021-04-17 21:58:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Cou7Aq0iEJnFvHP3LDIC8uPqUVIXx7HJdqi3Rd0BDFI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22013,38 +21275,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11748" + "11730" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4d29fe7a-2214-44cf-891f-7b1720b5e95d" + "34bb6d6a-55d7-4823-a556-158ee6abb989" ], "x-ms-client-request-id": [ - "44bdbed1-3cfe-4b18-b850-4c605d24e7bf-2020-05-03 11:39:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "037da73e-6457-4c4c-b714-b2c4149ec000" ], "x-ms-correlation-request-id": [ - "4d29fe7a-2214-44cf-891f-7b1720b5e95d" + "34bb6d6a-55d7-4823-a556-158ee6abb989" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113925Z:4d29fe7a-2214-44cf-891f-7b1720b5e95d" + "CENTRALUSEUAP:20210417T215821Z:34bb6d6a-55d7-4823-a556-158ee6abb989" ], "Date": [ - "Sun, 03 May 2020 11:39:25 GMT" + "Sat, 17 Apr 2021 21:58:21 GMT" ], "Content-Length": [ - "5985" + "6761" ], "Content-Type": [ "application/json" @@ -22053,29 +21312,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"name\": \"dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:56:44.5557018Z\",\r\n \"endTime\": \"2021-04-17T21:56:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bfb3f717-f57e-4506-9f7f-d03684a8092e-2020-05-03 11:39:36Z-Ps" + "fa5bc450-8f7d-49a3-a425-8f3e5ff90872" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502376131)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107176131)\\/\",\"ClientRequestId\":\"bfb3f717-f57e-4506-9f7f-d03684a8092e-2020-05-03 11:39:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IuVLNIKr34iqE4rUTN//1x/B/Ve0zm6ELafhLft1PEY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693111377)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297911377)\\/\",\"ClientRequestId\":\"d56e4d4b-21d1-4e32-a803-0ca69c9e7da1-2021-04-17 21:58:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"w9JEBcncTMe4d/9wCeYEqU0e/viOvrPBSIc6V5JsqsM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22086,38 +21345,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11747" + "11729" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ead841e3-65ed-4f88-baec-8018883146ea" + "1142382f-25d9-4180-a426-96e112a22e98" ], "x-ms-client-request-id": [ - "bfb3f717-f57e-4506-9f7f-d03684a8092e-2020-05-03 11:39:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "fa5bc450-8f7d-49a3-a425-8f3e5ff90872" ], "x-ms-correlation-request-id": [ - "ead841e3-65ed-4f88-baec-8018883146ea" + "1142382f-25d9-4180-a426-96e112a22e98" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113936Z:ead841e3-65ed-4f88-baec-8018883146ea" + "CENTRALUSEUAP:20210417T215831Z:1142382f-25d9-4180-a426-96e112a22e98" ], "Date": [ - "Sun, 03 May 2020 11:39:36 GMT" + "Sat, 17 Apr 2021 21:58:30 GMT" ], "Content-Length": [ - "5985" + "6761" ], "Content-Type": [ "application/json" @@ -22126,29 +21382,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"name\": \"dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:56:44.5557018Z\",\r\n \"endTime\": \"2021-04-17T21:56:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10bbdf6b-259a-4016-9ea0-28d5cfe716dd-2020-05-03 11:39:46Z-Ps" + "23eb966c-2105-4513-957e-0bb473f3dff0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502386638)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107186638)\\/\",\"ClientRequestId\":\"10bbdf6b-259a-4016-9ea0-28d5cfe716dd-2020-05-03 11:39:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MAU6/qqmIaGnFPnsHt+EQKmqCUqpVvfpiULENwXbA5U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693121789)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297921789)\\/\",\"ClientRequestId\":\"6c8d62a7-4585-4248-890f-323a8f55b21c-2021-04-17 21:58:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8WoDvqOv+F1rfHc+Hm3xzFu8GV010vGCaLdFTp3ZibI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22159,38 +21415,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11746" + "11728" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f22b848d-8642-47f2-b3d4-d66c1fa449a8" + "d7c32e8a-b1fe-4e29-8cea-7aeb67235523" ], "x-ms-client-request-id": [ - "10bbdf6b-259a-4016-9ea0-28d5cfe716dd-2020-05-03 11:39:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "23eb966c-2105-4513-957e-0bb473f3dff0" ], "x-ms-correlation-request-id": [ - "f22b848d-8642-47f2-b3d4-d66c1fa449a8" + "d7c32e8a-b1fe-4e29-8cea-7aeb67235523" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113946Z:f22b848d-8642-47f2-b3d4-d66c1fa449a8" + "CENTRALUSEUAP:20210417T215841Z:d7c32e8a-b1fe-4e29-8cea-7aeb67235523" ], "Date": [ - "Sun, 03 May 2020 11:39:46 GMT" + "Sat, 17 Apr 2021 21:58:41 GMT" ], "Content-Length": [ - "5985" + "6761" ], "Content-Type": [ "application/json" @@ -22199,29 +21452,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"name\": \"dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:56:44.5557018Z\",\r\n \"endTime\": \"2021-04-17T21:56:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8aa3636-8ff0-40f2-be8a-334efdf7831c-2020-05-03 11:39:57Z-Ps" + "2f86fb19-7593-4c51-a11b-927b811fbe21" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502397129)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107197129)\\/\",\"ClientRequestId\":\"a8aa3636-8ff0-40f2-be8a-334efdf7831c-2020-05-03 11:39:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"y5UZV7qF1Vn1a5Iuw4UCp4E3Fac5pe3+IA40ZaghxoU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693132161)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297932161)\\/\",\"ClientRequestId\":\"3acac2c9-1924-4bf8-a3ff-bd9009cc5f34-2021-04-17 21:58:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"k4ypaTr7eYWeCwnESUxn3rNx3CVyk29KzyKMnmn7+6Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22232,38 +21485,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11745" + "11727" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ce338249-e56c-4ef4-aec6-085eb39718c0" + "b243bdc0-11ea-4f2b-a6bf-3ae4eb126d6e" ], "x-ms-client-request-id": [ - "a8aa3636-8ff0-40f2-be8a-334efdf7831c-2020-05-03 11:39:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2f86fb19-7593-4c51-a11b-927b811fbe21" ], "x-ms-correlation-request-id": [ - "ce338249-e56c-4ef4-aec6-085eb39718c0" + "b243bdc0-11ea-4f2b-a6bf-3ae4eb126d6e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T113957Z:ce338249-e56c-4ef4-aec6-085eb39718c0" + "CENTRALUSEUAP:20210417T215852Z:b243bdc0-11ea-4f2b-a6bf-3ae4eb126d6e" ], "Date": [ - "Sun, 03 May 2020 11:39:57 GMT" + "Sat, 17 Apr 2021 21:58:52 GMT" ], "Content-Length": [ - "5985" + "6761" ], "Content-Type": [ "application/json" @@ -22272,29 +21522,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"name\": \"dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:56:44.5557018Z\",\r\n \"endTime\": \"2021-04-17T21:56:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2293136c-8d73-43b4-9674-633f61cd473a-2020-05-03 11:40:07Z-Ps" + "cd8b8963-ca9e-40f5-b8f2-6a1e1feffecf" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502407850)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107207850)\\/\",\"ClientRequestId\":\"2293136c-8d73-43b4-9674-633f61cd473a-2020-05-03 11:40:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lOnjhPYQR1D+5BsDGLOXQCrBl1jVfG0yCW3eILzLqao=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693142535)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297942535)\\/\",\"ClientRequestId\":\"67e9d605-56d2-4e56-a94f-688881a64bf5-2021-04-17 21:59:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ncleJ4/ZXAw+M+QT1AF5iKiG+zBRT4jhV8zJuG/qoG4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22305,35 +21555,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11744" + "11726" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ade4a514-be05-4890-81af-9ce9ddd71617" + "65042e78-c56f-48a8-90f5-6828231142ae" ], "x-ms-client-request-id": [ - "2293136c-8d73-43b4-9674-633f61cd473a-2020-05-03 11:40:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cd8b8963-ca9e-40f5-b8f2-6a1e1feffecf" ], "x-ms-correlation-request-id": [ - "ade4a514-be05-4890-81af-9ce9ddd71617" + "65042e78-c56f-48a8-90f5-6828231142ae" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114008Z:ade4a514-be05-4890-81af-9ce9ddd71617" + "CENTRALUSEUAP:20210417T215902Z:65042e78-c56f-48a8-90f5-6828231142ae" ], "Date": [ - "Sun, 03 May 2020 11:40:07 GMT" + "Sat, 17 Apr 2021 21:59:02 GMT" ], "Content-Length": [ "6761" @@ -22345,29 +21592,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8ad0eb1-7103-45f7-907e-0c893b9808b3\",\r\n \"name\": \"f8ad0eb1-7103-45f7-907e-0c893b9808b3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:03.082878Z\",\r\n \"endTime\": \"2020-05-03T11:40:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"name\": \"dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:56:44.5557018Z\",\r\n \"endTime\": \"2021-04-17T21:56:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c1a4254-aa14-4395-bfda-8455d1e7ec45-2020-05-03 11:40:18Z-Ps" + "1955fda3-31b3-48e5-a5e8-9f6b8fb3cdd9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502418511)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107218511)\\/\",\"ClientRequestId\":\"1c1a4254-aa14-4395-bfda-8455d1e7ec45-2020-05-03 11:40:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"446hRO+2cmcEOdenzdolVWcRYnDU/MjEh0nSatnyPSw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693152936)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297952936)\\/\",\"ClientRequestId\":\"b09504ee-cf7b-49ed-9741-ea1a39d037bf-2021-04-17 21:59:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sufnmOkgvcpt5TfsjCAJ6r9w/1H2UTyfJskJ+nsDduw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22378,35 +21625,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11743" + "11725" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1739001b-ddc7-4163-bfb1-1699be0b5357" + "f3c4700f-52cd-421f-87f3-ee61f1bbd673" ], "x-ms-client-request-id": [ - "1c1a4254-aa14-4395-bfda-8455d1e7ec45-2020-05-03 11:40:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1955fda3-31b3-48e5-a5e8-9f6b8fb3cdd9" ], "x-ms-correlation-request-id": [ - "1739001b-ddc7-4163-bfb1-1699be0b5357" + "f3c4700f-52cd-421f-87f3-ee61f1bbd673" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114018Z:1739001b-ddc7-4163-bfb1-1699be0b5357" + "CENTRALUSEUAP:20210417T215913Z:f3c4700f-52cd-421f-87f3-ee61f1bbd673" ], "Date": [ - "Sun, 03 May 2020 11:40:18 GMT" + "Sat, 17 Apr 2021 21:59:12 GMT" ], "Content-Length": [ "6761" @@ -22418,29 +21662,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8ad0eb1-7103-45f7-907e-0c893b9808b3\",\r\n \"name\": \"f8ad0eb1-7103-45f7-907e-0c893b9808b3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:03.082878Z\",\r\n \"endTime\": \"2020-05-03T11:40:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"name\": \"dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:56:44.5557018Z\",\r\n \"endTime\": \"2021-04-17T21:56:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d54a8cb-2384-4573-bc2d-d11d5a13b1d0-2020-05-03 11:40:29Z-Ps" + "5373ce25-2e11-4490-992c-67094c0341ec" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502429103)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107229103)\\/\",\"ClientRequestId\":\"0d54a8cb-2384-4573-bc2d-d11d5a13b1d0-2020-05-03 11:40:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KxLzcMXpDRwUmcXpMND7ztzid0H1xqXlB/dcYBdjgOw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693163299)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297963299)\\/\",\"ClientRequestId\":\"b0e3868d-8e75-4139-b88a-c70015e74626-2021-04-17 21:59:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VUkF4ojCAmgR2iLf+uiW1ivYHiOl9oqcr4/2skz3gNs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22450,36 +21694,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11724" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e51a7fe2-1064-4458-adc6-3a90a2c81580" + "0b384426-10d2-4ff9-8da0-8d992e25c771" ], "x-ms-client-request-id": [ - "0d54a8cb-2384-4573-bc2d-d11d5a13b1d0-2020-05-03 11:40:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11742" + "5373ce25-2e11-4490-992c-67094c0341ec" ], "x-ms-correlation-request-id": [ - "e51a7fe2-1064-4458-adc6-3a90a2c81580" + "0b384426-10d2-4ff9-8da0-8d992e25c771" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114029Z:e51a7fe2-1064-4458-adc6-3a90a2c81580" + "CENTRALUSEUAP:20210417T215923Z:0b384426-10d2-4ff9-8da0-8d992e25c771" ], "Date": [ - "Sun, 03 May 2020 11:40:28 GMT" + "Sat, 17 Apr 2021 21:59:23 GMT" ], "Content-Length": [ "6761" @@ -22491,29 +21732,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8ad0eb1-7103-45f7-907e-0c893b9808b3\",\r\n \"name\": \"f8ad0eb1-7103-45f7-907e-0c893b9808b3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:03.082878Z\",\r\n \"endTime\": \"2020-05-03T11:40:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"name\": \"dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:56:44.5557018Z\",\r\n \"endTime\": \"2021-04-17T21:56:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8b7faf6-1311-4343-8e74-11b56a7a8915-2020-05-03 11:40:39Z-Ps" + "a74259ed-153c-4576-bb17-72c8ef69e43d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502439755)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107239755)\\/\",\"ClientRequestId\":\"f8b7faf6-1311-4343-8e74-11b56a7a8915-2020-05-03 11:40:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2eIQ1zJLnqVW48RXRPZTHtTHkruajqwnr92pP6I1Uno=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693173708)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297973708)\\/\",\"ClientRequestId\":\"e92a0a9e-053b-4d32-be15-9b1fbe0f423f-2021-04-17 21:59:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WiRsjbQmKsHSwu0tHziJF94qvEBYTjyYy/Ti6T+Iu3w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22524,35 +21765,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11741" + "11723" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0a2e8976-d38f-4d5b-9ed6-43a31140c554" + "db4584e3-1fec-4d41-aaa1-6d458dd4aa01" ], "x-ms-client-request-id": [ - "f8b7faf6-1311-4343-8e74-11b56a7a8915-2020-05-03 11:40:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a74259ed-153c-4576-bb17-72c8ef69e43d" ], "x-ms-correlation-request-id": [ - "0a2e8976-d38f-4d5b-9ed6-43a31140c554" + "db4584e3-1fec-4d41-aaa1-6d458dd4aa01" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114041Z:0a2e8976-d38f-4d5b-9ed6-43a31140c554" + "CENTRALUSEUAP:20210417T215933Z:db4584e3-1fec-4d41-aaa1-6d458dd4aa01" ], "Date": [ - "Sun, 03 May 2020 11:40:41 GMT" + "Sat, 17 Apr 2021 21:59:33 GMT" ], "Content-Length": [ "6761" @@ -22564,29 +21802,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8ad0eb1-7103-45f7-907e-0c893b9808b3\",\r\n \"name\": \"f8ad0eb1-7103-45f7-907e-0c893b9808b3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:03.082878Z\",\r\n \"endTime\": \"2020-05-03T11:40:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"name\": \"dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:56:44.5557018Z\",\r\n \"endTime\": \"2021-04-17T21:56:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a789e1a-1e23-4e8b-b879-b674c717f1ce-2020-05-03 11:40:51Z-Ps" + "579b61bd-2f98-4e05-9923-aa8260b58717" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502451560)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107251560)\\/\",\"ClientRequestId\":\"6a789e1a-1e23-4e8b-b879-b674c717f1ce-2020-05-03 11:40:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FefXVLzoFbuMNAJqjbePQi0lqRvoDVSp2kgx9gl8zbc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693184088)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297984088)\\/\",\"ClientRequestId\":\"058bbb71-841c-429e-aae0-b01df14804e5-2021-04-17 21:59:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zzV5pp8yn+FgBetiyp5JDrFVLAXTI47n9YLe9tWAFpY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22597,35 +21835,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11740" + "11722" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b9351ec7-7e42-4817-9441-5c2a9d178e6a" + "c11f800a-e90c-4e4b-b40e-b9b44189b9c0" ], "x-ms-client-request-id": [ - "6a789e1a-1e23-4e8b-b879-b674c717f1ce-2020-05-03 11:40:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "579b61bd-2f98-4e05-9923-aa8260b58717" ], "x-ms-correlation-request-id": [ - "b9351ec7-7e42-4817-9441-5c2a9d178e6a" + "c11f800a-e90c-4e4b-b40e-b9b44189b9c0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114051Z:b9351ec7-7e42-4817-9441-5c2a9d178e6a" + "CENTRALUSEUAP:20210417T215944Z:c11f800a-e90c-4e4b-b40e-b9b44189b9c0" ], "Date": [ - "Sun, 03 May 2020 11:40:51 GMT" + "Sat, 17 Apr 2021 21:59:43 GMT" ], "Content-Length": [ "7541" @@ -22637,29 +21872,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/81c6c297-9343-4754-99ca-1f8827dc3020\",\r\n \"name\": \"81c6c297-9343-4754-99ca-1f8827dc3020\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:44.7801676Z\",\r\n \"endTime\": \"2020-05-03T11:40:49Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8ad0eb1-7103-45f7-907e-0c893b9808b3\",\r\n \"name\": \"f8ad0eb1-7103-45f7-907e-0c893b9808b3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:03.082878Z\",\r\n \"endTime\": \"2020-05-03T11:40:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"name\": \"70fdacb8-6eb8-41c5-93c2-37c1ffcef69f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:53:19.5998937Z\",\r\n \"endTime\": \"2020-05-03T11:10:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"name\": \"681663ce-fcde-4bf0-b80d-da23a7896518\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:52:56.5570791Z\",\r\n \"endTime\": \"2020-05-03T10:52:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"name\": \"b6d550ad-09de-48b8-89f0-a1ed4ce46c53\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:30.9047355Z\",\r\n \"endTime\": \"2020-05-03T10:52:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"name\": \"44a3fcf4-0601-4be6-ba18-1b8120859e1d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:28.3792166Z\",\r\n \"endTime\": \"2020-05-03T10:51:29Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"name\": \"c0ef3898-d44c-4cf4-86dc-9af4fdbd910d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:25.8592766Z\",\r\n \"endTime\": \"2020-05-03T10:51:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"name\": \"beb82f0d-0310-44a2-a4c2-e4945101ecd0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:51:21.9771258Z\",\r\n \"endTime\": \"2020-05-03T10:51:22Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"name\": \"84388125-5f4b-4ab2-b2ff-83572cd9433b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:49:54.3718022Z\",\r\n \"endTime\": \"2020-05-03T10:50:59Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"name\": \"117cfb76-c33e-4931-9992-71c6d66c5b35\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T10:48:27.7364784Z\",\r\n \"endTime\": \"2020-05-03T10:49:33Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/65a5a79e-3c45-4b13-932b-711a3112f874\",\r\n \"name\": \"65a5a79e-3c45-4b13-932b-711a3112f874\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:59:35.2367407Z\",\r\n \"endTime\": \"2021-04-17T21:59:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"name\": \"dcafe251-e226-4b47-a227-c01109efc5e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:56:44.5557018Z\",\r\n \"endTime\": \"2021-04-17T21:56:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"name\": \"6e9df8b4-6bb0-436e-bd04-c01d7c8dbbbf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:16:05.0387653Z\",\r\n \"endTime\": \"2021-04-17T21:27:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"name\": \"5ee0dea8-a849-4fab-9ac2-ee5ba24da818\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:15:42.6528252Z\",\r\n \"endTime\": \"2021-04-17T21:15:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm918\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"name\": \"a668ca91-cbde-4289-832d-f1e199eab68c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:19.2321397Z\",\r\n \"endTime\": \"2021-04-17T21:15:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"name\": \"a19ee7f7-82a8-4934-bb89-210afee62ab9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:17.4117587Z\",\r\n \"endTime\": \"2021-04-17T21:14:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"targetObjectName\": \"TestA2APolicy1918\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"name\": \"140ab6be-6468-4684-86f7-b7fa9d8d6640\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:15.3224307Z\",\r\n \"endTime\": \"2021-04-17T21:14:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"targetObjectName\": \"A2ARecoveryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"name\": \"342fd0ad-d27e-421a-883b-f5317366b028\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:14:13.1200699Z\",\r\n \"endTime\": \"2021-04-17T21:14:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"targetObjectName\": \"A2APrimaryContainer918\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"name\": \"f8164090-5df4-4f8f-81a9-44ca2a4b8ae3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:12:48.847628Z\",\r\n \"endTime\": \"2021-04-17T21:13:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"targetObjectName\": \"a2aRecoveryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"name\": \"7c6394b2-1366-4bff-bdd2-7da2f884ce0a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:11:24.9430645Z\",\r\n \"endTime\": \"2021-04-17T21:12:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"targetObjectName\": \"a2aPrimaryFabric918\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/81c6c297-9343-4754-99ca-1f8827dc3020?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvODFjNmMyOTctOTM0My00NzU0LTk5Y2EtMWY4ODI3ZGMzMDIwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/65a5a79e-3c45-4b13-932b-711a3112f874?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNjVhNWE3OWUtM2M0NS00YjEzLTkzMmItNzExYTMxMTJmODc0P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f574363-6e45-47e6-a626-90cfb7bec9c9-2020-05-03 11:40:52Z-Ps" + "81dd81d3-c9aa-47b3-b54b-87570e592864" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502452137)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107252137)\\/\",\"ClientRequestId\":\"0f574363-6e45-47e6-a626-90cfb7bec9c9-2020-05-03 11:40:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kIIL7c50I+uDeYFFr7pxVZEiWDcTKAh+Fk5LKBeeCSI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693184489)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297984489)\\/\",\"ClientRequestId\":\"9eb8ebad-a3d2-4fdd-bb57-2e0a4a899eed-2021-04-17 21:59:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0Fnh+LdZA/kNF9FPNch9H14QocCKC8ywqo8rrkVjXjs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22670,38 +21905,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11739" + "11721" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/81c6c297-9343-4754-99ca-1f8827dc3020" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/65a5a79e-3c45-4b13-932b-711a3112f874" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "0f574363-6e45-47e6-a626-90cfb7bec9c9-2020-05-03 11:40:52Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "81dd81d3-c9aa-47b3-b54b-87570e592864" ], "x-ms-correlation-request-id": [ - "2b267eb5-09d0-480d-ae17-54a499284062" + "8a4841fd-10ed-4aaa-a0c2-1eb0ee07cd62" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114052Z:2b267eb5-09d0-480d-ae17-54a499284062" + "CENTRALUSEUAP:20210417T215944Z:8a4841fd-10ed-4aaa-a0c2-1eb0ee07cd62" ], "Date": [ - "Sun, 03 May 2020 11:40:52 GMT" + "Sat, 17 Apr 2021 21:59:44 GMT" ], "Content-Length": [ - "3141" + "3124" ], "Content-Type": [ "application/json" @@ -22710,29 +21942,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/81c6c297-9343-4754-99ca-1f8827dc3020\",\r\n \"name\": \"81c6c297-9343-4754-99ca-1f8827dc3020\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7f0a6ee4-0c3c-451e-a10f-d320b75fb08f-2020-05-03 10:53:19Z-Ps ActivityId: 3d2376e6-f3cb-495b-a772-6515984030d5\",\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CompleteInitialReplicationTask\",\r\n \"name\": \"CompleteInitialReplication\",\r\n \"startTime\": \"2020-05-03T11:40:45.2219514Z\",\r\n \"endTime\": \"2020-05-03T11:40:45.6127516Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationPreflightChecksTask\",\r\n \"name\": \"FailWorkflowOnIRFailureTask\",\r\n \"startTime\": \"2020-05-03T11:40:45.6127516Z\",\r\n \"endTime\": \"2020-05-03T11:40:46.3160908Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationTask\",\r\n \"name\": \"ReplicaConfiguration\",\r\n \"startTime\": \"2020-05-03T11:40:46.3160908Z\",\r\n \"endTime\": \"2020-05-03T11:40:49.4280892Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete network and post-replication configuration\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2020-05-03T11:40:49.4280892Z\",\r\n \"endTime\": \"2020-05-03T11:40:49.8186902Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:44.7801676Z\",\r\n \"endTime\": \"2020-05-03T11:40:49Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"a7b40d17-9ce6-54db-88a7-b7a062ac0937\",\r\n \"primaryCloudId\": \"311d23d2-3179-58bd-995d-bc63e9a2d22c\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"ef99e366-eaee-5428-8390-81ab82ed8fe4\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/65a5a79e-3c45-4b13-932b-711a3112f874\",\r\n \"name\": \"65a5a79e-3c45-4b13-932b-711a3112f874\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"862d0667-8819-4091-b19c-22d759917983 ActivityId: 514035fe-ed24-429c-869f-725811fbc611\",\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CompleteInitialReplicationTask\",\r\n \"name\": \"CompleteInitialReplication\",\r\n \"startTime\": \"2021-04-17T21:59:35.680165Z\",\r\n \"endTime\": \"2021-04-17T21:59:36.0751911Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationPreflightChecksTask\",\r\n \"name\": \"FailWorkflowOnIRFailureTask\",\r\n \"startTime\": \"2021-04-17T21:59:36.0751911Z\",\r\n \"endTime\": \"2021-04-17T21:59:36.1801724Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationTask\",\r\n \"name\": \"ReplicaConfiguration\",\r\n \"startTime\": \"2021-04-17T21:59:36.1801724Z\",\r\n \"endTime\": \"2021-04-17T21:59:39.7552075Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete network and post-replication configuration\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2021-04-17T21:59:39.7552075Z\",\r\n \"endTime\": \"2021-04-17T21:59:39.9802075Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:59:35.2367407Z\",\r\n \"endTime\": \"2021-04-17T21:59:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"primaryVmName\": \"a2avm918\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm918\",\r\n \"protectionProfileId\": \"50073767-db46-5b64-88f1-ead6134327ce\",\r\n \"primaryCloudId\": \"a059dd63-49be-5197-bd0d-f57258cc3244\",\r\n \"primaryCloudName\": \"A2APrimaryContainer918\",\r\n \"recoveryCloudId\": \"edccd99a-bb49-53ed-afba-bf90198700f3\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer918\",\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTgvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTkxOD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTgvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTkxOD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a79e48dc-b99b-4cad-9509-f5c81c49edd6-2020-05-03 11:40:52Z-Ps" + "95d79a06-e2e0-4a55-b0ce-20c17b815eb4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502452648)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107252648)\\/\",\"ClientRequestId\":\"a79e48dc-b99b-4cad-9509-f5c81c49edd6-2020-05-03 11:40:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZQ35VzjFQxkyAssTyydUHYmlogZmlqi0KdZ4QEEbrx0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693185043)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297985043)\\/\",\"ClientRequestId\":\"e8ead72c-2ebf-49fc-a7f2-b48936692aed-2021-04-17 21:59:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KXjKcGoffx39ULof/BhdIV2IMO7AoLiEsgasMwSCFtQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22743,38 +21975,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11738" + "11720" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "a79e48dc-b99b-4cad-9509-f5c81c49edd6-2020-05-03 11:40:52Z-Ps 5/3/2020 11:40:53 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "95d79a06-e2e0-4a55-b0ce-20c17b815eb4 4/17/2021 9:59:45 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a79e48dc-b99b-4cad-9509-f5c81c49edd6-2020-05-03 11:40:52Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "95d79a06-e2e0-4a55-b0ce-20c17b815eb4" ], "x-ms-correlation-request-id": [ - "435403ca-f269-4979-94ae-29d68f9fa0ed" + "e4fcaef4-a9a1-4ba0-afb2-d8109badab34" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114053Z:435403ca-f269-4979-94ae-29d68f9fa0ed" + "CENTRALUSEUAP:20210417T215945Z:e4fcaef4-a9a1-4ba0-afb2-d8109badab34" ], "Date": [ - "Sun, 03 May 2020 11:40:52 GMT" + "Sat, 17 Apr 2021 21:59:44 GMT" ], "Content-Length": [ - "7817" + "8384" ], "Content-Type": [ "application/json" @@ -22783,29 +22012,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918\",\r\n \"name\": \"a2aVM918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM918\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationRecoveryServicesProviders/6e535ac3-17a7-5679-9741-7bc3030b5f79\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer918\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer918\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM918'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-05-03T11:40:50.6247676Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918\",\r\n \"policyFriendlyName\": \"TestA2APolicy1918\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm918/providers/microsoft.compute/virtualmachines/a2avm918\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"cedcc562-af68-407d-b688-d233116ffcbe\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2c86cd92-0e69-4d9c-a8bc-782002d46284\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm918/providers/microsoft.compute/disks/a2avm918_osdisk_1_0c12d1210b1c49f783b52ff5249c77bb\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Compute/disks/a2aVM918_OsDisk_1_0c12d1210b1c49f783b52ff5249c77bb-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM918_OsDisk_1_0c12d1210b1c49f783b52ff5249c77bb\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Storage/storageAccounts/cache918\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.42236328125,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM918_OsDisk_1_0c12d1210b1c49f783b52ff5249c77bb\",\r\n \"tfoDiskName\": \"a2aVM918_OsDisk_1_0c12d1210b1c49f783b52ff5249c77bb-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM918\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/recrg918/providers/microsoft.network/virtualnetworks/a2arecoverynetwork918\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"d8d586c2-a06e-5e54-a588-edbc7957d0bb\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918\",\r\n \"vMSubnetName\": \"a2aVM918\",\r\n \"vMNetworkName\": \"a2avm918\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/recrg918/providers/microsoft.network/virtualnetworks/a2arecoverynetwork918\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoNicName\": null,\r\n \"tfoNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 99,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2020-05-03T11:40:23.6804381Z\",\r\n \"agentVersion\": \"9.32.5487.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"93face9d-1965-4937-ac24-a795d3e58119\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 1830,\r\n \"lastRpoCalculatedTime\": \"2020-05-03T11:40:43.4020125Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM918-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918\",\r\n \"eventCorrelationId\": \"dcd952d5-b6fd-4ff7-9a51-f09f13b40ae6\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918\",\r\n \"name\": \"a2aVM918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM918\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationRecoveryServicesProviders/104a79ea-3df4-5f41-a3cd-e6b7b5e7a143\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer918\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer918\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM918'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-17T21:59:41.8912599Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918\",\r\n \"policyFriendlyName\": \"TestA2APolicy1918\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm918/providers/microsoft.compute/virtualmachines/a2avm918\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"1642efc7-fb5e-4ca6-b077-3db2cce23d05\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"50f8b78c-c849-413e-8314-7e383253bbe3\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm918/providers/microsoft.compute/disks/a2avm918_osdisk_1_5d9da26740f94b2eb974cf23bc75b546\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Compute/disks/a2aVM918_OsDisk_1_5d9da26740f94b2eb974cf23bc75b546-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM918_OsDisk_1_5d9da26740f94b2eb974cf23bc75b546\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Storage/storageAccounts/cache918\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.6650390625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM918_OsDisk_1_5d9da26740f94b2eb974cf23bc75b546\",\r\n \"tfoDiskName\": \"a2aVM918_OsDisk_1_5d9da26740f94b2eb974cf23bc75b546-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM918\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg918/providers/microsoft.network/virtualnetworks/a2arecoverynetwork918\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"22580f2b-1647-517e-9c9e-9da990b62ecb\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg918/providers/microsoft.network/virtualnetworks/a2arecoverynetwork918\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM918\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM918\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 86,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2021-04-17T21:59:23.2430973Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-16T21:14:21Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"2afb2257-4591-4464-a0fc-3e6b7a9344d3\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 1908,\r\n \"lastRpoCalculatedTime\": \"2021-04-17T21:59:34.4828887Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM918-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr\",\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918\",\r\n \"eventCorrelationId\": \"71f739ab-499d-41d8-841d-7200f058a60a\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTgvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTkxOD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTgvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTkxOD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1a82dd3-ae5d-4e06-9914-343a6e4634da-2020-05-03 11:40:53Z-Ps" + "7cc720c7-c6b5-4032-b305-03aa894186a0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502453334)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107253334)\\/\",\"ClientRequestId\":\"b1a82dd3-ae5d-4e06-9914-343a6e4634da-2020-05-03 11:40:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"REusRdex1pA+UDXvYcme4drQZPbY9+H/gGXwPaXzkRM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693185618)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297985618)\\/\",\"ClientRequestId\":\"17a03586-2259-415f-af9e-dc99e615dd03-2021-04-17 21:59:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JyvaI15K2tEHnrVDRg5T6yi4WDnq3NB2YUKgmzMUCQQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22816,38 +22045,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11737" + "11719" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "b1a82dd3-ae5d-4e06-9914-343a6e4634da-2020-05-03 11:40:53Z-Ps 5/3/2020 11:40:53 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "7cc720c7-c6b5-4032-b305-03aa894186a0 4/17/2021 9:59:45 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b1a82dd3-ae5d-4e06-9914-343a6e4634da-2020-05-03 11:40:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7cc720c7-c6b5-4032-b305-03aa894186a0" ], "x-ms-correlation-request-id": [ - "2564beb0-01d4-479e-ba5c-b3d7a2c9b975" + "ac5945c5-774f-46a6-a658-1304e9643fd3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114053Z:2564beb0-01d4-479e-ba5c-b3d7a2c9b975" + "CENTRALUSEUAP:20210417T215945Z:ac5945c5-774f-46a6-a658-1304e9643fd3" ], "Date": [ - "Sun, 03 May 2020 11:40:53 GMT" + "Sat, 17 Apr 2021 21:59:45 GMT" ], "Content-Length": [ - "7817" + "8384" ], "Content-Type": [ "application/json" @@ -22856,29 +22082,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918\",\r\n \"name\": \"a2aVM918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM918\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationRecoveryServicesProviders/6e535ac3-17a7-5679-9741-7bc3030b5f79\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer918\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer918\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM918'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-05-03T11:40:50.6247676Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918\",\r\n \"policyFriendlyName\": \"TestA2APolicy1918\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm918/providers/microsoft.compute/virtualmachines/a2avm918\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"cedcc562-af68-407d-b688-d233116ffcbe\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2c86cd92-0e69-4d9c-a8bc-782002d46284\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm918/providers/microsoft.compute/disks/a2avm918_osdisk_1_0c12d1210b1c49f783b52ff5249c77bb\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Compute/disks/a2aVM918_OsDisk_1_0c12d1210b1c49f783b52ff5249c77bb-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM918_OsDisk_1_0c12d1210b1c49f783b52ff5249c77bb\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Storage/storageAccounts/cache918\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.42236328125,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM918_OsDisk_1_0c12d1210b1c49f783b52ff5249c77bb\",\r\n \"tfoDiskName\": \"a2aVM918_OsDisk_1_0c12d1210b1c49f783b52ff5249c77bb-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM918\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/recrg918/providers/microsoft.network/virtualnetworks/a2arecoverynetwork918\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"d8d586c2-a06e-5e54-a588-edbc7957d0bb\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918\",\r\n \"vMSubnetName\": \"a2aVM918\",\r\n \"vMNetworkName\": \"a2avm918\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/recrg918/providers/microsoft.network/virtualnetworks/a2arecoverynetwork918\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoNicName\": null,\r\n \"tfoNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 99,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2020-05-03T11:40:23.6804381Z\",\r\n \"agentVersion\": \"9.32.5487.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"93face9d-1965-4937-ac24-a795d3e58119\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 1830,\r\n \"lastRpoCalculatedTime\": \"2020-05-03T11:40:43.4020125Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM918-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918\",\r\n \"eventCorrelationId\": \"dcd952d5-b6fd-4ff7-9a51-f09f13b40ae6\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918\",\r\n \"name\": \"a2aVM918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM918\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationRecoveryServicesProviders/104a79ea-3df4-5f41-a3cd-e6b7b5e7a143\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer918\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer918\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM918'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-17T21:59:41.8912599Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918\",\r\n \"policyFriendlyName\": \"TestA2APolicy1918\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm918/providers/microsoft.compute/virtualmachines/a2avm918\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"1642efc7-fb5e-4ca6-b077-3db2cce23d05\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"50f8b78c-c849-413e-8314-7e383253bbe3\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm918/providers/microsoft.compute/disks/a2avm918_osdisk_1_5d9da26740f94b2eb974cf23bc75b546\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Compute/disks/a2aVM918_OsDisk_1_5d9da26740f94b2eb974cf23bc75b546-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM918_OsDisk_1_5d9da26740f94b2eb974cf23bc75b546\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Storage/storageAccounts/cache918\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.6650390625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM918_OsDisk_1_5d9da26740f94b2eb974cf23bc75b546\",\r\n \"tfoDiskName\": \"a2aVM918_OsDisk_1_5d9da26740f94b2eb974cf23bc75b546-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM918\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg918/providers/microsoft.network/virtualnetworks/a2arecoverynetwork918\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"22580f2b-1647-517e-9c9e-9da990b62ecb\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg918/providers/microsoft.network/virtualnetworks/a2arecoverynetwork918\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM918\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM918\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 86,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2021-04-17T21:59:23.2430973Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-16T21:14:21Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"2afb2257-4591-4464-a0fc-3e6b7a9344d3\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 1908,\r\n \"lastRpoCalculatedTime\": \"2021-04-17T21:59:34.4828887Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM918-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr\",\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918\",\r\n \"eventCorrelationId\": \"71f739ab-499d-41d8-841d-7200f058a60a\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationRecoveryPlans/A2ARP918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvblJlY292ZXJ5UGxhbnMvQTJBUlA5MTg/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationRecoveryPlans/A2ARP918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvblJlY292ZXJ5UGxhbnMvQTJBUlA5MTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"primaryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918\",\r\n \"recoveryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"groups\": [\r\n {\r\n \"groupType\": \"Boot\",\r\n \"replicationProtectedItems\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918\"\r\n }\r\n ],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n }\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"primaryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"groups\": [\r\n {\r\n \"groupType\": \"Boot\",\r\n \"replicationProtectedItems\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918\"\r\n }\r\n ],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bcef61a2-98ec-4880-8a7d-4cd6e0c66fdc-2020-05-03 11:40:53Z-Ps" + "7cc720c7-c6b5-4032-b305-03aa894186a0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502453954)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107253954)\\/\",\"ClientRequestId\":\"bcef61a2-98ec-4880-8a7d-4cd6e0c66fdc-2020-05-03 11:40:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LGAtJQCaQVgsYBUt2MsehYoo86zvna4DUJ+gIOEHy9o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693186084)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297986084)\\/\",\"ClientRequestId\":\"b5d8779b-8425-432e-8644-2f91c02538ac-2021-04-17 21:59:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pQ+IM4JPMI+0Qiy0KZt7D9E+D85QJT6b12t3tgyjJp0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -22895,41 +22121,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationRecoveryPlans/A2ARP918/operationresults/e975362a-2b9d-4c89-a055-0884d329a135?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationRecoveryPlans/A2ARP918/operationresults/d40cf8a3-ddc6-46ac-8958-7254dfeaa10e?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/e975362a-2b9d-4c89-a055-0884d329a135", - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/e975362a-2b9d-4c89-a055-0884d329a135" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/d40cf8a3-ddc6-46ac-8958-7254dfeaa10e", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/d40cf8a3-ddc6-46ac-8958-7254dfeaa10e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/e975362a-2b9d-4c89-a055-0884d329a135?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/d40cf8a3-ddc6-46ac-8958-7254dfeaa10e?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "bcef61a2-98ec-4880-8a7d-4cd6e0c66fdc-2020-05-03 11:40:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "7cc720c7-c6b5-4032-b305-03aa894186a0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1183" ], "x-ms-correlation-request-id": [ - "35ae40bc-cec6-441b-9054-d4aef029e120" + "f37d6aa2-6e24-45fc-b9b4-465ad912290b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114055Z:35ae40bc-cec6-441b-9054-d4aef029e120" + "CENTRALUSEUAP:20210417T215946Z:f37d6aa2-6e24-45fc-b9b4-465ad912290b" ], "Date": [ - "Sun, 03 May 2020 11:40:54 GMT" + "Sat, 17 Apr 2021 21:59:45 GMT" ], "Expires": [ "-1" @@ -22942,25 +22165,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/e975362a-2b9d-4c89-a055-0884d329a135?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvZTk3NTM2MmEtMmI5ZC00Yzg5LWEwNTUtMDg4NGQzMjlhMTM1P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/d40cf8a3-ddc6-46ac-8958-7254dfeaa10e?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvZDQwY2Y4YTMtZGRjNi00NmFjLTg5NTgtNzI1NGRmZWFhMTBlP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3881b7bc-b46a-41aa-a085-305aff54e370-2020-05-03 11:40:55Z-Ps" + "7cc720c7-c6b5-4032-b305-03aa894186a0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502455387)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107255387)\\/\",\"ClientRequestId\":\"3881b7bc-b46a-41aa-a085-305aff54e370-2020-05-03 11:40:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hA18KBf5g86PUDU4qAjZTddjX4XTrUeAm1uRgzNk/AE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693186819)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297986819)\\/\",\"ClientRequestId\":\"fca3055b-7887-4353-bdea-c87a9580a502-2021-04-17 21:59:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yulHuSe3KwWkv/xJ1Waj+dqB/e4r7hKv0FsGg/A9WX8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22971,38 +22194,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11736" + "11718" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/e975362a-2b9d-4c89-a055-0884d329a135" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/d40cf8a3-ddc6-46ac-8958-7254dfeaa10e" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3881b7bc-b46a-41aa-a085-305aff54e370-2020-05-03 11:40:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7cc720c7-c6b5-4032-b305-03aa894186a0" ], "x-ms-correlation-request-id": [ - "13167e6b-8664-45cc-872c-6746a81b0143" + "1b12c0b1-1668-411d-bf6a-80069f83a1e6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114055Z:13167e6b-8664-45cc-872c-6746a81b0143" + "CENTRALUSEUAP:20210417T215947Z:1b12c0b1-1668-411d-bf6a-80069f83a1e6" ], "Date": [ - "Sun, 03 May 2020 11:40:55 GMT" + "Sat, 17 Apr 2021 21:59:47 GMT" ], "Content-Length": [ - "1524" + "1469" ], "Content-Type": [ "application/json" @@ -23011,29 +22231,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/e975362a-2b9d-4c89-a055-0884d329a135\",\r\n \"name\": \"e975362a-2b9d-4c89-a055-0884d329a135\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"bcef61a2-98ec-4880-8a7d-4cd6e0c66fdc-2020-05-03 11:40:53Z-Ps ActivityId: 35ae40bc-cec6-441b-9054-d4aef029e120\",\r\n \"scenarioName\": \"SaveRecoveryPlan\",\r\n \"friendlyName\": \"Save a recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"018c50bf-1a1d-4fa0-9190-8a387701a700\",\r\n \"name\": \"SaveRecoveryPlanTask\",\r\n \"startTime\": \"2020-05-03T11:40:55.2194788Z\",\r\n \"endTime\": \"2020-05-03T11:40:55.4538524Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Save a recovery plan task\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:54.9852848Z\",\r\n \"endTime\": \"2020-05-03T11:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/d40cf8a3-ddc6-46ac-8958-7254dfeaa10e\",\r\n \"name\": \"d40cf8a3-ddc6-46ac-8958-7254dfeaa10e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7cc720c7-c6b5-4032-b305-03aa894186a0 ActivityId: f37d6aa2-6e24-45fc-b9b4-465ad912290b\",\r\n \"scenarioName\": \"SaveRecoveryPlan\",\r\n \"friendlyName\": \"Save a recovery plan\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"f012048c-9434-414c-a8d7-2b975f87991a\",\r\n \"name\": \"SaveRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Save a recovery plan task\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:59:46.5158765Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a0038247-b232-491f-8126-5fc47bce9c12\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/e975362a-2b9d-4c89-a055-0884d329a135?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvZTk3NTM2MmEtMmI5ZC00Yzg5LWEwNTUtMDg4NGQzMjlhMTM1P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/d40cf8a3-ddc6-46ac-8958-7254dfeaa10e?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvZDQwY2Y4YTMtZGRjNi00NmFjLTg5NTgtNzI1NGRmZWFhMTBlP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ed01b57-fa74-4c6d-a744-432f56055350-2020-05-03 11:40:55Z-Ps" + "4662a25f-cf62-4c0c-a78c-4eab5f053262" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502455916)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107255916)\\/\",\"ClientRequestId\":\"7ed01b57-fa74-4c6d-a744-432f56055350-2020-05-03 11:40:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"of9n/mJGP2NJJVCzdAMpzhi65XFgnJklWw+v7k7Nv8Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693187218)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297987218)\\/\",\"ClientRequestId\":\"318057b4-783d-47b7-b393-a27ca46577b8-2021-04-17 21:59:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"q2anhLnU3OX5OZiQjbLoKnql4Cflr8WdbEreVuUdNOk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23044,38 +22264,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11735" + "11717" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/e975362a-2b9d-4c89-a055-0884d329a135" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/d40cf8a3-ddc6-46ac-8958-7254dfeaa10e" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7ed01b57-fa74-4c6d-a744-432f56055350-2020-05-03 11:40:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4662a25f-cf62-4c0c-a78c-4eab5f053262" ], "x-ms-correlation-request-id": [ - "49d2eee4-8306-433e-8621-b882082a9346" + "aef96ac4-e077-4274-99d0-e61df4e39704" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114056Z:49d2eee4-8306-433e-8621-b882082a9346" + "CENTRALUSEUAP:20210417T215947Z:aef96ac4-e077-4274-99d0-e61df4e39704" ], "Date": [ - "Sun, 03 May 2020 11:40:55 GMT" + "Sat, 17 Apr 2021 21:59:47 GMT" ], "Content-Length": [ - "1524" + "1508" ], "Content-Type": [ "application/json" @@ -23084,29 +22301,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/e975362a-2b9d-4c89-a055-0884d329a135\",\r\n \"name\": \"e975362a-2b9d-4c89-a055-0884d329a135\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"bcef61a2-98ec-4880-8a7d-4cd6e0c66fdc-2020-05-03 11:40:53Z-Ps ActivityId: 35ae40bc-cec6-441b-9054-d4aef029e120\",\r\n \"scenarioName\": \"SaveRecoveryPlan\",\r\n \"friendlyName\": \"Save a recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"018c50bf-1a1d-4fa0-9190-8a387701a700\",\r\n \"name\": \"SaveRecoveryPlanTask\",\r\n \"startTime\": \"2020-05-03T11:40:55.2194788Z\",\r\n \"endTime\": \"2020-05-03T11:40:55.4538524Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Save a recovery plan task\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:54.9852848Z\",\r\n \"endTime\": \"2020-05-03T11:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/d40cf8a3-ddc6-46ac-8958-7254dfeaa10e\",\r\n \"name\": \"d40cf8a3-ddc6-46ac-8958-7254dfeaa10e\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7cc720c7-c6b5-4032-b305-03aa894186a0 ActivityId: f37d6aa2-6e24-45fc-b9b4-465ad912290b\",\r\n \"scenarioName\": \"SaveRecoveryPlan\",\r\n \"friendlyName\": \"Save a recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"f012048c-9434-414c-a8d7-2b975f87991a\",\r\n \"name\": \"SaveRecoveryPlanTask\",\r\n \"startTime\": \"2021-04-17T21:59:46.6697919Z\",\r\n \"endTime\": \"2021-04-17T21:59:47.0998027Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Save a recovery plan task\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:59:46.5158765Z\",\r\n \"endTime\": \"2021-04-17T21:59:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a0038247-b232-491f-8126-5fc47bce9c12\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationRecoveryPlans/A2ARP918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvblJlY292ZXJ5UGxhbnMvQTJBUlA5MTg/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationRecoveryPlans/A2ARP918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvblJlY292ZXJ5UGxhbnMvQTJBUlA5MTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "015cacde-bb6b-4281-a6ce-63797e5f013d-2020-05-03 11:40:56Z-Ps" + "2bc2d1b9-adc9-43f0-b4d8-9611a9ecbcc6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502456449)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107256449)\\/\",\"ClientRequestId\":\"015cacde-bb6b-4281-a6ce-63797e5f013d-2020-05-03 11:40:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CguVrYgJvQkiQFtOSg8RhMp2V6y5m7WnrT4ip20QrME=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693187597)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297987597)\\/\",\"ClientRequestId\":\"63febd19-49a1-401d-84d6-379fe5b4f18f-2021-04-17 21:59:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zDXFb6fJGFZR2ruV1RUWQLl9Jphm54qHcAGOMzPdU/8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23117,38 +22334,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11734" + "11716" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "015cacde-bb6b-4281-a6ce-63797e5f013d-2020-05-03 11:40:56Z-Ps 5/3/2020 11:40:56 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "2bc2d1b9-adc9-43f0-b4d8-9611a9ecbcc6 4/17/2021 9:59:47 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "015cacde-bb6b-4281-a6ce-63797e5f013d-2020-05-03 11:40:56Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2bc2d1b9-adc9-43f0-b4d8-9611a9ecbcc6" ], "x-ms-correlation-request-id": [ - "b4381df9-8bd8-4af4-b124-cf6b2f560fad" + "6578e183-0e05-4d3d-b84f-34acfa608677" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114056Z:b4381df9-8bd8-4af4-b124-cf6b2f560fad" + "CENTRALUSEUAP:20210417T215947Z:6578e183-0e05-4d3d-b84f-34acfa608677" ], "Date": [ - "Sun, 03 May 2020 11:40:56 GMT" + "Sat, 17 Apr 2021 21:59:47 GMT" ], "Content-Length": [ - "1741" + "1749" ], "Content-Type": [ "application/json" @@ -23157,29 +22371,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationRecoveryPlans/A2ARP918\",\r\n \"name\": \"A2ARP918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans\",\r\n \"properties\": {\r\n \"friendlyName\": \"A2ARP918\",\r\n \"primaryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"recoveryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"replicationProviders\": [\r\n \"A2A\"\r\n ],\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"TestFailover\"\r\n ],\r\n \"currentScenario\": null,\r\n \"currentScenarioStatus\": null,\r\n \"currentScenarioStatusDescription\": null,\r\n \"groups\": [\r\n {\r\n \"groupType\": \"Shutdown\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Failover\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Boot\",\r\n \"replicationProtectedItems\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918\",\r\n \"virtualMachineId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\"\r\n }\r\n ],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n }\r\n ],\r\n \"providerSpecificDetails\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationRecoveryPlans/A2ARP918\",\r\n \"name\": \"A2ARP918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans\",\r\n \"properties\": {\r\n \"friendlyName\": \"A2ARP918\",\r\n \"primaryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"replicationProviders\": [\r\n \"A2A\"\r\n ],\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"TestFailover\"\r\n ],\r\n \"currentScenario\": null,\r\n \"currentScenarioStatus\": null,\r\n \"currentScenarioStatusDescription\": null,\r\n \"groups\": [\r\n {\r\n \"groupType\": \"Shutdown\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Failover\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Boot\",\r\n \"replicationProtectedItems\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918\",\r\n \"virtualMachineId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\"\r\n }\r\n ],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n }\r\n ],\r\n \"providerSpecificDetails\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationRecoveryPlans/A2ARP918?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvblJlY292ZXJ5UGxhbnMvQTJBUlA5MTg/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationRecoveryPlans/A2ARP918?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvblJlY292ZXJ5UGxhbnMvQTJBUlA5MTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e3ff2e4-e6da-4cf1-adbf-0f6d60da2b91-2020-05-03 11:40:57Z-Ps" + "c6cb8ebe-9772-4bd1-8f15-d03250267b31" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502457706)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107257706)\\/\",\"ClientRequestId\":\"8e3ff2e4-e6da-4cf1-adbf-0f6d60da2b91-2020-05-03 11:40:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GUhqjBttUul6AOOzcFkP6nBDTtprVMoi19fzzIxX6mE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693188711)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297988711)\\/\",\"ClientRequestId\":\"42ae9234-2207-4b2c-b51d-8ee2fc68f7d8-2021-04-17 21:59:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NO29HMWsWIS9cC/tBBq5Rk8C9e3N8DIW38Is8tRcvIM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23190,38 +22404,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11732" + "11714" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "8e3ff2e4-e6da-4cf1-adbf-0f6d60da2b91-2020-05-03 11:40:57Z-Ps 5/3/2020 11:40:58 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "c6cb8ebe-9772-4bd1-8f15-d03250267b31 4/17/2021 9:59:48 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "8e3ff2e4-e6da-4cf1-adbf-0f6d60da2b91-2020-05-03 11:40:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c6cb8ebe-9772-4bd1-8f15-d03250267b31" ], "x-ms-correlation-request-id": [ - "be7c7cbd-f8f1-4127-aac9-ef54260487cb" + "93e76a4b-16fe-4d06-a876-fc86d79c491a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114058Z:be7c7cbd-f8f1-4127-aac9-ef54260487cb" + "CENTRALUSEUAP:20210417T215948Z:93e76a4b-16fe-4d06-a876-fc86d79c491a" ], "Date": [ - "Sun, 03 May 2020 11:40:58 GMT" + "Sat, 17 Apr 2021 21:59:48 GMT" ], "Content-Length": [ - "1741" + "1749" ], "Content-Type": [ "application/json" @@ -23230,29 +22441,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationRecoveryPlans/A2ARP918\",\r\n \"name\": \"A2ARP918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans\",\r\n \"properties\": {\r\n \"friendlyName\": \"A2ARP918\",\r\n \"primaryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"recoveryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"replicationProviders\": [\r\n \"A2A\"\r\n ],\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"TestFailover\"\r\n ],\r\n \"currentScenario\": null,\r\n \"currentScenarioStatus\": null,\r\n \"currentScenarioStatusDescription\": null,\r\n \"groups\": [\r\n {\r\n \"groupType\": \"Shutdown\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Failover\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Boot\",\r\n \"replicationProtectedItems\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918\",\r\n \"virtualMachineId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\"\r\n }\r\n ],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n }\r\n ],\r\n \"providerSpecificDetails\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationRecoveryPlans/A2ARP918\",\r\n \"name\": \"A2ARP918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans\",\r\n \"properties\": {\r\n \"friendlyName\": \"A2ARP918\",\r\n \"primaryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"replicationProviders\": [\r\n \"A2A\"\r\n ],\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"TestFailover\"\r\n ],\r\n \"currentScenario\": null,\r\n \"currentScenarioStatus\": null,\r\n \"currentScenarioStatusDescription\": null,\r\n \"groups\": [\r\n {\r\n \"groupType\": \"Shutdown\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Failover\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Boot\",\r\n \"replicationProtectedItems\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918\",\r\n \"virtualMachineId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\"\r\n }\r\n ],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n }\r\n ],\r\n \"providerSpecificDetails\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationProtectedItems?$filter=RecoveryPlanName%20eq%20'A2ARP918'&api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvblByb3RlY3RlZEl0ZW1zPyRmaWx0ZXI9UmVjb3ZlcnlQbGFuTmFtZSUyMGVxJTIwJ0EyQVJQOTE4JyZhcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationProtectedItems?$filter=RecoveryPlanName%20eq%20'A2ARP918'&api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvblByb3RlY3RlZEl0ZW1zPyRmaWx0ZXI9UmVjb3ZlcnlQbGFuTmFtZSUyMGVxJTIwJ0EyQVJQOTE4JyZhcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19c206bc-18ca-42c3-86c9-bff4a75f27e1-2020-05-03 11:40:57Z-Ps" + "2bc2d1b9-adc9-43f0-b4d8-9611a9ecbcc6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502457040)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107257040)\\/\",\"ClientRequestId\":\"19c206bc-18ca-42c3-86c9-bff4a75f27e1-2020-05-03 11:40:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4dLu5Hd6sF6bQZnsAuKDHkuUvI21XHMPmgz2oMV5cL4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693188085)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297988085)\\/\",\"ClientRequestId\":\"04837c33-3692-4e95-84f1-eba8dee92c79-2021-04-17 21:59:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BApTJjxp1ix2JaJ7avZv62oFzKClJFeDpmLUzb0ikIA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23263,38 +22474,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11733" + "11715" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "19c206bc-18ca-42c3-86c9-bff4a75f27e1-2020-05-03 11:40:57Z-Ps 5/3/2020 11:40:57 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "2bc2d1b9-adc9-43f0-b4d8-9611a9ecbcc6 4/17/2021 9:59:48 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "19c206bc-18ca-42c3-86c9-bff4a75f27e1-2020-05-03 11:40:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2bc2d1b9-adc9-43f0-b4d8-9611a9ecbcc6" ], "x-ms-correlation-request-id": [ - "5b33cd09-2d47-4da7-8e63-f0c261dab2c9" + "17069f9a-b766-4c34-92cb-c532d08599ef" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114057Z:5b33cd09-2d47-4da7-8e63-f0c261dab2c9" + "CENTRALUSEUAP:20210417T215948Z:17069f9a-b766-4c34-92cb-c532d08599ef" ], "Date": [ - "Sun, 03 May 2020 11:40:57 GMT" + "Sat, 17 Apr 2021 21:59:48 GMT" ], "Content-Length": [ - "7832" + "8299" ], "Content-Type": [ "application/json" @@ -23303,29 +22511,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918\",\r\n \"name\": \"a2aVM918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM918\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationRecoveryServicesProviders/6e535ac3-17a7-5679-9741-7bc3030b5f79\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer918\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer918\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM918'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-05-03T11:40:50.6247676Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918\",\r\n \"policyFriendlyName\": \"TestA2APolicy1918\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm918/providers/microsoft.compute/virtualmachines/a2avm918\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"cedcc562-af68-407d-b688-d233116ffcbe\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2c86cd92-0e69-4d9c-a8bc-782002d46284\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm918/providers/microsoft.compute/disks/a2avm918_osdisk_1_0c12d1210b1c49f783b52ff5249c77bb\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Compute/disks/a2aVM918_OsDisk_1_0c12d1210b1c49f783b52ff5249c77bb-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM918_OsDisk_1_0c12d1210b1c49f783b52ff5249c77bb\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Storage/storageAccounts/cache918\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.0,\r\n \"diskState\": null,\r\n \"allowedDiskLevelOperation\": null,\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM918_OsDisk_1_0c12d1210b1c49f783b52ff5249c77bb\",\r\n \"tfoDiskName\": \"a2aVM918_OsDisk_1_0c12d1210b1c49f783b52ff5249c77bb-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM918\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/recrg918/providers/microsoft.network/virtualnetworks/a2arecoverynetwork918\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"d8d586c2-a06e-5e54-a588-edbc7957d0bb\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918\",\r\n \"vMSubnetName\": \"a2aVM918\",\r\n \"vMNetworkName\": \"a2avm918\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/recrg918/providers/microsoft.network/virtualnetworks/a2arecoverynetwork918\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoNicName\": null,\r\n \"tfoNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": null\r\n },\r\n \"monitoringPercentageCompletion\": 99,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2020-05-03T11:40:23.6804381Z\",\r\n \"agentVersion\": \"9.32.5487.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"93face9d-1965-4937-ac24-a795d3e58119\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 1830,\r\n \"lastRpoCalculatedTime\": \"2020-05-03T11:40:43.4020125Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM918-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG918/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918\",\r\n \"eventCorrelationId\": \"dcd952d5-b6fd-4ff7-9a51-f09f13b40ae6\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationProtectionContainers/A2APrimaryContainer918/replicationProtectedItems/a2aVM918\",\r\n \"name\": \"a2aVM918\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM918\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aPrimaryFabric918/replicationRecoveryServicesProviders/104a79ea-3df4-5f41-a3cd-e6b7b5e7a143\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer918\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer918\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM918'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-17T21:59:41.8912599Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationPolicies/TestA2APolicy1918\",\r\n \"policyFriendlyName\": \"TestA2APolicy1918\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm918/providers/microsoft.compute/virtualmachines/a2avm918\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"1642efc7-fb5e-4ca6-b077-3db2cce23d05\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"50f8b78c-c849-413e-8314-7e383253bbe3\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm918/providers/microsoft.compute/disks/a2avm918_osdisk_1_5d9da26740f94b2eb974cf23bc75b546\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Compute/disks/a2aVM918_OsDisk_1_5d9da26740f94b2eb974cf23bc75b546-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM918_OsDisk_1_5d9da26740f94b2eb974cf23bc75b546\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Storage/storageAccounts/cache918\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.0,\r\n \"diskState\": null,\r\n \"allowedDiskLevelOperation\": null,\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM918_OsDisk_1_5d9da26740f94b2eb974cf23bc75b546\",\r\n \"tfoDiskName\": \"a2aVM918_OsDisk_1_5d9da26740f94b2eb974cf23bc75b546-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM918\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg918/providers/microsoft.network/virtualnetworks/a2arecoverynetwork918\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"22580f2b-1647-517e-9c9e-9da990b62ecb\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/networkInterfaces/a2aVM918\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM918/providers/Microsoft.Network/virtualNetworks/a2aVM918\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg918/providers/microsoft.network/virtualnetworks/a2arecoverynetwork918\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM918\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM918\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": null\r\n },\r\n \"monitoringPercentageCompletion\": 86,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2021-04-17T21:59:23.2430973Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-16T21:14:21Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"2afb2257-4591-4464-a0fc-3e6b7a9344d3\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 1908,\r\n \"lastRpoCalculatedTime\": \"2021-04-17T21:59:34.4828887Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM918-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG918/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr\",\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationFabrics/a2aRecoveryFabric918/replicationProtectionContainers/A2ARecoveryContainer918\",\r\n \"eventCorrelationId\": \"71f739ab-499d-41d8-841d-7200f058a60a\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationRecoveryPlans/A2ARP918/unplannedFailover?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvblJlY292ZXJ5UGxhbnMvQTJBUlA5MTgvdW5wbGFubmVkRmFpbG92ZXI/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationRecoveryPlans/A2ARP918/unplannedFailover?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvblJlY292ZXJ5UGxhbnMvQTJBUlA5MTgvdW5wbGFubmVkRmFpbG92ZXI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "POST", "RequestBody": "{\r\n \"properties\": {\r\n \"failoverDirection\": \"PrimaryToRecovery\",\r\n \"sourceSiteOperations\": \"Required\",\r\n \"providerSpecificDetails\": [\r\n {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointType\": \"Latest\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps" + "c6cb8ebe-9772-4bd1-8f15-d03250267b31" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502458590)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107258590)\\/\",\"ClientRequestId\":\"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fEjWyWAFOhM7WETM3IctOdsxSQD1a/vCaypPWsrVegg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693189167)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297989167)\\/\",\"ClientRequestId\":\"269947fe-1000-4be5-90e7-074953e12309-2021-04-17 21:59:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QF9hIwwvRXamyoLRmZaRzY7aVBxaHoynhGLcftXyxDE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -23342,41 +22550,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationRecoveryPlans/A2ARP918/operationresults/bd8e816e-e725-4d60-89d6-e7992e01d75e?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationRecoveryPlans/A2ARP918/operationresults/0d451090-87c9-4d0f-bcbe-e363fa6ef96a?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/bd8e816e-e725-4d60-89d6-e7992e01d75e", - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/bd8e816e-e725-4d60-89d6-e7992e01d75e" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/0d451090-87c9-4d0f-bcbe-e363fa6ef96a", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/0d451090-87c9-4d0f-bcbe-e363fa6ef96a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/bd8e816e-e725-4d60-89d6-e7992e01d75e?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationOperationStatus/0d451090-87c9-4d0f-bcbe-e363fa6ef96a?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "c6cb8ebe-9772-4bd1-8f15-d03250267b31" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "cbd130e8-41cc-4ea2-af4c-78bbd6447a3b" + "52fa6a1c-9db1-4dd7-aee4-bcdaa8e89031" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114059Z:cbd130e8-41cc-4ea2-af4c-78bbd6447a3b" + "CENTRALUSEUAP:20210417T215949Z:52fa6a1c-9db1-4dd7-aee4-bcdaa8e89031" ], "Date": [ - "Sun, 03 May 2020 11:40:58 GMT" + "Sat, 17 Apr 2021 21:59:49 GMT" ], "Expires": [ "-1" @@ -23389,25 +22594,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/bd8e816e-e725-4d60-89d6-e7992e01d75e?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvYmQ4ZTgxNmUtZTcyNS00ZDYwLTg5ZDYtZTc5OTJlMDFkNzVlP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/0d451090-87c9-4d0f-bcbe-e363fa6ef96a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvMGQ0NTEwOTAtODdjOS00ZDBmLWJjYmUtZTM2M2ZhNmVmOTZhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8e072b5-3aac-4ec1-9930-d848fbea0147-2020-05-03 11:40:59Z-Ps" + "c6cb8ebe-9772-4bd1-8f15-d03250267b31" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502459239)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107259239)\\/\",\"ClientRequestId\":\"b8e072b5-3aac-4ec1-9930-d848fbea0147-2020-05-03 11:40:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"etRvYlk7wha2yysUHa3gZ4NabQtk05198Z5O29mHhxA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693189790)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297989790)\\/\",\"ClientRequestId\":\"99df78e4-89ce-4639-89f2-8198f98c2ac5-2021-04-17 21:59:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Buflv8KlEoOg6pK0z4ZbZfQFuNyrGxfav0MJIIF8f7s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23418,38 +22623,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11731" + "11713" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b8e072b5-3aac-4ec1-9930-d848fbea0147-2020-05-03 11:40:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c6cb8ebe-9772-4bd1-8f15-d03250267b31" ], "x-ms-correlation-request-id": [ - "8b93a40b-56a2-4bcb-9b00-320bd758cc93" + "5f3b87b8-b60b-41e8-b567-cfa3b259aaad" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114059Z:8b93a40b-56a2-4bcb-9b00-320bd758cc93" + "CENTRALUSEUAP:20210417T215950Z:5f3b87b8-b60b-41e8-b567-cfa3b259aaad" ], "Date": [ - "Sun, 03 May 2020 11:40:59 GMT" + "Sat, 17 Apr 2021 21:59:49 GMT" ], "Content-Length": [ - "6131" + "6115" ], "Content-Type": [ "application/json" @@ -23458,29 +22660,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"name\": \"70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c6cb8ebe-9772-4bd1-8f15-d03250267b31 ActivityId: 52fa6a1c-9db1-4dd7-aee4-bcdaa8e89031\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"37159a96-8247-4e64-889c-73f2e147352e\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"045bee5a-af5a-443a-88fc-840be0d5e853\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8e85c8b8-5a13-4eca-8513-73ceb9d4dabc\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"fc24aa9b-a7f3-42b2-9486-bb05b10605be\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"578f8288-ab8a-4aa5-8c7f-3041048ed76a\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:59:49.8349776Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a0038247-b232-491f-8126-5fc47bce9c12\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBiM2E3ODAtYWY3NS00YmUzLWFhZTAtMmE1ZWI3Mzg1NmUwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7233c988-82c0-420f-b781-017b3da31a0a-2020-05-03 11:40:59Z-Ps" + "5b606e19-b698-47ef-ad73-8822f0c40d17" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502459730)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107259730)\\/\",\"ClientRequestId\":\"7233c988-82c0-420f-b781-017b3da31a0a-2020-05-03 11:40:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"swaoHHDCa1f9wcvxfm2M1EdGdVK8G8YiUG/2TEtEuZs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693190192)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619297990192)\\/\",\"ClientRequestId\":\"a1a258e2-7662-4d3e-be16-dc6f2655fd86-2021-04-17 21:59:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SmA4/EVGU1fth6Cj5hwMpMXzSEnWRfum3/gVzeuvcys=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23491,38 +22693,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11730" + "11712" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7233c988-82c0-420f-b781-017b3da31a0a-2020-05-03 11:40:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5b606e19-b698-47ef-ad73-8822f0c40d17" ], "x-ms-correlation-request-id": [ - "44ec922e-0403-417a-b111-62ad15705fbf" + "f344a7ed-d682-4c1f-a94d-8d9a251e8b66" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114100Z:44ec922e-0403-417a-b111-62ad15705fbf" + "CENTRALUSEUAP:20210417T215950Z:f344a7ed-d682-4c1f-a94d-8d9a251e8b66" ], "Date": [ - "Sun, 03 May 2020 11:41:00 GMT" + "Sat, 17 Apr 2021 21:59:49 GMT" ], "Content-Length": [ - "6131" + "6115" ], "Content-Type": [ "application/json" @@ -23531,29 +22730,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"name\": \"70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c6cb8ebe-9772-4bd1-8f15-d03250267b31 ActivityId: 52fa6a1c-9db1-4dd7-aee4-bcdaa8e89031\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"37159a96-8247-4e64-889c-73f2e147352e\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"045bee5a-af5a-443a-88fc-840be0d5e853\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8e85c8b8-5a13-4eca-8513-73ceb9d4dabc\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"fc24aa9b-a7f3-42b2-9486-bb05b10605be\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"578f8288-ab8a-4aa5-8c7f-3041048ed76a\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:59:49.8349776Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a0038247-b232-491f-8126-5fc47bce9c12\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBiM2E3ODAtYWY3NS00YmUzLWFhZTAtMmE1ZWI3Mzg1NmUwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2cf86c7-4004-4127-aa06-24505604f43d-2020-05-03 11:41:20Z-Ps" + "ed9f024a-f3a1-4889-acf5-518d3ff4c41b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502480766)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107280766)\\/\",\"ClientRequestId\":\"d2cf86c7-4004-4127-aa06-24505604f43d-2020-05-03 11:41:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PnAMvlcBn30OZmUrWxAezvXDK7RtzlumF09/Chai8YM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693210581)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619298010581)\\/\",\"ClientRequestId\":\"ab34eb7b-3faa-48af-80fe-62b958108cfc-2021-04-17 22:00:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pBxVXyZpQ0AdsFYe+5/cpXct3FDpIgunIulWuVCIDf4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23564,38 +22763,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11729" + "11711" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d2cf86c7-4004-4127-aa06-24505604f43d-2020-05-03 11:41:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ed9f024a-f3a1-4889-acf5-518d3ff4c41b" ], "x-ms-correlation-request-id": [ - "0c441d75-bc0b-498a-96ab-3b7028c25767" + "cda65b74-248f-40e1-b122-4720394dc4bf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114121Z:0c441d75-bc0b-498a-96ab-3b7028c25767" + "CENTRALUSEUAP:20210417T220010Z:cda65b74-248f-40e1-b122-4720394dc4bf" ], "Date": [ - "Sun, 03 May 2020 11:41:21 GMT" + "Sat, 17 Apr 2021 22:00:10 GMT" ], "Content-Length": [ - "6221" + "6204" ], "Content-Type": [ "application/json" @@ -23604,29 +22800,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"name\": \"70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c6cb8ebe-9772-4bd1-8f15-d03250267b31 ActivityId: 52fa6a1c-9db1-4dd7-aee4-bcdaa8e89031\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"37159a96-8247-4e64-889c-73f2e147352e\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:59:50.572901Z\",\r\n \"endTime\": \"2021-04-17T22:00:00.6682263Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"045bee5a-af5a-443a-88fc-840be0d5e853\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/9737b18f-95e5-4690-972d-29c38574751d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8e85c8b8-5a13-4eca-8513-73ceb9d4dabc\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"fc24aa9b-a7f3-42b2-9486-bb05b10605be\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"578f8288-ab8a-4aa5-8c7f-3041048ed76a\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:59:49.8349776Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a0038247-b232-491f-8126-5fc47bce9c12\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBiM2E3ODAtYWY3NS00YmUzLWFhZTAtMmE1ZWI3Mzg1NmUwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a2a73c9-c47f-4369-8e9e-701843814a01-2020-05-03 11:41:41Z-Ps" + "c3fc32df-c7f3-4b57-a304-2705050f1823" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502501891)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107301891)\\/\",\"ClientRequestId\":\"7a2a73c9-c47f-4369-8e9e-701843814a01-2020-05-03 11:41:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ofiy2T0HGZoPdRqUDbzlVk2jzOOj3dtFBCqO2DKcGHk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693230995)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619298030995)\\/\",\"ClientRequestId\":\"de6a469b-de25-4623-97fe-172fc2fcc0c1-2021-04-17 22:00:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oPd+6MBNa9ZE1hwbH7R5NvdjVdkTddK3vi04srznadI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23637,38 +22833,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11728" + "11710" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7a2a73c9-c47f-4369-8e9e-701843814a01-2020-05-03 11:41:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c3fc32df-c7f3-4b57-a304-2705050f1823" ], "x-ms-correlation-request-id": [ - "a94775ae-90d9-4e53-98c9-8808dcc5fb98" + "50e2d6ff-6d6c-4f12-b757-e2e6a1b53172" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114142Z:a94775ae-90d9-4e53-98c9-8808dcc5fb98" + "CENTRALUSEUAP:20210417T220031Z:50e2d6ff-6d6c-4f12-b757-e2e6a1b53172" ], "Date": [ - "Sun, 03 May 2020 11:41:42 GMT" + "Sat, 17 Apr 2021 22:00:30 GMT" ], "Content-Length": [ - "6221" + "6204" ], "Content-Type": [ "application/json" @@ -23677,29 +22870,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"name\": \"70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c6cb8ebe-9772-4bd1-8f15-d03250267b31 ActivityId: 52fa6a1c-9db1-4dd7-aee4-bcdaa8e89031\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"37159a96-8247-4e64-889c-73f2e147352e\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:59:50.572901Z\",\r\n \"endTime\": \"2021-04-17T22:00:00.6682263Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"045bee5a-af5a-443a-88fc-840be0d5e853\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/9737b18f-95e5-4690-972d-29c38574751d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8e85c8b8-5a13-4eca-8513-73ceb9d4dabc\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"fc24aa9b-a7f3-42b2-9486-bb05b10605be\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"578f8288-ab8a-4aa5-8c7f-3041048ed76a\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:59:49.8349776Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a0038247-b232-491f-8126-5fc47bce9c12\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBiM2E3ODAtYWY3NS00YmUzLWFhZTAtMmE1ZWI3Mzg1NmUwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00c29cbd-e2c7-4bcb-940f-7291f8d22729-2020-05-03 11:42:02Z-Ps" + "6e9e8e24-3324-49ce-a928-708878d1e52d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502522479)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107322479)\\/\",\"ClientRequestId\":\"00c29cbd-e2c7-4bcb-940f-7291f8d22729-2020-05-03 11:42:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EV3M9Rm3taXn4fXOQAoTFbGOx3tQUhabjPsFoqAMAgY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693251412)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619298051412)\\/\",\"ClientRequestId\":\"793bdcc0-8707-452f-b49e-556741878398-2021-04-17 22:00:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"X+3xK91zLUwYeIHKh6BmdiNqTavZWihyXTTlhWrG0RQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23709,39 +22902,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11709" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "00c29cbd-e2c7-4bcb-940f-7291f8d22729-2020-05-03 11:42:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11727" + "6e9e8e24-3324-49ce-a928-708878d1e52d" ], "x-ms-correlation-request-id": [ - "609ceb42-a66e-4dbf-91de-f1819b447060" + "18fe9aff-d5d3-477a-a645-9757d3ba72f6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114203Z:609ceb42-a66e-4dbf-91de-f1819b447060" + "CENTRALUSEUAP:20210417T220051Z:18fe9aff-d5d3-477a-a645-9757d3ba72f6" ], "Date": [ - "Sun, 03 May 2020 11:42:02 GMT" + "Sat, 17 Apr 2021 22:00:50 GMT" ], "Content-Length": [ - "6221" + "6204" ], "Content-Type": [ "application/json" @@ -23750,29 +22940,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"name\": \"70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c6cb8ebe-9772-4bd1-8f15-d03250267b31 ActivityId: 52fa6a1c-9db1-4dd7-aee4-bcdaa8e89031\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"37159a96-8247-4e64-889c-73f2e147352e\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:59:50.572901Z\",\r\n \"endTime\": \"2021-04-17T22:00:00.6682263Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"045bee5a-af5a-443a-88fc-840be0d5e853\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/9737b18f-95e5-4690-972d-29c38574751d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8e85c8b8-5a13-4eca-8513-73ceb9d4dabc\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"fc24aa9b-a7f3-42b2-9486-bb05b10605be\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"578f8288-ab8a-4aa5-8c7f-3041048ed76a\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:59:49.8349776Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a0038247-b232-491f-8126-5fc47bce9c12\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBiM2E3ODAtYWY3NS00YmUzLWFhZTAtMmE1ZWI3Mzg1NmUwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e33fb0c6-3751-489f-adfa-4a0b21d05317-2020-05-03 11:42:23Z-Ps" + "26a0cf64-fb52-4f88-82cc-3cdfea0d701f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502543502)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107343502)\\/\",\"ClientRequestId\":\"e33fb0c6-3751-489f-adfa-4a0b21d05317-2020-05-03 11:42:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"C30zIhXtUbZw0VGXOb6XeDGmRQmOWQNiez3WZ+bg6v4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693271806)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619298071806)\\/\",\"ClientRequestId\":\"f3531cb1-3350-43eb-a51a-6fd475217dfb-2021-04-17 22:01:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fxPaBsldNADdjDWqt33FiqYviTWkYext6tJlrs2quq0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23782,39 +22972,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11726" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e33fb0c6-3751-489f-adfa-4a0b21d05317-2020-05-03 11:42:23Z-Ps" + "26a0cf64-fb52-4f88-82cc-3cdfea0d701f" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11708" ], "x-ms-correlation-request-id": [ - "10bdaafb-74c8-47d7-bca1-02778fe08ba4" + "736b114d-1e54-4b1f-af99-3d7d00e1bc71" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114225Z:10bdaafb-74c8-47d7-bca1-02778fe08ba4" + "CENTRALUSEUAP:20210417T220112Z:736b114d-1e54-4b1f-af99-3d7d00e1bc71" ], "Date": [ - "Sun, 03 May 2020 11:42:24 GMT" + "Sat, 17 Apr 2021 22:01:11 GMT" ], "Content-Length": [ - "6221" + "6290" ], "Content-Type": [ "application/json" @@ -23823,29 +23010,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"name\": \"70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c6cb8ebe-9772-4bd1-8f15-d03250267b31 ActivityId: 52fa6a1c-9db1-4dd7-aee4-bcdaa8e89031\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"37159a96-8247-4e64-889c-73f2e147352e\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:59:50.572901Z\",\r\n \"endTime\": \"2021-04-17T22:00:00.6682263Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7954958Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7954958Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"045bee5a-af5a-443a-88fc-840be0d5e853\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7754954Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/9737b18f-95e5-4690-972d-29c38574751d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:01:05.9704964Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8e85c8b8-5a13-4eca-8513-73ceb9d4dabc\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:01:05.9654981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/13b3f013-049d-4906-b5e6-88eb074dad33\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"fc24aa9b-a7f3-42b2-9486-bb05b10605be\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"578f8288-ab8a-4aa5-8c7f-3041048ed76a\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:59:49.8349776Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a0038247-b232-491f-8126-5fc47bce9c12\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBiM2E3ODAtYWY3NS00YmUzLWFhZTAtMmE1ZWI3Mzg1NmUwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f6e5854e-cd89-4261-902a-26724f7635ee-2020-05-03 11:42:45Z-Ps" + "b7ccbe33-f55b-4ce1-80ca-30f537c1b38f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502565568)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107365568)\\/\",\"ClientRequestId\":\"f6e5854e-cd89-4261-902a-26724f7635ee-2020-05-03 11:42:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Wp01tOOBBUzooWPXlPUyFD1fq6sESP4LqToevcBDV4Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693292208)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619298092208)\\/\",\"ClientRequestId\":\"37e1a145-e1cb-4d26-b19c-edf41377593c-2021-04-17 22:01:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1ArpO1FGm8l2bec3SXO16j+pBA8GfD+veb6Jqm+Yz9Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23856,38 +23043,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11725" + "11707" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f6e5854e-cd89-4261-902a-26724f7635ee-2020-05-03 11:42:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b7ccbe33-f55b-4ce1-80ca-30f537c1b38f" ], "x-ms-correlation-request-id": [ - "4a091474-8d51-4edb-b6e9-15c467cfae90" + "7d662ff2-3b22-4d92-8e63-9693b620f779" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114245Z:4a091474-8d51-4edb-b6e9-15c467cfae90" + "CENTRALUSEUAP:20210417T220132Z:7d662ff2-3b22-4d92-8e63-9693b620f779" ], "Date": [ - "Sun, 03 May 2020 11:42:45 GMT" + "Sat, 17 Apr 2021 22:01:32 GMT" ], "Content-Length": [ - "6221" + "6290" ], "Content-Type": [ "application/json" @@ -23896,29 +23080,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"name\": \"70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c6cb8ebe-9772-4bd1-8f15-d03250267b31 ActivityId: 52fa6a1c-9db1-4dd7-aee4-bcdaa8e89031\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"37159a96-8247-4e64-889c-73f2e147352e\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:59:50.572901Z\",\r\n \"endTime\": \"2021-04-17T22:00:00.6682263Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7954958Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7954958Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"045bee5a-af5a-443a-88fc-840be0d5e853\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7754954Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/9737b18f-95e5-4690-972d-29c38574751d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:01:05.9704964Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8e85c8b8-5a13-4eca-8513-73ceb9d4dabc\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:01:05.9654981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/13b3f013-049d-4906-b5e6-88eb074dad33\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"fc24aa9b-a7f3-42b2-9486-bb05b10605be\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"578f8288-ab8a-4aa5-8c7f-3041048ed76a\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:59:49.8349776Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a0038247-b232-491f-8126-5fc47bce9c12\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBiM2E3ODAtYWY3NS00YmUzLWFhZTAtMmE1ZWI3Mzg1NmUwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "447535b0-268c-4703-bcff-5cce0c54c96b-2020-05-03 11:43:06Z-Ps" + "5595df67-a9e2-46b4-95db-86c19c158ac5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502586172)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107386172)\\/\",\"ClientRequestId\":\"447535b0-268c-4703-bcff-5cce0c54c96b-2020-05-03 11:43:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"w0iLIbRHO8i1a3txra4ElsGflQPWLHsyH7Fj+lyeAGI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693312825)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619298112825)\\/\",\"ClientRequestId\":\"965aa656-9873-4664-afcd-d79e50ae4e62-2021-04-17 22:01:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CMcvScTJihjbCOp0ezE7tJwGivx7fcU4sMkWWmCAAT0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23929,38 +23113,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11724" + "11706" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "447535b0-268c-4703-bcff-5cce0c54c96b-2020-05-03 11:43:06Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5595df67-a9e2-46b4-95db-86c19c158ac5" ], "x-ms-correlation-request-id": [ - "19bda5d7-da14-4fee-8c24-24446356e126" + "c60bc5fb-4b8f-439f-873d-0a5d0765e48c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114306Z:19bda5d7-da14-4fee-8c24-24446356e126" + "CENTRALUSEUAP:20210417T220153Z:c60bc5fb-4b8f-439f-873d-0a5d0765e48c" ], "Date": [ - "Sun, 03 May 2020 11:43:05 GMT" + "Sat, 17 Apr 2021 22:01:52 GMT" ], "Content-Length": [ - "6221" + "6290" ], "Content-Type": [ "application/json" @@ -23969,29 +23150,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"name\": \"70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c6cb8ebe-9772-4bd1-8f15-d03250267b31 ActivityId: 52fa6a1c-9db1-4dd7-aee4-bcdaa8e89031\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"37159a96-8247-4e64-889c-73f2e147352e\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:59:50.572901Z\",\r\n \"endTime\": \"2021-04-17T22:00:00.6682263Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7954958Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7954958Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"045bee5a-af5a-443a-88fc-840be0d5e853\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7754954Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/9737b18f-95e5-4690-972d-29c38574751d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:01:05.9704964Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8e85c8b8-5a13-4eca-8513-73ceb9d4dabc\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:01:05.9654981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/13b3f013-049d-4906-b5e6-88eb074dad33\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"fc24aa9b-a7f3-42b2-9486-bb05b10605be\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"578f8288-ab8a-4aa5-8c7f-3041048ed76a\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:59:49.8349776Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a0038247-b232-491f-8126-5fc47bce9c12\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBiM2E3ODAtYWY3NS00YmUzLWFhZTAtMmE1ZWI3Mzg1NmUwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85e2ded8-8bb2-4f05-961a-f055d9fb3408-2020-05-03 11:43:26Z-Ps" + "cf1ddce0-7d93-4e80-a290-0e7e6687580a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502606774)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107406774)\\/\",\"ClientRequestId\":\"85e2ded8-8bb2-4f05-961a-f055d9fb3408-2020-05-03 11:43:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jvfU/PF7Ntji4CNS1/k2Qmsd9oJi0tvvyQ0hl/Ox92w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693333234)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619298133234)\\/\",\"ClientRequestId\":\"8d5d509a-8b89-4042-bfd5-9a989a4347a1-2021-04-17 22:02:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iUTxjV2HDLu37uKaS7nbHK0tUzbWYPLiUQgU5WuIpoc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24002,38 +23183,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11723" + "11705" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "85e2ded8-8bb2-4f05-961a-f055d9fb3408-2020-05-03 11:43:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cf1ddce0-7d93-4e80-a290-0e7e6687580a" ], "x-ms-correlation-request-id": [ - "3a72c769-febe-4b67-8d3e-3ac56b1841f6" + "5117bb12-a90c-4a0e-b630-d771e1cbcefa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114327Z:3a72c769-febe-4b67-8d3e-3ac56b1841f6" + "CENTRALUSEUAP:20210417T220213Z:5117bb12-a90c-4a0e-b630-d771e1cbcefa" ], "Date": [ - "Sun, 03 May 2020 11:43:26 GMT" + "Sat, 17 Apr 2021 22:02:13 GMT" ], "Content-Length": [ - "6221" + "6290" ], "Content-Type": [ "application/json" @@ -24042,29 +23220,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"name\": \"70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c6cb8ebe-9772-4bd1-8f15-d03250267b31 ActivityId: 52fa6a1c-9db1-4dd7-aee4-bcdaa8e89031\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"37159a96-8247-4e64-889c-73f2e147352e\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:59:50.572901Z\",\r\n \"endTime\": \"2021-04-17T22:00:00.6682263Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7954958Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7954958Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"045bee5a-af5a-443a-88fc-840be0d5e853\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7754954Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/9737b18f-95e5-4690-972d-29c38574751d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:01:05.9704964Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8e85c8b8-5a13-4eca-8513-73ceb9d4dabc\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:01:05.9654981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/13b3f013-049d-4906-b5e6-88eb074dad33\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"fc24aa9b-a7f3-42b2-9486-bb05b10605be\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"578f8288-ab8a-4aa5-8c7f-3041048ed76a\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:59:49.8349776Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a0038247-b232-491f-8126-5fc47bce9c12\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBiM2E3ODAtYWY3NS00YmUzLWFhZTAtMmE1ZWI3Mzg1NmUwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a31f2ed3-95c4-49fd-b4f3-17969184473a-2020-05-03 11:43:47Z-Ps" + "c556503a-fb0f-46df-acdb-d939da22d702" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502627351)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107427351)\\/\",\"ClientRequestId\":\"a31f2ed3-95c4-49fd-b4f3-17969184473a-2020-05-03 11:43:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vykJ1s01kFZL7f9ifBWQMeuWtpAKiDK+u77dJLNZgps=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693353666)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619298153666)\\/\",\"ClientRequestId\":\"05532683-2f19-472d-afb5-025c7da02ff3-2021-04-17 22:02:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VA0nheTyGoQiEGYhlYCpkFW7E86k9azy4EyVnREddFA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24074,39 +23252,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11704" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a31f2ed3-95c4-49fd-b4f3-17969184473a-2020-05-03 11:43:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11722" + "c556503a-fb0f-46df-acdb-d939da22d702" ], "x-ms-correlation-request-id": [ - "dced0b0a-da00-4e81-a139-5bf6b69b5bfd" + "8aabcef4-90ea-4d8a-9f82-f8fda04bb44e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114347Z:dced0b0a-da00-4e81-a139-5bf6b69b5bfd" + "CENTRALUSEUAP:20210417T220233Z:8aabcef4-90ea-4d8a-9f82-f8fda04bb44e" ], "Date": [ - "Sun, 03 May 2020 11:43:46 GMT" + "Sat, 17 Apr 2021 22:02:33 GMT" ], "Content-Length": [ - "6221" + "6290" ], "Content-Type": [ "application/json" @@ -24115,29 +23290,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"name\": \"70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c6cb8ebe-9772-4bd1-8f15-d03250267b31 ActivityId: 52fa6a1c-9db1-4dd7-aee4-bcdaa8e89031\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"37159a96-8247-4e64-889c-73f2e147352e\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:59:50.572901Z\",\r\n \"endTime\": \"2021-04-17T22:00:00.6682263Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7954958Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7954958Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"045bee5a-af5a-443a-88fc-840be0d5e853\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7754954Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/9737b18f-95e5-4690-972d-29c38574751d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:01:05.9704964Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8e85c8b8-5a13-4eca-8513-73ceb9d4dabc\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:01:05.9654981Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/13b3f013-049d-4906-b5e6-88eb074dad33\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"fc24aa9b-a7f3-42b2-9486-bb05b10605be\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"578f8288-ab8a-4aa5-8c7f-3041048ed76a\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:59:49.8349776Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a0038247-b232-491f-8126-5fc47bce9c12\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBiM2E3ODAtYWY3NS00YmUzLWFhZTAtMmE1ZWI3Mzg1NmUwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f42d2333-7ce0-49e7-aa01-2b8383dab8d9-2020-05-03 11:44:07Z-Ps" + "45374de7-50db-426e-b0a4-fa637575b91a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502647929)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107447929)\\/\",\"ClientRequestId\":\"f42d2333-7ce0-49e7-aa01-2b8383dab8d9-2020-05-03 11:44:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wBmCHfxToW9wOYv9vIw0H78XPQAV0Lz4wn9FFmMqlak=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693374093)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619298174093)\\/\",\"ClientRequestId\":\"c4a83e59-5ddf-425e-90d7-b0111a4b7f67-2021-04-17 22:02:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"b9vNu/tdgm7jUGnZtVFvmwbRnLoZ1jjtez6FgmgBAPg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24148,38 +23323,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11721" + "11703" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f42d2333-7ce0-49e7-aa01-2b8383dab8d9-2020-05-03 11:44:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "45374de7-50db-426e-b0a4-fa637575b91a" ], "x-ms-correlation-request-id": [ - "6df8a739-7fb1-4d71-9c46-4762306ed411" + "040f43bf-861e-42a8-8685-89ee177b345d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114408Z:6df8a739-7fb1-4d71-9c46-4762306ed411" + "CENTRALUSEUAP:20210417T220254Z:040f43bf-861e-42a8-8685-89ee177b345d" ], "Date": [ - "Sun, 03 May 2020 11:44:07 GMT" + "Sat, 17 Apr 2021 22:02:53 GMT" ], "Content-Length": [ - "6221" + "6369" ], "Content-Type": [ "application/json" @@ -24188,29 +23360,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"name\": \"70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c6cb8ebe-9772-4bd1-8f15-d03250267b31 ActivityId: 52fa6a1c-9db1-4dd7-aee4-bcdaa8e89031\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"37159a96-8247-4e64-889c-73f2e147352e\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:59:50.572901Z\",\r\n \"endTime\": \"2021-04-17T22:00:00.6682263Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7954958Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7954958Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"045bee5a-af5a-443a-88fc-840be0d5e853\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7754954Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/9737b18f-95e5-4690-972d-29c38574751d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:01:05.9704964Z\",\r\n \"endTime\": \"2021-04-17T22:02:39.8487988Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8e85c8b8-5a13-4eca-8513-73ceb9d4dabc\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:01:05.9654981Z\",\r\n \"endTime\": \"2021-04-17T22:02:39.8287448Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/13b3f013-049d-4906-b5e6-88eb074dad33\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:02:40.0337483Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"fc24aa9b-a7f3-42b2-9486-bb05b10605be\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:02:40.0337483Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6a333183-c50b-424b-88f5-a64e038c0857\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"578f8288-ab8a-4aa5-8c7f-3041048ed76a\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:59:49.8349776Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a0038247-b232-491f-8126-5fc47bce9c12\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBiM2E3ODAtYWY3NS00YmUzLWFhZTAtMmE1ZWI3Mzg1NmUwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "688497c7-a19e-48f6-b640-0a8a01df44b7-2020-05-03 11:44:28Z-Ps" + "800390ba-b0e5-4891-abcb-166ca01153a6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502668541)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107468541)\\/\",\"ClientRequestId\":\"688497c7-a19e-48f6-b640-0a8a01df44b7-2020-05-03 11:44:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ene6vBXoORQ9dT/2sYqDhP1lezFADoRhJP2mP5POFYw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693394499)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619298194499)\\/\",\"ClientRequestId\":\"57ba9a72-4b5e-4f82-b547-11bd16fafcd6-2021-04-17 22:03:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EwQaRHRVogKs09P5BLlNFas6aiVb147zWivR/ngB25U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24221,768 +23393,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11720" + "11702" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "688497c7-a19e-48f6-b640-0a8a01df44b7-2020-05-03 11:44:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-correlation-request-id": [ - "f9fb0a5b-d393-43f1-a269-d2716b283e0c" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114428Z:f9fb0a5b-d393-43f1-a269-d2716b283e0c" - ], - "Date": [ - "Sun, 03 May 2020 11:44:28 GMT" - ], - "Content-Length": [ - "6221" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "98c5b739-a478-43ef-bc53-7cc51c15eea9-2020-05-03 11:44:49Z-Ps" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502689122)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107489122)\\/\",\"ClientRequestId\":\"98c5b739-a478-43ef-bc53-7cc51c15eea9-2020-05-03 11:44:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NyV9JXkResAGJ0TQ4BwIZ3HVpkT9/STA8et3nKDf0pg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11719" - ], - "Server": [ - "Microsoft-IIS/10.0", - "Kestrel" - ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "98c5b739-a478-43ef-bc53-7cc51c15eea9-2020-05-03 11:44:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-correlation-request-id": [ - "16a1b079-38db-4329-b7ba-004dab590dc6" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114449Z:16a1b079-38db-4329-b7ba-004dab590dc6" - ], - "Date": [ - "Sun, 03 May 2020 11:44:49 GMT" - ], - "Content-Length": [ - "6221" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "474d329f-15ba-4a8b-9fc5-7cf1956a76f6-2020-05-03 11:45:09Z-Ps" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502709699)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107509699)\\/\",\"ClientRequestId\":\"474d329f-15ba-4a8b-9fc5-7cf1956a76f6-2020-05-03 11:45:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZnJGeqnhP53SR7YkweoJt0YM35xMfzlvGpqE/kpc2Oo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/10.0", - "Kestrel" - ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "474d329f-15ba-4a8b-9fc5-7cf1956a76f6-2020-05-03 11:45:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11718" - ], - "x-ms-correlation-request-id": [ - "be039e26-fb3b-4263-b0d5-0d11fc2d5e1d" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114510Z:be039e26-fb3b-4263-b0d5-0d11fc2d5e1d" - ], - "Date": [ - "Sun, 03 May 2020 11:45:09 GMT" - ], - "Content-Length": [ - "6221" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fba24865-29a4-4a3e-8cbb-ad4644c33ce0-2020-05-03 11:45:30Z-Ps" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502730436)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107530436)\\/\",\"ClientRequestId\":\"fba24865-29a4-4a3e-8cbb-ad4644c33ce0-2020-05-03 11:45:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1ndZ8XTqcseIA15JGlRPqyRXNWQs9c3TwtBk9D2fAK0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11717" - ], - "Server": [ - "Microsoft-IIS/10.0", - "Kestrel" - ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "fba24865-29a4-4a3e-8cbb-ad4644c33ce0-2020-05-03 11:45:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-correlation-request-id": [ - "d67b57fc-90f1-4459-908c-fc068ddc2f20" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114532Z:d67b57fc-90f1-4459-908c-fc068ddc2f20" - ], - "Date": [ - "Sun, 03 May 2020 11:45:32 GMT" - ], - "Content-Length": [ - "6221" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "4b294846-565a-4d64-a991-09029286804f-2020-05-03 11:45:52Z-Ps" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502752212)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107552212)\\/\",\"ClientRequestId\":\"4b294846-565a-4d64-a991-09029286804f-2020-05-03 11:45:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/qb3NbmZlmg7Cbo665KNM/MFsmgOkyIEy0IWlEKuZOc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11716" - ], - "Server": [ - "Microsoft-IIS/10.0", - "Kestrel" - ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "4b294846-565a-4d64-a991-09029286804f-2020-05-03 11:45:52Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-correlation-request-id": [ - "a46c8c88-6313-470f-9db8-83800fde532e" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114552Z:a46c8c88-6313-470f-9db8-83800fde532e" - ], - "Date": [ - "Sun, 03 May 2020 11:45:51 GMT" - ], - "Content-Length": [ - "6307" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:45:49.4742553Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:45:49.4742553Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/621b8fe8-5240-450c-891c-fc0c04f14e04\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6adf0cd0-3b72-4b9d-833c-78e9e2a8892d-2020-05-03 11:46:12Z-Ps" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502772804)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107572804)\\/\",\"ClientRequestId\":\"6adf0cd0-3b72-4b9d-833c-78e9e2a8892d-2020-05-03 11:46:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EgPdVeWHeToeCRyjLbRiAqfzEpaXhfNa5uzX3o5ySmM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11715" - ], - "Server": [ - "Microsoft-IIS/10.0", - "Kestrel" - ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "6adf0cd0-3b72-4b9d-833c-78e9e2a8892d-2020-05-03 11:46:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-correlation-request-id": [ - "cfaba249-fee7-4f0e-8da2-8f68266570a1" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114613Z:cfaba249-fee7-4f0e-8da2-8f68266570a1" - ], - "Date": [ - "Sun, 03 May 2020 11:46:12 GMT" - ], - "Content-Length": [ - "6307" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:45:49.4742553Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:45:49.4742553Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/621b8fe8-5240-450c-891c-fc0c04f14e04\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8d2927b9-fd47-4d87-9a0d-1a0895bfe743-2020-05-03 11:46:33Z-Ps" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502793705)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107593705)\\/\",\"ClientRequestId\":\"8d2927b9-fd47-4d87-9a0d-1a0895bfe743-2020-05-03 11:46:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"deyfaaLS/FQh2/LOzSHIe0alwc0DInVQWVxN+8ZaHxE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11714" - ], - "Server": [ - "Microsoft-IIS/10.0", - "Kestrel" - ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "8d2927b9-fd47-4d87-9a0d-1a0895bfe743-2020-05-03 11:46:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-correlation-request-id": [ - "2e035f39-de49-4022-acf6-c3b0ecfdaf70" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114634Z:2e035f39-de49-4022-acf6-c3b0ecfdaf70" - ], - "Date": [ - "Sun, 03 May 2020 11:46:33 GMT" - ], - "Content-Length": [ - "6307" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:45:49.4742553Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:45:49.4742553Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/621b8fe8-5240-450c-891c-fc0c04f14e04\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "456cd084-9baa-46ec-87f5-5870345a1483-2020-05-03 11:46:54Z-Ps" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502814288)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107614288)\\/\",\"ClientRequestId\":\"456cd084-9baa-46ec-87f5-5870345a1483-2020-05-03 11:46:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"T2ZkV9WEudXfsB9p7eCplXezuXqbePIMHWnCcUB0qVY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/10.0", - "Kestrel" - ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "456cd084-9baa-46ec-87f5-5870345a1483-2020-05-03 11:46:54Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11713" - ], - "x-ms-correlation-request-id": [ - "8adac078-5f37-4bba-8e3e-9132a93a0fb5" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114654Z:8adac078-5f37-4bba-8e3e-9132a93a0fb5" - ], - "Date": [ - "Sun, 03 May 2020 11:46:53 GMT" - ], - "Content-Length": [ - "6307" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:45:49.4742553Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:45:49.4742553Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/621b8fe8-5240-450c-891c-fc0c04f14e04\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "bb361563-7ec7-499c-aaf4-6993eb2d204b-2020-05-03 11:47:15Z-Ps" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502835027)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107635027)\\/\",\"ClientRequestId\":\"bb361563-7ec7-499c-aaf4-6993eb2d204b-2020-05-03 11:47:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RObUk1YigPwLqXYULpR9i2wV5oZJWzVMp87GI37XEtY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11712" - ], - "Server": [ - "Microsoft-IIS/10.0", - "Kestrel" - ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "bb361563-7ec7-499c-aaf4-6993eb2d204b-2020-05-03 11:47:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-correlation-request-id": [ - "fd1eb83f-25f7-4c8e-85c4-22a1a8e1369f" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114716Z:fd1eb83f-25f7-4c8e-85c4-22a1a8e1369f" - ], - "Date": [ - "Sun, 03 May 2020 11:47:15 GMT" - ], - "Content-Length": [ - "6307" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:45:49.4742553Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:45:49.4742553Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/621b8fe8-5240-450c-891c-fc0c04f14e04\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a3f2be01-a726-465b-b8cc-6637b62d2b69-2020-05-03 11:47:36Z-Ps" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502856688)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107656688)\\/\",\"ClientRequestId\":\"a3f2be01-a726-465b-b8cc-6637b62d2b69-2020-05-03 11:47:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"68EyN6KlTTc5iBsXHwbKVIHn+uHEF6sbPWUNvgxtfOI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11711" - ], - "Server": [ - "Microsoft-IIS/10.0", - "Kestrel" - ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "a3f2be01-a726-465b-b8cc-6637b62d2b69-2020-05-03 11:47:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-correlation-request-id": [ - "3ae61ee3-7829-42a0-b1b9-7398d9c0dba4" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114737Z:3ae61ee3-7829-42a0-b1b9-7398d9c0dba4" - ], - "Date": [ - "Sun, 03 May 2020 11:47:36 GMT" - ], - "Content-Length": [ - "6386" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:45:49.4742553Z\",\r\n \"endTime\": \"2020-05-03T11:47:25.0840871Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:45:49.4742553Z\",\r\n \"endTime\": \"2020-05-03T11:47:24.8529608Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/621b8fe8-5240-450c-891c-fc0c04f14e04\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:47:25.6934691Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:47:25.6934691Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/90c3bb55-0ade-4150-888d-11e87a31229f\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "046d57fc-3dae-4e3f-a517-5c4651c6187c-2020-05-03 11:47:57Z-Ps" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502877279)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107677279)\\/\",\"ClientRequestId\":\"046d57fc-3dae-4e3f-a517-5c4651c6187c-2020-05-03 11:47:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BFBuSG9M/EbKupNeX2y9cSEMlmJ7vOsDjP9cC/tOa5c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11710" - ], - "Server": [ - "Microsoft-IIS/10.0", - "Kestrel" - ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "046d57fc-3dae-4e3f-a517-5c4651c6187c-2020-05-03 11:47:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "800390ba-b0e5-4891-abcb-166ca01153a6" ], "x-ms-correlation-request-id": [ - "130a837f-aab4-40cb-b9b2-9bea747d0119" + "bafe2d13-e51a-4d9a-90ed-496d3095e927" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114757Z:130a837f-aab4-40cb-b9b2-9bea747d0119" + "CENTRALUSEUAP:20210417T220314Z:bafe2d13-e51a-4d9a-90ed-496d3095e927" ], "Date": [ - "Sun, 03 May 2020 11:47:56 GMT" + "Sat, 17 Apr 2021 22:03:14 GMT" ], "Content-Length": [ - "6386" + "6369" ], "Content-Type": [ "application/json" @@ -24991,29 +23430,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:45:49.4742553Z\",\r\n \"endTime\": \"2020-05-03T11:47:25.0840871Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:45:49.4742553Z\",\r\n \"endTime\": \"2020-05-03T11:47:24.8529608Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/621b8fe8-5240-450c-891c-fc0c04f14e04\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:47:25.6934691Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:47:25.6934691Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/90c3bb55-0ade-4150-888d-11e87a31229f\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"name\": \"70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c6cb8ebe-9772-4bd1-8f15-d03250267b31 ActivityId: 52fa6a1c-9db1-4dd7-aee4-bcdaa8e89031\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"37159a96-8247-4e64-889c-73f2e147352e\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:59:50.572901Z\",\r\n \"endTime\": \"2021-04-17T22:00:00.6682263Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7954958Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7954958Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"045bee5a-af5a-443a-88fc-840be0d5e853\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7754954Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/9737b18f-95e5-4690-972d-29c38574751d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:01:05.9704964Z\",\r\n \"endTime\": \"2021-04-17T22:02:39.8487988Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8e85c8b8-5a13-4eca-8513-73ceb9d4dabc\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:01:05.9654981Z\",\r\n \"endTime\": \"2021-04-17T22:02:39.8287448Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/13b3f013-049d-4906-b5e6-88eb074dad33\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:02:40.0337483Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"fc24aa9b-a7f3-42b2-9486-bb05b10605be\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:02:40.0337483Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6a333183-c50b-424b-88f5-a64e038c0857\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"578f8288-ab8a-4aa5-8c7f-3041048ed76a\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:59:49.8349776Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a0038247-b232-491f-8126-5fc47bce9c12\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvNzBiM2E3ODAtYWY3NS00YmUzLWFhZTAtMmE1ZWI3Mzg1NmUwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bbbcc81-e7ca-41af-b8f0-715afbcd9f4e-2020-05-03 11:48:18Z-Ps" + "8a508af2-fab5-4a5f-9f1b-8b345d965cb1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502898046)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107698046)\\/\",\"ClientRequestId\":\"3bbbcc81-e7ca-41af-b8f0-715afbcd9f4e-2020-05-03 11:48:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9Gfpml2Lw6LPngTx2A5zjPmUU8Y1eu6qYoYtUEdNNJI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618693414971)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619298214971)\\/\",\"ClientRequestId\":\"ad9423a9-f832-4f44-b4ea-8f6c63878f72-2021-04-17 22:03:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9A4Bs3GS0SkY7NxjYfDKO4rN8+aInIBIpyoa3wd6uuc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25024,111 +23463,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11709" + "11701" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "3bbbcc81-e7ca-41af-b8f0-715afbcd9f4e-2020-05-03 11:48:18Z-Ps" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-correlation-request-id": [ - "e013767e-2f2b-4053-b09f-275843afa862" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114818Z:e013767e-2f2b-4053-b09f-275843afa862" - ], - "Date": [ - "Sun, 03 May 2020 11:48:18 GMT" - ], - "Content-Length": [ - "6386" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:45:49.4742553Z\",\r\n \"endTime\": \"2020-05-03T11:47:25.0840871Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:45:49.4742553Z\",\r\n \"endTime\": \"2020-05-03T11:47:24.8529608Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/621b8fe8-5240-450c-891c-fc0c04f14e04\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:47:25.6934691Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:47:25.6934691Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/90c3bb55-0ade-4150-888d-11e87a31229f\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTgvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxOC9yZXBsaWNhdGlvbkpvYnMvOGM5MDA5MmQtYzA0Zi00NTYzLThkNmItOWRiMjk2MmIzZmRmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f84f0db5-d59c-466a-8c95-4e5f1b0e9d49-2020-05-03 11:48:38Z-Ps" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588502918628)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589107718628)\\/\",\"ClientRequestId\":\"f84f0db5-d59c-466a-8c95-4e5f1b0e9d49-2020-05-03 11:48:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2M1hUPw664YtE4sKPZRzz7YtL3BNwuV0pWzVajey6rE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "Microsoft-IIS/10.0", - "Kestrel" - ], "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf" - ], - "X-Powered-By": [ - "ASP.NET" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f84f0db5-d59c-466a-8c95-4e5f1b0e9d49-2020-05-03 11:48:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11708" + "8a508af2-fab5-4a5f-9f1b-8b345d965cb1" ], "x-ms-correlation-request-id": [ - "c887deb4-4bf9-4e38-88dc-868f34f5d2f3" + "5032bcb0-22b8-4991-9724-74a6b207e0c6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T114839Z:c887deb4-4bf9-4e38-88dc-868f34f5d2f3" + "CENTRALUSEUAP:20210417T220335Z:5032bcb0-22b8-4991-9724-74a6b207e0c6" ], "Date": [ - "Sun, 03 May 2020 11:48:38 GMT" + "Sat, 17 Apr 2021 22:03:34 GMT" ], "Content-Length": [ - "6767" + "6749" ], "Content-Type": [ "application/json" @@ -25137,13 +23500,13 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"name\": \"8c90092d-c04f-4563-8d6b-9db2962b3fdf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5e62677-fbb1-4cda-b786-772d3fbcba55-2020-05-03 11:40:58Z-Ps ActivityId: cbd130e8-41cc-4ea2-af4c-78bbd6447a3b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"cb2c885b-626d-4d1a-a951-6f41c41a74e7\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T11:41:00.0404564Z\",\r\n \"endTime\": \"2020-05-03T11:41:09.1784372Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"1a5f260d-6e97-4e51-8a43-13d72d6dd27f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:41:09.5222261Z\",\r\n \"endTime\": \"2020-05-03T11:45:49.0069439Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70f423f1-c6ad-4802-9c93-ce74ca5308df\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:45:49.4742553Z\",\r\n \"endTime\": \"2020-05-03T11:47:25.0840871Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"bc8d3d40-dc71-4777-9fc8-4dcf8d66b422\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:45:49.4742553Z\",\r\n \"endTime\": \"2020-05-03T11:47:24.8529608Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/621b8fe8-5240-450c-891c-fc0c04f14e04\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:47:25.6934691Z\",\r\n \"endTime\": \"2020-05-03T11:48:33.9603212Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8355bd84-9e57-4ba7-8032-7e513eef8bcd\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T11:47:25.6934691Z\",\r\n \"endTime\": \"2020-05-03T11:48:33.9290657Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/90c3bb55-0ade-4150-888d-11e87a31229f\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"953fea1e-7f55-4b1a-a584-cbd34c42a8a0\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"2020-05-03T11:48:34.1329271Z\",\r\n \"endTime\": \"2020-05-03T11:48:34.2727974Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T11:40:59.3790201Z\",\r\n \"endTime\": \"2020-05-03T11:48:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3b99552-5698-45a2-9d43-d8bc3780af91\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [\r\n {\r\n \"name\": \"4d9036a7-cf80-5e02-9587-1f13410d9dd0\",\r\n \"friendlyName\": \"a2aVM918\",\r\n \"testVmName\": null,\r\n \"testVmFriendlyName\": null,\r\n \"networkConnectionStatus\": null,\r\n \"networkFriendlyName\": \"a2arecoverynetwork918\",\r\n \"subnet\": \"frontendSubnet\",\r\n \"recoveryPointId\": \"e75504d0-bb4d-4324-a7e6-2ea9b36ef8c7\",\r\n \"recoveryPointTime\": \"2020-05-03T11:10:13.4748824Z\"\r\n }\r\n ],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"6bdf92db-ab00-59c5-af0f-ad945799de7a\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"c9529859-4093-5704-804c-a84f2c3f625b\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"name\": \"70b3a780-af75-4be3-aae0-2a5eb73856e0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c6cb8ebe-9772-4bd1-8f15-d03250267b31 ActivityId: 52fa6a1c-9db1-4dd7-aee4-bcdaa8e89031\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"37159a96-8247-4e64-889c-73f2e147352e\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-17T21:59:50.572901Z\",\r\n \"endTime\": \"2021-04-17T22:00:00.6682263Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7954958Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7954958Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"045bee5a-af5a-443a-88fc-840be0d5e853\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:00:00.7732275Z\",\r\n \"endTime\": \"2021-04-17T22:01:05.7754954Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/9737b18f-95e5-4690-972d-29c38574751d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:01:05.9704964Z\",\r\n \"endTime\": \"2021-04-17T22:02:39.8487988Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"8e85c8b8-5a13-4eca-8513-73ceb9d4dabc\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:01:05.9654981Z\",\r\n \"endTime\": \"2021-04-17T22:02:39.8287448Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/13b3f013-049d-4906-b5e6-88eb074dad33\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:02:40.0337483Z\",\r\n \"endTime\": \"2021-04-17T22:03:15.2709374Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"fc24aa9b-a7f3-42b2-9486-bb05b10605be\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-17T22:02:40.0337483Z\",\r\n \"endTime\": \"2021-04-17T22:03:15.2459414Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm918\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg918/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest918/replicationJobs/6a333183-c50b-424b-88f5-a64e038c0857\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"targetObjectName\": \"a2avm918\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"578f8288-ab8a-4aa5-8c7f-3041048ed76a\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"2021-04-17T22:03:15.395941Z\",\r\n \"endTime\": \"2021-04-17T22:03:15.4859495Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:59:49.8349776Z\",\r\n \"endTime\": \"2021-04-17T22:03:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a0038247-b232-491f-8126-5fc47bce9c12\",\r\n \"targetObjectName\": \"A2ARP918\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [\r\n {\r\n \"name\": \"0bd85543-09e4-55cc-9408-ee9dc5cc262d\",\r\n \"friendlyName\": \"a2aVM918\",\r\n \"testVmName\": null,\r\n \"testVmFriendlyName\": null,\r\n \"networkConnectionStatus\": null,\r\n \"networkFriendlyName\": \"a2arecoverynetwork918\",\r\n \"subnet\": \"frontendSubnet\",\r\n \"recoveryPointId\": \"ae1af5d3-b194-4f29-bd31-974cc168adc8\",\r\n \"recoveryPointTime\": \"2021-04-17T21:27:46.6654391Z\"\r\n }\r\n ],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"a05b1a33-0877-5e0a-a79f-e750de604dd2\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"207c1633-28db-5c04-812e-2f90f31b22b4\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "7e904d88-da43-429d-a048-dff4051b211f", - "NamingSuffix": "624dfaba-ea12-4fca-8b3c-29ad68901816" + "SubscriptionId": "509099b2-9d2c-4636-b43e-bd5cafb6be69", + "NamingSuffix": "9cb98309-8b0d-49c5-88c3-aa1eb9354fae" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2ARemoveReplicationProtectedItemDisk.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2ARemoveReplicationProtectedItemDisk.json index a2fe4b16f10e..6c5083340852 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2ARemoveReplicationProtectedItemDisk.json +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2ARemoveReplicationProtectedItemDisk.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recRG102?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL3JlY1JHMTAyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recRG1022?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL3JlY1JHMTAyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7461c0fb-d302-42e4-b618-0f04701b0a56" + "daac083d-0480-4599-8d23-162240d1e2f3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "28" + "35" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1182" ], "x-ms-request-id": [ - "cced266c-98fc-4b81-b0d7-e2020cf5a7e1" + "0185a5b1-f343-44d5-9d24-cf5d0c9850fd" ], "x-ms-correlation-request-id": [ - "cced266c-98fc-4b81-b0d7-e2020cf5a7e1" + "0185a5b1-f343-44d5-9d24-cf5d0c9850fd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092700Z:cced266c-98fc-4b81-b0d7-e2020cf5a7e1" + "CENTRALUSEUAP:20210418T123448Z:0185a5b1-f343-44d5-9d24-cf5d0c9850fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:26:59 GMT" + "Sun, 18 Apr 2021 12:34:47 GMT" ], "Content-Length": [ - "169" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"name\": \"recRG102\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"name\": \"recRG1022\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork102?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTAyP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1022?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL0EyQVJlY292ZXJ5TmV0d29yazEwMjI/YXBpLXZlcnNpb249MjAyMC0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09e47e12-5e3a-46d5-8553-ca361990229d" + "29facd98-d984-49bd-827e-f33a66d41de0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "f2a4d4d3-195f-4528-b079-b5f2741e410e" + "123563a7-9ca7-4c37-88e1-dab30f935ba1" ], "x-ms-correlation-request-id": [ - "f2a4d4d3-195f-4528-b079-b5f2741e410e" + "123563a7-9ca7-4c37-88e1-dab30f935ba1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092720Z:f2a4d4d3-195f-4528-b079-b5f2741e410e" + "CENTRALUSEUAP:20210418T123510Z:123563a7-9ca7-4c37-88e1-dab30f935ba1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:20 GMT" + "Sun, 18 Apr 2021 12:35:09 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,23 +120,26 @@ "-1" ], "Content-Length": [ - "167" + "237" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/A2ARecoveryNetwork102' under resource group 'recRG102' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1022' under resource group 'recRG1022' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork102?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTAyP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1022?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL0EyQVJlY292ZXJ5TmV0d29yazEwMjI/YXBpLXZlcnNpb249MjAyMC0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "29facd98-d984-49bd-827e-f33a66d41de0" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -147,16 +150,16 @@ "no-cache" ], "ETag": [ - "W/\"d3c79d40-66e7-460e-a57c-4c26b0523f47\"" + "W/\"f5fe41f8-abd2-4d27-9a49-70d4bbd8d9c0\"" ], "x-ms-request-id": [ - "9b310938-e36a-48e0-ba2a-2d1402ecc459" + "c229de53-2295-43e8-b7a3-1449d8c3ec5f" ], "x-ms-correlation-request-id": [ - "20db6ae3-fac8-47ba-b8a8-579a7d39bd04" + "2a0150c5-914d-4b14-9d0f-ef5348073944" ], "x-ms-arm-service-request-id": [ - "1c927fca-34b6-482c-9489-e0741b07d431" + "52ab9706-3406-49cc-b26f-a135ea34fae1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -166,19 +169,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11983" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092736Z:20db6ae3-fac8-47ba-b8a8-579a7d39bd04" + "CENTRALUSEUAP:20210418T123517Z:2a0150c5-914d-4b14-9d0f-ef5348073944" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:36 GMT" + "Sun, 18 Apr 2021 12:35:17 GMT" ], "Content-Length": [ - "1333" + "1311" ], "Content-Type": [ "application/json; charset=utf-8" @@ -187,26 +190,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork102\",\r\n \"etag\": \"W/\\\"d3c79d40-66e7-460e-a57c-4c26b0523f47\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4ab7f22-4d47-4f4e-ad62-2bbfd8a4fff6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork102/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"d3c79d40-66e7-460e-a57c-4c26b0523f47\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1022\",\r\n \"etag\": \"W/\\\"f5fe41f8-abd2-4d27-9a49-70d4bbd8d9c0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fdeab9b3-78ca-4462-b327-416acdc0f7cd\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1022/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"f5fe41f8-abd2-4d27-9a49-70d4bbd8d9c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork102?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTAyP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1022?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL0EyQVJlY292ZXJ5TmV0d29yazEwMjI/YXBpLXZlcnNpb249MjAyMC0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1b20810-5988-4ea5-931a-6d42cf5b8eb6" + "29facd98-d984-49bd-827e-f33a66d41de0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -217,16 +220,16 @@ "no-cache" ], "ETag": [ - "W/\"d3c79d40-66e7-460e-a57c-4c26b0523f47\"" + "W/\"f5fe41f8-abd2-4d27-9a49-70d4bbd8d9c0\"" ], "x-ms-request-id": [ - "881aecf3-cbcf-48e9-a20e-e67fd9bdd62f" + "95a30bfb-cbab-407e-a27f-7187321b73a2" ], "x-ms-correlation-request-id": [ - "e9c0b658-ab3f-4dd0-8a53-004a33ecef2f" + "2d0970d8-3138-4e8e-a213-b39b2bf44a60" ], "x-ms-arm-service-request-id": [ - "dd7812cb-31aa-4131-998c-bbaa8f17ff0b" + "09ffa3fd-ca46-438d-b39c-8f04d6cfdf24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -236,19 +239,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11982" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092736Z:e9c0b658-ab3f-4dd0-8a53-004a33ecef2f" + "CENTRALUSEUAP:20210418T123517Z:2d0970d8-3138-4e8e-a213-b39b2bf44a60" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:36 GMT" + "Sun, 18 Apr 2021 12:35:17 GMT" ], "Content-Length": [ - "1333" + "1311" ], "Content-Type": [ "application/json; charset=utf-8" @@ -257,32 +260,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork102\",\r\n \"etag\": \"W/\\\"d3c79d40-66e7-460e-a57c-4c26b0523f47\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4ab7f22-4d47-4f4e-ad62-2bbfd8a4fff6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork102/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"d3c79d40-66e7-460e-a57c-4c26b0523f47\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1022\",\r\n \"etag\": \"W/\\\"f5fe41f8-abd2-4d27-9a49-70d4bbd8d9c0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fdeab9b3-78ca-4462-b327-416acdc0f7cd\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1022/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"f5fe41f8-abd2-4d27-9a49-70d4bbd8d9c0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork102?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTAyP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1022?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL0EyQVJlY292ZXJ5TmV0d29yazEwMjI/YXBpLXZlcnNpb249MjAyMC0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"frontendSubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"frontendSubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "78d8ef51-8d38-499c-a38e-ecc540db98f5" + "29facd98-d984-49bd-827e-f33a66d41de0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "627" + "692" ] }, "ResponseHeaders": { @@ -296,16 +299,19 @@ "3" ], "x-ms-request-id": [ - "f9680224-00d3-4b9e-ac28-275e0f251c78" + "f2b8a50c-e3c6-45b2-9867-c490d1a87f91" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/f9680224-00d3-4b9e-ac28-275e0f251c78?api-version=2019-09-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westcentralus/operations/f2b8a50c-e3c6-45b2-9867-c490d1a87f91?api-version=2020-11-01" ], "x-ms-correlation-request-id": [ - "1fb68bd2-97f7-4207-9b95-68b273af062e" + "ecc93c22-4665-4255-87f3-0eea7792a6af" + ], + "Azure-AsyncNotification": [ + "Enabled" ], "x-ms-arm-service-request-id": [ - "13ec5ca2-4e9e-427b-9bdd-ebe28ca1669d" + "dcdcfcf4-5cfa-42f5-a348-bc87c5317b7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -315,19 +321,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1189" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092731Z:1fb68bd2-97f7-4207-9b95-68b273af062e" + "CENTRALUSEUAP:20210418T123513Z:ecc93c22-4665-4255-87f3-0eea7792a6af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:31 GMT" + "Sun, 18 Apr 2021 12:35:13 GMT" ], "Content-Length": [ - "1331" + "1309" ], "Content-Type": [ "application/json; charset=utf-8" @@ -336,20 +342,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork102\",\r\n \"etag\": \"W/\\\"b572f0d2-7a2d-44e3-a51d-e7c112305fb3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e4ab7f22-4d47-4f4e-ad62-2bbfd8a4fff6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork102/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"b572f0d2-7a2d-44e3-a51d-e7c112305fb3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1022\",\r\n \"etag\": \"W/\\\"a4f36477-d705-4be6-8b0c-9986f6e3a7ed\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fdeab9b3-78ca-4462-b327-416acdc0f7cd\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1022/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"a4f36477-d705-4be6-8b0c-9986f6e3a7ed\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/f9680224-00d3-4b9e-ac28-275e0f251c78?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZjk2ODAyMjQtMDBkMy00YjllLWFjMjgtMjc1ZTBmMjUxYzc4P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westcentralus/operations/f2b8a50c-e3c6-45b2-9867-c490d1a87f91?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2YyYjhhNTBjLWUzYzYtNDViMi05ODY3LWM0OTBkMWE4N2Y5MT9hcGktdmVyc2lvbj0yMDIwLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "29facd98-d984-49bd-827e-f33a66d41de0" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -360,13 +369,13 @@ "no-cache" ], "x-ms-request-id": [ - "f74d9a04-43e9-44a1-a124-e99d69f5516f" + "9fa68b6b-6d33-4db8-92b5-d0faceed0d34" ], "x-ms-correlation-request-id": [ - "59500c5d-4ac1-4ba9-b51b-5669f7743357" + "d90b93a0-e242-4cd7-b366-c1afedf0b0bb" ], "x-ms-arm-service-request-id": [ - "7a4e6106-39e2-41b3-ba9f-46b2e3e8d170" + "10689e41-f01f-40b8-9341-b4e442fe1fc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,16 +385,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11984" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092735Z:59500c5d-4ac1-4ba9-b51b-5669f7743357" + "CENTRALUSEUAP:20210418T123516Z:d90b93a0-e242-4cd7-b366-c1afedf0b0bb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:35 GMT" + "Sun, 18 Apr 2021 12:35:16 GMT" ], "Content-Length": [ "29" @@ -401,22 +410,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/images/RHEL?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9pbWFnZXMvUkhFTD9hcGktdmVyc2lvbj0yMDE5LTA3LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/images/RHEL?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL1JIRUw/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5cd4490a-e386-4d5f-95c4-a31d332cbc6a" + "ba04746e-b5f5-4664-b9bc-e197280ba65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -430,13 +439,13 @@ "gateway" ], "x-ms-request-id": [ - "3cd32347-23fe-4687-b2d8-a29e02eda749" + "c1480872-a761-4831-8700-ba10e0af0c25" ], "x-ms-correlation-request-id": [ - "3cd32347-23fe-4687-b2d8-a29e02eda749" + "c1480872-a761-4831-8700-ba10e0af0c25" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092737Z:3cd32347-23fe-4687-b2d8-a29e02eda749" + "CENTRALUSEUAP:20210418T123519Z:c1480872-a761-4831-8700-ba10e0af0c25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,7 +454,7 @@ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:37 GMT" + "Sun, 18 Apr 2021 12:35:18 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -454,10 +463,10 @@ "-1" ], "Content-Length": [ - "100" + "101" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM102' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM1022' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { @@ -467,16 +476,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af84a37e-0299-4af5-aed0-c439b9effba6" + "ba04746e-b5f5-4664-b9bc-e197280ba65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -487,16 +496,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11929" ], "x-ms-request-id": [ - "c8214b85-95ef-4c3b-9d22-f0613cc9c930" + "79e3c9b9-b17b-4bc3-be5e-fd58b2488883" ], "x-ms-correlation-request-id": [ - "c8214b85-95ef-4c3b-9d22-f0613cc9c930" + "79e3c9b9-b17b-4bc3-be5e-fd58b2488883" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092737Z:c8214b85-95ef-4c3b-9d22-f0613cc9c930" + "CENTRALUSEUAP:20210418T123519Z:79e3c9b9-b17b-4bc3-be5e-fd58b2488883" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,7 +514,7 @@ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:37 GMT" + "Sun, 18 Apr 2021 12:35:19 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -514,29 +523,29 @@ "-1" ], "Content-Length": [ - "28738" + "59552" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/vsmoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Japan West\",\r\n \"France Central\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"South Africa West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n },\r\n {\r\n \"applicationId\": \"579d9c9d-4c83-4efc-8124-7eba65ed3356\",\r\n \"roleDefinitionId\": \"8c99c4ce-d744-4597-a2f0-0a0044d67560\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotEvictionRates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotPriceHistory\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/sharedGalleries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"diskAccesses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roles\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/csoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsVersions\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsFamilies\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/publicIPAddresses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups/capacityReservations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2EyYVZNMTAyMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51eb4be7-9dae-4bda-bfca-fecc0e347c8c" + "ba04746e-b5f5-4664-b9bc-e197280ba65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -550,13 +559,13 @@ "gateway" ], "x-ms-request-id": [ - "b53d5a2e-32d8-4770-833f-f4dd4eb56a19" + "1b469be4-4ee7-4719-813b-ab18c1cc56c4" ], "x-ms-correlation-request-id": [ - "b53d5a2e-32d8-4770-833f-f4dd4eb56a19" + "1b469be4-4ee7-4719-813b-ab18c1cc56c4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092738Z:b53d5a2e-32d8-4770-833f-f4dd4eb56a19" + "CENTRALUSEUAP:20210418T123520Z:1b469be4-4ee7-4719-813b-ab18c1cc56c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -565,7 +574,7 @@ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:38 GMT" + "Sun, 18 Apr 2021 12:35:20 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -574,23 +583,26 @@ "-1" ], "Content-Length": [ - "100" + "101" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM102' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM1022' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2EyYVZNMTAyMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ba04746e-b5f5-4664-b9bc-e197280ba65c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -601,35 +613,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31998" + "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31884" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "376c06ff-4348-4590-b7cb-8b624216702e" + "975fcd43-9d90-4650-974f-1aa4ce057bb5" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11964" ], "x-ms-correlation-request-id": [ - "2a4addc6-429c-468b-b18f-36e3e6de2d84" + "f425f331-0289-4762-ba21-0a057f386419" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092921Z:2a4addc6-429c-468b-b18f-36e3e6de2d84" + "CENTRALUSEUAP:20210418T123654Z:f425f331-0289-4762-ba21-0a057f386419" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:29:21 GMT" + "Sun, 18 Apr 2021 12:36:54 GMT" ], "Content-Length": [ - "1682" + "1906" ], "Content-Type": [ "application/json; charset=utf-8" @@ -638,26 +650,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"vmId\": \"8769f015-232b-47b5-af4b-835b67683bbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM102\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"97d1c809-1497-478c-b18c-016632093efe\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM1022\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2EyYVZNMTAyMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46d180a6-c618-4561-97d6-43b70e566df6" + "3125432a-f559-40f5-9601-9d30741ed122" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -668,35 +680,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31997" + "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31883" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c3e7b213-1b29-49ea-9fb1-4d667c4074f5" + "fcbe8389-3ec4-49f3-8da3-5680d1d76476" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11959" ], "x-ms-correlation-request-id": [ - "52a27618-a413-4388-8fe7-b8a8a4da12eb" + "78902fad-8df8-4550-ba48-95a7500b3336" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092948Z:52a27618-a413-4388-8fe7-b8a8a4da12eb" + "CENTRALUSEUAP:20210418T123716Z:78902fad-8df8-4550-ba48-95a7500b3336" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:29:47 GMT" + "Sun, 18 Apr 2021 12:37:15 GMT" ], "Content-Length": [ - "1682" + "1906" ], "Content-Type": [ "application/json; charset=utf-8" @@ -705,20 +717,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"vmId\": \"8769f015-232b-47b5-af4b-835b67683bbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM102\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"97d1c809-1497-478c-b18c-016632093efe\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM1022\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2EyYVZNMTAyMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a790487c-53b4-4539-b751-b5003f2c2dfe" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -729,35 +744,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31980" + "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31951" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "2c32f08a-87f8-496d-b88e-5fec3ccbc08b" + "41a3f47f-288a-4240-a0be-4fb34128a367" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11984" ], "x-ms-correlation-request-id": [ - "df941f16-9751-4e0e-8755-8e80b668616b" + "d526d196-18df-4a4d-adb8-63b6d4980104" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102030Z:df941f16-9751-4e0e-8755-8e80b668616b" + "CENTRALUSEUAP:20210418T133236Z:d526d196-18df-4a4d-adb8-63b6d4980104" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 10:20:29 GMT" + "Sun, 18 Apr 2021 13:32:36 GMT" ], "Content-Length": [ - "3667" + "5761" ], "Content-Type": [ "application/json; charset=utf-8" @@ -766,26 +781,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8769f015-232b-47b5-af4b-835b67683bbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 6,\r\n \"name\": \"a2aDataDisk102\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": false,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/disks/a2aDataDisk102\"\r\n },\r\n \"diskSizeGB\": 20,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM102\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"SiteRecovery-Linux\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102/extensions/SiteRecovery-Linux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"type\": \"Linux\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"publicObject\": null,\r\n \"module\": \"a2a\",\r\n \"commandToExecute\": \"GetOsDetails\",\r\n \"taskId\": \"fcff3bd7-bd52-4f68-8ae9-0ec341fbac86\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"SiteRecovery-LinuxRHEL7\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102/extensions/SiteRecovery-LinuxRHEL7\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"type\": \"LinuxRHEL7\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"publicObject\": null,\r\n \"module\": \"a2a\",\r\n \"commandToExecute\": \"InstallAndConfigure\",\r\n \"taskId\": \"fcff3bd7-bd52-4f68-8ae9-0ec341fbac86\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus\": {\r\n \"principalId\": \"00ca0806-ef0c-461c-b8dc-982092368965\",\r\n \"clientId\": \"9d53cecf-7cb8-41fd-b8de-7f178c9f1fc4\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"97d1c809-1497-478c-b18c-016632093efe\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 6,\r\n \"name\": \"a2aDataDisk1022\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": false,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/disks/a2aDataDisk1022\"\r\n },\r\n \"diskSizeGB\": 20,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM1022\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"GCS_AUTO_CONFIG\": true\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\r\n \"enableGenevaUpload\": true\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"SiteRecovery-Linux\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022/extensions/SiteRecovery-Linux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"type\": \"Linux\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"publicObject\": null,\r\n \"module\": \"a2a\",\r\n \"commandToExecute\": \"GetOsDetails\",\r\n \"taskId\": \"24d8e2f5-e978-4b74-a43a-366bf1193d02\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"SiteRecovery-LinuxRHEL7\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022/extensions/SiteRecovery-LinuxRHEL7\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"type\": \"LinuxRHEL7\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"publicObject\": null,\r\n \"module\": \"a2a\",\r\n \"commandToExecute\": \"InstallAndConfigure\",\r\n \"taskId\": \"24d8e2f5-e978-4b74-a43a-366bf1193d02\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2EyYVZNMTAyMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "174cd7fd-fc17-4973-853d-8c98bdb05736" + "0b636c28-581a-4ae5-bdeb-fada1fdb3d81" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -796,35 +811,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31987" + "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31956" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "a1cffc00-eafb-4ca0-b131-8df1a42bd4e6" + "ccd9ee91-7957-45e9-9081-7c7497ee59f3" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11993" ], "x-ms-correlation-request-id": [ - "4ee624b5-0c9e-4dea-897e-bf2e62cd30bd" + "472a2ed6-dde5-4279-8c2f-b5f2c7145856" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104223Z:4ee624b5-0c9e-4dea-897e-bf2e62cd30bd" + "CENTRALUSEUAP:20210418T134622Z:472a2ed6-dde5-4279-8c2f-b5f2c7145856" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 10:42:23 GMT" + "Sun, 18 Apr 2021 13:46:21 GMT" ], "Content-Length": [ - "3667" + "5761" ], "Content-Type": [ "application/json; charset=utf-8" @@ -833,26 +848,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8769f015-232b-47b5-af4b-835b67683bbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 6,\r\n \"name\": \"a2aDataDisk102\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": false,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/disks/a2aDataDisk102\"\r\n },\r\n \"diskSizeGB\": 20,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM102\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"SiteRecovery-Linux\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102/extensions/SiteRecovery-Linux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"type\": \"Linux\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"publicObject\": null,\r\n \"module\": \"a2a\",\r\n \"commandToExecute\": \"GetOsDetails\",\r\n \"taskId\": \"fcff3bd7-bd52-4f68-8ae9-0ec341fbac86\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"SiteRecovery-LinuxRHEL7\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102/extensions/SiteRecovery-LinuxRHEL7\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"type\": \"LinuxRHEL7\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"publicObject\": null,\r\n \"module\": \"a2a\",\r\n \"commandToExecute\": \"InstallAndConfigure\",\r\n \"taskId\": \"fcff3bd7-bd52-4f68-8ae9-0ec341fbac86\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus\": {\r\n \"principalId\": \"00ca0806-ef0c-461c-b8dc-982092368965\",\r\n \"clientId\": \"9d53cecf-7cb8-41fd-b8de-7f178c9f1fc4\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"97d1c809-1497-478c-b18c-016632093efe\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 6,\r\n \"name\": \"a2aDataDisk1022\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": false,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/disks/a2aDataDisk1022\"\r\n },\r\n \"diskSizeGB\": 20,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM1022\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"GCS_AUTO_CONFIG\": true\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\r\n \"enableGenevaUpload\": true\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"SiteRecovery-Linux\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022/extensions/SiteRecovery-Linux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"type\": \"Linux\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"publicObject\": null,\r\n \"module\": \"a2a\",\r\n \"commandToExecute\": \"GetOsDetails\",\r\n \"taskId\": \"24d8e2f5-e978-4b74-a43a-366bf1193d02\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"SiteRecovery-LinuxRHEL7\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022/extensions/SiteRecovery-LinuxRHEL7\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"type\": \"LinuxRHEL7\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"publicObject\": null,\r\n \"module\": \"a2a\",\r\n \"commandToExecute\": \"InstallAndConfigure\",\r\n \"taskId\": \"24d8e2f5-e978-4b74-a43a-366bf1193d02\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM102?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNMTAyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM1022?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNMTAyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2ddd8e8-9130-4a64-bedc-c3eb07cee01e" + "ba04746e-b5f5-4664-b9bc-e197280ba65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -866,16 +881,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11928" ], "x-ms-request-id": [ - "66c88e71-7fce-4075-af88-a2bfb36c3b04" + "d1f06b76-eacc-414a-aa58-2d6fffb8fc38" ], "x-ms-correlation-request-id": [ - "66c88e71-7fce-4075-af88-a2bfb36c3b04" + "d1f06b76-eacc-414a-aa58-2d6fffb8fc38" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092738Z:66c88e71-7fce-4075-af88-a2bfb36c3b04" + "CENTRALUSEUAP:20210418T123520Z:d1f06b76-eacc-414a-aa58-2d6fffb8fc38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -884,7 +899,7 @@ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:37 GMT" + "Sun, 18 Apr 2021 12:35:20 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -893,29 +908,29 @@ "-1" ], "Content-Length": [ - "100" + "101" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM102' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM1022' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "709445a9-7879-4257-8c2a-6cd89468c516" + "ba04746e-b5f5-4664-b9bc-e197280ba65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -929,13 +944,13 @@ "gateway" ], "x-ms-request-id": [ - "6b18348a-2cfa-4a06-a511-d8a197f4be85" + "b221ae00-0bda-4c82-9b5d-d62aff4b66d0" ], "x-ms-correlation-request-id": [ - "6b18348a-2cfa-4a06-a511-d8a197f4be85" + "b221ae00-0bda-4c82-9b5d-d62aff4b66d0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092738Z:6b18348a-2cfa-4a06-a511-d8a197f4be85" + "CENTRALUSEUAP:20210418T123521Z:b221ae00-0bda-4c82-9b5d-d62aff4b66d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -944,7 +959,7 @@ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:37 GMT" + "Sun, 18 Apr 2021 12:35:21 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -953,23 +968,26 @@ "-1" ], "Content-Length": [ - "100" + "101" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM102' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM1022' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ba04746e-b5f5-4664-b9bc-e197280ba65c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -980,16 +998,16 @@ "no-cache" ], "ETag": [ - "W/\"844946bd-225b-4051-807e-fd0bf00c9e79\"" + "W/\"b54f3629-4af1-4db0-84d0-6293a5f41a18\"" ], "x-ms-request-id": [ - "5709bed4-ac2d-4d95-ab34-2430aea36fb5" + "79915a5d-b465-4c17-b1f0-ce9496968f43" ], "x-ms-correlation-request-id": [ - "7108b28e-9432-4b8c-9b86-58d5a7ca4561" + "a2bd7e1a-67fc-4cd1-9abe-df9c8c40ce00" ], "x-ms-arm-service-request-id": [ - "4d9f1eb3-4360-42d3-aca4-493308331fd0" + "6bee5cb3-b0e7-4cca-8fc5-9c73be714565" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -999,19 +1017,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11899" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092800Z:7108b28e-9432-4b8c-9b86-58d5a7ca4561" + "CENTRALUSEUAP:20210418T123530Z:a2bd7e1a-67fc-4cd1-9abe-df9c8c40ce00" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:28:00 GMT" + "Sun, 18 Apr 2021 12:35:30 GMT" ], "Content-Length": [ - "1913" + "1927" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1020,26 +1038,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"etag\": \"W/\\\"844946bd-225b-4051-807e-fd0bf00c9e79\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ea716dbd-2ee1-4fcb-8206-7c50e9dd91ea\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102/ipConfigurations/a2aVM102\",\r\n \"etag\": \"W/\\\"844946bd-225b-4051-807e-fd0bf00c9e79\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/publicIPAddresses/a2aVM102\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/virtualNetworks/a2aVM102/subnets/a2aVM102\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"suugvice5trebngioitbugzm0c.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"etag\": \"W/\\\"b54f3629-4af1-4db0-84d0-6293a5f41a18\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e8352773-c8bb-496f-8c08-dc232150ac7b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022/ipConfigurations/a2aVM1022\",\r\n \"etag\": \"W/\\\"b54f3629-4af1-4db0-84d0-6293a5f41a18\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/publicIPAddresses/a2aVM1022\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022/subnets/a2aVM1022\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uvdiy0dwhlqu3dzgqdtuj3a50c.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0xMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2EyYVZNMTAyMj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf2c220b-e3e7-4391-af67-5bf4a150d6a4" + "ba04746e-b5f5-4664-b9bc-e197280ba65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1053,13 +1071,13 @@ "gateway" ], "x-ms-request-id": [ - "04c717ed-f8e4-4c90-92e4-fc3627e70656" + "dc0e8e24-036a-4059-a84c-298500cd1979" ], "x-ms-correlation-request-id": [ - "04c717ed-f8e4-4c90-92e4-fc3627e70656" + "dc0e8e24-036a-4059-a84c-298500cd1979" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092738Z:04c717ed-f8e4-4c90-92e4-fc3627e70656" + "CENTRALUSEUAP:20210418T123522Z:dc0e8e24-036a-4059-a84c-298500cd1979" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1068,7 +1086,7 @@ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:38 GMT" + "Sun, 18 Apr 2021 12:35:21 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1077,23 +1095,26 @@ "-1" ], "Content-Length": [ - "100" + "101" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM102' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM1022' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0xMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2EyYVZNMTAyMj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ba04746e-b5f5-4664-b9bc-e197280ba65c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1104,16 +1125,16 @@ "no-cache" ], "ETag": [ - "W/\"5188cc37-8a99-490a-a9a5-84a89e75c078\"" + "W/\"6382839e-24c3-43be-ad92-0f8e151949fe\"" ], "x-ms-request-id": [ - "553c9f02-bc67-44f0-b376-c3e44d70fa74" + "244ac3ee-17b7-48c2-a824-4fe886d2afe4" ], "x-ms-correlation-request-id": [ - "78e01ebc-27f2-4a47-bfdd-bff23a86bfd7" + "91c65665-80ce-47ed-acaf-9b7687adf703" ], "x-ms-arm-service-request-id": [ - "1f71f67f-d247-4851-8ff0-75b9e525fde5" + "53a62273-6b14-4c3b-93cd-4a11002f7adb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1123,19 +1144,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11977" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092756Z:78e01ebc-27f2-4a47-bfdd-bff23a86bfd7" + "CENTRALUSEUAP:20210418T123529Z:91c65665-80ce-47ed-acaf-9b7687adf703" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:56 GMT" + "Sun, 18 Apr 2021 12:35:28 GMT" ], "Content-Length": [ - "7388" + "7407" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1144,26 +1165,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102\",\r\n \"etag\": \"W/\\\"5188cc37-8a99-490a-a9a5-84a89e75c078\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"301027f4-3bfc-4393-88ec-a9f1ff4adb8b\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM10222\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102/securityRules/a2aVM10222\",\r\n \"etag\": \"W/\\\"5188cc37-8a99-490a-a9a5-84a89e75c078\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"5188cc37-8a99-490a-a9a5-84a89e75c078\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"5188cc37-8a99-490a-a9a5-84a89e75c078\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"5188cc37-8a99-490a-a9a5-84a89e75c078\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"5188cc37-8a99-490a-a9a5-84a89e75c078\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"5188cc37-8a99-490a-a9a5-84a89e75c078\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"5188cc37-8a99-490a-a9a5-84a89e75c078\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022\",\r\n \"etag\": \"W/\\\"6382839e-24c3-43be-ad92-0f8e151949fe\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8d914310-7f37-4083-91f3-f30e07155260\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM102222\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022/securityRules/a2aVM102222\",\r\n \"etag\": \"W/\\\"6382839e-24c3-43be-ad92-0f8e151949fe\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"6382839e-24c3-43be-ad92-0f8e151949fe\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"6382839e-24c3-43be-ad92-0f8e151949fe\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"6382839e-24c3-43be-ad92-0f8e151949fe\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"6382839e-24c3-43be-ad92-0f8e151949fe\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"6382839e-24c3-43be-ad92-0f8e151949fe\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"6382839e-24c3-43be-ad92-0f8e151949fe\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/publicIPAddresses/a2aVM102?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/publicIPAddresses/a2aVM1022?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f34823bd-f94c-4f65-b79f-94e371ff119a" + "ba04746e-b5f5-4664-b9bc-e197280ba65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1177,13 +1198,13 @@ "gateway" ], "x-ms-request-id": [ - "9d2da315-06a8-486e-8332-e4f9087a0898" + "055a3c6b-9af7-4f8f-af9a-7a7f0a0ae271" ], "x-ms-correlation-request-id": [ - "9d2da315-06a8-486e-8332-e4f9087a0898" + "055a3c6b-9af7-4f8f-af9a-7a7f0a0ae271" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092739Z:9d2da315-06a8-486e-8332-e4f9087a0898" + "CENTRALUSEUAP:20210418T123522Z:055a3c6b-9af7-4f8f-af9a-7a7f0a0ae271" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1192,7 +1213,7 @@ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:38 GMT" + "Sun, 18 Apr 2021 12:35:22 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1201,23 +1222,26 @@ "-1" ], "Content-Length": [ - "100" + "101" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM102' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM1022' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/publicIPAddresses/a2aVM102?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/publicIPAddresses/a2aVM1022?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ba04746e-b5f5-4664-b9bc-e197280ba65c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1228,16 +1252,16 @@ "no-cache" ], "ETag": [ - "W/\"5563efb6-8cc5-4941-9c51-05995358f991\"" + "W/\"4c744761-1b3e-485d-a4be-eeb65d7d8e67\"" ], "x-ms-request-id": [ - "5318703d-9ae7-470c-863a-38afe87dd454" + "8b0fb5e7-9a92-44bb-a623-18d040dd666d" ], "x-ms-correlation-request-id": [ - "62a25c4e-7814-41d3-a38c-9b0976035456" + "839c07bf-fdae-4ae0-b873-a7b6decb120a" ], "x-ms-arm-service-request-id": [ - "8d6d171e-2b22-4c9d-9450-5998245a2365" + "e7d0370d-7e6d-48d9-9eda-2d38720de4ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1247,19 +1271,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11979" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092753Z:62a25c4e-7814-41d3-a38c-9b0976035456" + "CENTRALUSEUAP:20210418T123527Z:839c07bf-fdae-4ae0-b873-a7b6decb120a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:53 GMT" + "Sun, 18 Apr 2021 12:35:26 GMT" ], "Content-Length": [ - "754" + "759" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1268,26 +1292,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/publicIPAddresses/a2aVM102\",\r\n \"etag\": \"W/\\\"5563efb6-8cc5-4941-9c51-05995358f991\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"425e2400-3e8d-466d-8b0c-262b5da00c31\",\r\n \"ipAddress\": \"104.210.44.29\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain102\",\r\n \"fqdn\": \"domain102.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/publicIPAddresses/a2aVM1022\",\r\n \"etag\": \"W/\\\"4c744761-1b3e-485d-a4be-eeb65d7d8e67\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"40e4e250-c894-4c65-9691-67e940b16549\",\r\n \"ipAddress\": \"52.188.120.95\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain1022\",\r\n \"fqdn\": \"domain1022.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/virtualNetworks/a2aVM102?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0xMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2EyYVZNMTAyMj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "515a9a92-c190-40e7-b9c5-b3cdeb3c23f6" + "ba04746e-b5f5-4664-b9bc-e197280ba65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1301,13 +1325,13 @@ "gateway" ], "x-ms-request-id": [ - "5b7884af-3281-4e31-8de7-01397552e0c2" + "cf9b390c-328b-4fc5-a3c2-846fe2983ce5" ], "x-ms-correlation-request-id": [ - "5b7884af-3281-4e31-8de7-01397552e0c2" + "cf9b390c-328b-4fc5-a3c2-846fe2983ce5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092739Z:5b7884af-3281-4e31-8de7-01397552e0c2" + "CENTRALUSEUAP:20210418T123522Z:cf9b390c-328b-4fc5-a3c2-846fe2983ce5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1316,7 +1340,7 @@ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:38 GMT" + "Sun, 18 Apr 2021 12:35:22 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1325,23 +1349,26 @@ "-1" ], "Content-Length": [ - "100" + "101" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM102' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM1022' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/virtualNetworks/a2aVM102?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0xMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2EyYVZNMTAyMj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ba04746e-b5f5-4664-b9bc-e197280ba65c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1352,16 +1379,16 @@ "no-cache" ], "ETag": [ - "W/\"32790a0f-0f6a-4d1a-9eb9-7301c0ccde3e\"" + "W/\"f5fbc27f-fd80-420d-931a-b381c224f3fe\"" ], "x-ms-request-id": [ - "2cbb504b-ed04-49bd-b4f2-539e275ec842" + "dd8db192-5738-486b-8f5b-bb3b9e5eb029" ], "x-ms-correlation-request-id": [ - "c0cc3cbc-ee31-4558-b0ec-ffc519bf19b8" + "9e7f3e66-0fc1-4431-b497-7541fc23681f" ], "x-ms-arm-service-request-id": [ - "8e446260-0a89-404a-bc79-83afe39f1789" + "e3ee27a3-90fd-4f5d-b89e-1cce80ecc6b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1371,19 +1398,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11900" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092755Z:c0cc3cbc-ee31-4558-b0ec-ffc519bf19b8" + "CENTRALUSEUAP:20210418T123529Z:9e7f3e66-0fc1-4431-b497-7541fc23681f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:55 GMT" + "Sun, 18 Apr 2021 12:35:29 GMT" ], "Content-Length": [ - "1108" + "1081" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1392,26 +1419,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/virtualNetworks/a2aVM102\",\r\n \"etag\": \"W/\\\"32790a0f-0f6a-4d1a-9eb9-7301c0ccde3e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a06a2895-fc44-40e2-b4c8-72261a1b2cd2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/virtualNetworks/a2aVM102/subnets/a2aVM102\",\r\n \"etag\": \"W/\\\"32790a0f-0f6a-4d1a-9eb9-7301c0ccde3e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"etag\": \"W/\\\"f5fbc27f-fd80-420d-931a-b381c224f3fe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"688c46a5-3a76-4ee1-8f26-80e744f41fd2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022/subnets/a2aVM1022\",\r\n \"etag\": \"W/\\\"f5fbc27f-fd80-420d-931a-b381c224f3fe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM102?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNMTAyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM1022?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNMTAyMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "416b50da-6314-49e5-84b7-0b61191e784b" + "ba04746e-b5f5-4664-b9bc-e197280ba65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1428,16 +1455,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1181" ], "x-ms-request-id": [ - "078c8497-8f74-438c-bc19-d81940e9af7d" + "f9d319f8-e008-44bd-a5ee-331d64e69984" ], "x-ms-correlation-request-id": [ - "078c8497-8f74-438c-bc19-d81940e9af7d" + "f9d319f8-e008-44bd-a5ee-331d64e69984" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092744Z:078c8497-8f74-438c-bc19-d81940e9af7d" + "CENTRALUSEUAP:20210418T123523Z:f9d319f8-e008-44bd-a5ee-331d64e69984" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1446,10 +1473,10 @@ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:43 GMT" + "Sun, 18 Apr 2021 12:35:22 GMT" ], "Content-Length": [ - "169" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1458,32 +1485,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/publicIPAddresses/a2aVM102?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/publicIPAddresses/a2aVM1022?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain102\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain1022\"\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b638d0d8-a6dd-4101-ba61-ea4cbe8b443e" + "ba04746e-b5f5-4664-b9bc-e197280ba65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "202" + "203" ] }, "ResponseHeaders": { @@ -1497,16 +1524,19 @@ "1" ], "x-ms-request-id": [ - "05f79a97-0785-4ae3-b14b-9b4f13c50321" + "97390de1-e77e-4581-8780-b146ab093778" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/05f79a97-0785-4ae3-b14b-9b4f13c50321?api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/97390de1-e77e-4581-8780-b146ab093778?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "0982b628-5f55-4278-b418-418c6c9ad743" + "35d1c4e8-9fa4-4ba2-9345-8f7ab42e20db" + ], + "Azure-AsyncNotification": [ + "Enabled" ], "x-ms-arm-service-request-id": [ - "e3610b70-680c-47de-966f-c62c6bd76972" + "f61276e3-8666-4118-bcaf-30933a6f0302" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1516,19 +1546,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1180" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092751Z:0982b628-5f55-4278-b418-418c6c9ad743" + "CENTRALUSEUAP:20210418T123525Z:35d1c4e8-9fa4-4ba2-9345-8f7ab42e20db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:50 GMT" + "Sun, 18 Apr 2021 12:35:25 GMT" ], "Content-Length": [ - "718" + "723" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1537,32 +1567,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/publicIPAddresses/a2aVM102\",\r\n \"etag\": \"W/\\\"2f154cbf-7ff2-4b74-8888-d4d6155145ea\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"425e2400-3e8d-466d-8b0c-262b5da00c31\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain102\",\r\n \"fqdn\": \"domain102.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/publicIPAddresses/a2aVM1022\",\r\n \"etag\": \"W/\\\"6da8d33a-9c9a-4f3e-9039-1bee34067392\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"40e4e250-c894-4c65-9691-67e940b16549\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain1022\",\r\n \"fqdn\": \"domain1022.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/virtualNetworks/a2aVM102?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0xMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2EyYVZNMTAyMj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"name\": \"a2aVM102\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"a2aVM102222\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "15f89504-ac71-409c-b806-867f2a169f75" + "ba04746e-b5f5-4664-b9bc-e197280ba65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "300" + "452" ] }, "ResponseHeaders": { @@ -1576,16 +1606,19 @@ "3" ], "x-ms-request-id": [ - "9738c26c-ebfa-44e5-876b-1150a9a07e06" + "fd69b22b-3799-4974-952b-ee63cb0451ec" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/9738c26c-ebfa-44e5-876b-1150a9a07e06?api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/fd69b22b-3799-4974-952b-ee63cb0451ec?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "2e7957dc-4051-413b-832f-0f97da80217b" + "5b1c6587-096e-426b-9d4a-a8c66c135f13" + ], + "Azure-AsyncNotification": [ + "Enabled" ], "x-ms-arm-service-request-id": [ - "eb132fc0-67d6-4da1-968b-e6b3ae6c10e0" + "15fcb26a-d59a-4b06-80e8-0585ab4e772c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1595,19 +1628,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1181" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092751Z:2e7957dc-4051-413b-832f-0f97da80217b" + "CENTRALUSEUAP:20210418T123525Z:5b1c6587-096e-426b-9d4a-a8c66c135f13" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:51 GMT" + "Sun, 18 Apr 2021 12:35:24 GMT" ], "Content-Length": [ - "1106" + "7399" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1616,32 +1649,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/virtualNetworks/a2aVM102\",\r\n \"etag\": \"W/\\\"8e6f4134-527d-4582-8a6e-407ad917aab3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a06a2895-fc44-40e2-b4c8-72261a1b2cd2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/virtualNetworks/a2aVM102/subnets/a2aVM102\",\r\n \"etag\": \"W/\\\"8e6f4134-527d-4582-8a6e-407ad917aab3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022\",\r\n \"etag\": \"W/\\\"3052b6b3-2e30-41dc-b7b8-8abad2fdda2c\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8d914310-7f37-4083-91f3-f30e07155260\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM102222\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022/securityRules/a2aVM102222\",\r\n \"etag\": \"W/\\\"3052b6b3-2e30-41dc-b7b8-8abad2fdda2c\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"3052b6b3-2e30-41dc-b7b8-8abad2fdda2c\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"3052b6b3-2e30-41dc-b7b8-8abad2fdda2c\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"3052b6b3-2e30-41dc-b7b8-8abad2fdda2c\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"3052b6b3-2e30-41dc-b7b8-8abad2fdda2c\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"3052b6b3-2e30-41dc-b7b8-8abad2fdda2c\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"3052b6b3-2e30-41dc-b7b8-8abad2fdda2c\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0xMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2EyYVZNMTAyMj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"a2aVM10222\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"name\": \"a2aVM1022\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9718af81-4073-4549-b7ee-89c94420ea09" + "ba04746e-b5f5-4664-b9bc-e197280ba65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "451" + "301" ] }, "ResponseHeaders": { @@ -1655,16 +1688,19 @@ "3" ], "x-ms-request-id": [ - "699c7f94-9f53-4716-bcde-da342f977657" + "559b41ae-2625-414d-ab67-da8b156418c5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/699c7f94-9f53-4716-bcde-da342f977657?api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/559b41ae-2625-414d-ab67-da8b156418c5?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "6fef7a6b-bb08-490f-a1ce-8d48186102a8" + "5d81c321-1488-4f40-99bc-066683ed3d2d" + ], + "Azure-AsyncNotification": [ + "Enabled" ], "x-ms-arm-service-request-id": [ - "92f03a1c-2193-440e-8fc1-3d59df34fddb" + "899be7a3-41ba-4e58-9fa6-c4f22684eb17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1674,19 +1710,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1188" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092752Z:6fef7a6b-bb08-490f-a1ce-8d48186102a8" + "CENTRALUSEUAP:20210418T123525Z:5d81c321-1488-4f40-99bc-066683ed3d2d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:52 GMT" + "Sun, 18 Apr 2021 12:35:24 GMT" ], "Content-Length": [ - "7380" + "1079" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1695,20 +1731,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102\",\r\n \"etag\": \"W/\\\"8f363baf-ae21-485d-a4ba-03e956a36b89\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"301027f4-3bfc-4393-88ec-a9f1ff4adb8b\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM10222\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102/securityRules/a2aVM10222\",\r\n \"etag\": \"W/\\\"8f363baf-ae21-485d-a4ba-03e956a36b89\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"8f363baf-ae21-485d-a4ba-03e956a36b89\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"8f363baf-ae21-485d-a4ba-03e956a36b89\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"8f363baf-ae21-485d-a4ba-03e956a36b89\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"8f363baf-ae21-485d-a4ba-03e956a36b89\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"8f363baf-ae21-485d-a4ba-03e956a36b89\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"8f363baf-ae21-485d-a4ba-03e956a36b89\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"etag\": \"W/\\\"f82610b0-cee3-470f-a492-f40ee27a5497\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"688c46a5-3a76-4ee1-8f26-80e744f41fd2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022/subnets/a2aVM1022\",\r\n \"etag\": \"W/\\\"f82610b0-cee3-470f-a492-f40ee27a5497\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/05f79a97-0785-4ae3-b14b-9b4f13c50321?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMDVmNzlhOTctMDc4NS00YWUzLWIxNGItOWI0ZjEzYzUwMzIxP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/97390de1-e77e-4581-8780-b146ab093778?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTczOTBkZTEtZTc3ZS00NTgxLTg3ODAtYjE0NmFiMDkzNzc4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ba04746e-b5f5-4664-b9bc-e197280ba65c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1719,13 +1758,13 @@ "no-cache" ], "x-ms-request-id": [ - "391fc0a3-b7af-4546-ad61-672c0dec6c4b" + "88ba7df9-f50f-4c15-b47d-a9b84ddfa471" ], "x-ms-correlation-request-id": [ - "3b085a96-f3d4-4170-aa4e-8545fbb8cd86" + "7ad5a845-5e5a-44e6-b767-688265d51b80" ], "x-ms-arm-service-request-id": [ - "3fbf9f25-9a4a-411c-bda7-aac518798a09" + "a065aff2-220b-4fe8-baef-568dcd2d59d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1735,16 +1774,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11980" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092753Z:3b085a96-f3d4-4170-aa4e-8545fbb8cd86" + "CENTRALUSEUAP:20210418T123526Z:7ad5a845-5e5a-44e6-b767-688265d51b80" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:53 GMT" + "Sun, 18 Apr 2021 12:35:26 GMT" ], "Content-Length": [ "29" @@ -1760,16 +1799,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/9738c26c-ebfa-44e5-876b-1150a9a07e06?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTczOGMyNmMtZWJmYS00NGU1LTg3NmItMTE1MGE5YTA3ZTA2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/fd69b22b-3799-4974-952b-ee63cb0451ec?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmQ2OWIyMmItMzc5OS00OTc0LTk1MmItZWU2M2NiMDQ1MWVjP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ba04746e-b5f5-4664-b9bc-e197280ba65c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1780,13 +1822,13 @@ "no-cache" ], "x-ms-request-id": [ - "b3ce2f39-47af-4dd2-ac1a-e7966b8fea59" + "d5a88561-24ec-4f47-841f-969aef7828b2" ], "x-ms-correlation-request-id": [ - "86cae5c5-e55a-4faf-ba3c-37d6658361ea" + "a67e8a72-445a-4551-abbf-0179b557a5a7" ], "x-ms-arm-service-request-id": [ - "7c771ec8-ac57-47fb-9387-37963229dc54" + "efdf25d8-81f4-4eb8-b140-4638b3794ebf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1796,16 +1838,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11978" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092755Z:86cae5c5-e55a-4faf-ba3c-37d6658361ea" + "CENTRALUSEUAP:20210418T123528Z:a67e8a72-445a-4551-abbf-0179b557a5a7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:55 GMT" + "Sun, 18 Apr 2021 12:35:28 GMT" ], "Content-Length": [ "29" @@ -1821,16 +1863,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/699c7f94-9f53-4716-bcde-da342f977657?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNjk5YzdmOTQtOWY1My00NzE2LWJjZGUtZGEzNDJmOTc3NjU3P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/559b41ae-2625-414d-ab67-da8b156418c5?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTU5YjQxYWUtMjYyNS00MTRkLWFiNjctZGE4YjE1NjQxOGM1P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ba04746e-b5f5-4664-b9bc-e197280ba65c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1841,13 +1886,13 @@ "no-cache" ], "x-ms-request-id": [ - "a2684c29-1f8f-4214-aebc-268d3a1e1088" + "34aaed6f-e796-460c-a65e-9fd5a65f7bd1" ], "x-ms-correlation-request-id": [ - "21f575d8-9dca-463c-8c7f-6c001ae2cd21" + "59b4a485-a799-4b55-b3b3-e38994500a75" ], "x-ms-arm-service-request-id": [ - "bd1dd483-1b48-4dab-8484-d6d96d55bdec" + "942b35aa-ad19-4365-af04-86420c5f3865" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1857,16 +1902,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11901" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092756Z:21f575d8-9dca-463c-8c7f-6c001ae2cd21" + "CENTRALUSEUAP:20210418T123529Z:59b4a485-a799-4b55-b3b3-e38994500a75" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:27:56 GMT" + "Sun, 18 Apr 2021 12:35:28 GMT" ], "Content-Length": [ "29" @@ -1882,28 +1927,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/virtualNetworks/a2aVM102/subnets/a2aVM102\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/publicIPAddresses/a2aVM102\"\r\n }\r\n },\r\n \"name\": \"a2aVM102\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022/subnets/a2aVM1022\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/publicIPAddresses/a2aVM1022\"\r\n }\r\n },\r\n \"name\": \"a2aVM1022\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9d4e8600-3363-496b-a4f6-f2e170e5be7a" + "ba04746e-b5f5-4664-b9bc-e197280ba65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "803" + "811" ] }, "ResponseHeaders": { @@ -1914,16 +1959,19 @@ "no-cache" ], "x-ms-request-id": [ - "82f80fac-aebb-440d-b577-070e06c84123" + "6fcad74d-f2c9-43e9-b0a3-8a653dc7fb35" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/82f80fac-aebb-440d-b577-070e06c84123?api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/6fcad74d-f2c9-43e9-b0a3-8a653dc7fb35?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "bad55641-50a7-4d28-a57e-3ada5ac19292" + "b686707b-a535-4a39-a522-dec05e66b232" + ], + "Azure-AsyncNotification": [ + "Enabled" ], "x-ms-arm-service-request-id": [ - "33ab10ea-ec01-4a58-ac1a-4af2683029bd" + "1b3da6e7-e76b-457e-80b1-e213d9d13afc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1933,19 +1981,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1180" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092800Z:bad55641-50a7-4d28-a57e-3ada5ac19292" + "CENTRALUSEUAP:20210418T123530Z:b686707b-a535-4a39-a522-dec05e66b232" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:28:00 GMT" + "Sun, 18 Apr 2021 12:35:30 GMT" ], "Content-Length": [ - "1913" + "1927" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1954,32 +2002,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"etag\": \"W/\\\"844946bd-225b-4051-807e-fd0bf00c9e79\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ea716dbd-2ee1-4fcb-8206-7c50e9dd91ea\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102/ipConfigurations/a2aVM102\",\r\n \"etag\": \"W/\\\"844946bd-225b-4051-807e-fd0bf00c9e79\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/publicIPAddresses/a2aVM102\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/virtualNetworks/a2aVM102/subnets/a2aVM102\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"suugvice5trebngioitbugzm0c.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkSecurityGroups/a2aVM102\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"etag\": \"W/\\\"b54f3629-4af1-4db0-84d0-6293a5f41a18\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e8352773-c8bb-496f-8c08-dc232150ac7b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022/ipConfigurations/a2aVM1022\",\r\n \"etag\": \"W/\\\"b54f3629-4af1-4db0-84d0-6293a5f41a18\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/publicIPAddresses/a2aVM1022\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022/subnets/a2aVM1022\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"uvdiy0dwhlqu3dzgqdtuj3a50c.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkSecurityGroups/a2aVM1022\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2EyYVZNMTAyMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM102\",\r\n \"adminUsername\": \"adminUser\",\r\n \"adminPassword\": \"System.Security.SecureString\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM1022\",\r\n \"adminUsername\": \"adminUser\",\r\n \"adminPassword\": \"System.Security.SecureString\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "694b2c47-5a3e-4feb-92d1-8558e82f18c7" + "ba04746e-b5f5-4664-b9bc-e197280ba65c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "734" + "737" ] }, "ResponseHeaders": { @@ -1993,41 +2041,41 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/operations/0f493595-17a9-47c4-8713-d1e50ac2e4a4?api-version=2019-07-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/5485aba1-2d5a-4341-8fb5-49ef7c795019?api-version=2020-12-01" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199" + "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0f493595-17a9-47c4-8713-d1e50ac2e4a4" + "5485aba1-2d5a-4341-8fb5-49ef7c795019" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1186" ], "x-ms-correlation-request-id": [ - "ef389c46-c442-446f-8f12-afd0cfa5a361" + "daaa98fa-5ca1-4011-a84a-5e34b2e4e1f1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092809Z:ef389c46-c442-446f-8f12-afd0cfa5a361" + "CENTRALUSEUAP:20210418T123533Z:daaa98fa-5ca1-4011-a84a-5e34b2e4e1f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:28:09 GMT" + "Sun, 18 Apr 2021 12:35:33 GMT" ], "Content-Length": [ - "1429" + "1650" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2036,32 +2084,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"vmId\": \"8769f015-232b-47b5-af4b-835b67683bbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM102\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"97d1c809-1497-478c-b18c-016632093efe\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM1022\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDI/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2EyYVZNMTAyMj9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\",\r\n \"diskSizeGB\": 32,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 6,\r\n \"name\": \"a2aDataDisk102\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": false,\r\n \"createOption\": \"Attach\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/disks/a2aDataDisk102\"\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM102\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\",\r\n \"diskSizeGB\": 32,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 6,\r\n \"name\": \"a2aDataDisk1022\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": false,\r\n \"createOption\": \"Attach\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/disks/a2aDataDisk1022\"\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM1022\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d7897ed4-cb19-47fe-bec3-a5b54e5dba02" + "a790487c-53b4-4539-b751-b5003f2c2dfe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1793" + "2002" ] }, "ResponseHeaders": { @@ -2072,7 +2120,7 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/operations/c001d836-1123-4dbd-86dd-8473933b23d8?api-version=2019-07-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/458ed324-df34-4ae8-a386-1d4539bc2087?api-version=2020-12-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -2084,29 +2132,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c001d836-1123-4dbd-86dd-8473933b23d8" + "458ed324-df34-4ae8-a386-1d4539bc2087" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-correlation-request-id": [ - "4e3a06dc-0707-4504-b816-e00522ce7ce1" + "f61fcd15-e045-4de4-aaf6-4968bc6ad051" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101959Z:4e3a06dc-0707-4504-b816-e00522ce7ce1" + "CENTRALUSEUAP:20210418T133206Z:f61fcd15-e045-4de4-aaf6-4968bc6ad051" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 10:19:59 GMT" + "Sun, 18 Apr 2021 13:32:05 GMT" ], "Content-Length": [ - "3666" + "5760" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2115,20 +2163,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"8769f015-232b-47b5-af4b-835b67683bbc\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 6,\r\n \"name\": \"a2aDataDisk102\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": false,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/disks/a2aDataDisk102\"\r\n },\r\n \"diskSizeGB\": 20,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM102\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"SiteRecovery-Linux\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102/extensions/SiteRecovery-Linux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"type\": \"Linux\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"publicObject\": null,\r\n \"module\": \"a2a\",\r\n \"commandToExecute\": \"GetOsDetails\",\r\n \"taskId\": \"fcff3bd7-bd52-4f68-8ae9-0ec341fbac86\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"SiteRecovery-LinuxRHEL7\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102/extensions/SiteRecovery-LinuxRHEL7\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"type\": \"LinuxRHEL7\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"publicObject\": null,\r\n \"module\": \"a2a\",\r\n \"commandToExecute\": \"InstallAndConfigure\",\r\n \"taskId\": \"fcff3bd7-bd52-4f68-8ae9-0ec341fbac86\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus\": {\r\n \"principalId\": \"00ca0806-ef0c-461c-b8dc-982092368965\",\r\n \"clientId\": \"9d53cecf-7cb8-41fd-b8de-7f178c9f1fc4\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"97d1c809-1497-478c-b18c-016632093efe\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 6,\r\n \"name\": \"a2aDataDisk1022\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": false,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/disks/a2aDataDisk1022\"\r\n },\r\n \"diskSizeGB\": 20,\r\n \"toBeDetached\": false\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM1022\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"GCS_AUTO_CONFIG\": true\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\r\n \"enableGenevaUpload\": true\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"SiteRecovery-Linux\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022/extensions/SiteRecovery-Linux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"type\": \"Linux\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"publicObject\": null,\r\n \"module\": \"a2a\",\r\n \"commandToExecute\": \"GetOsDetails\",\r\n \"taskId\": \"24d8e2f5-e978-4b74-a43a-366bf1193d02\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"SiteRecovery-LinuxRHEL7\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022/extensions/SiteRecovery-LinuxRHEL7\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"type\": \"LinuxRHEL7\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"publicObject\": null,\r\n \"module\": \"a2a\",\r\n \"commandToExecute\": \"InstallAndConfigure\",\r\n \"taskId\": \"24d8e2f5-e978-4b74-a43a-366bf1193d02\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/operations/0f493595-17a9-47c4-8713-d1e50ac2e4a4?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGY0OTM1OTUtMTdhOS00N2M0LTg3MTMtZDFlNTBhYzJlNGE0P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/5485aba1-2d5a-4341-8fb5-49ef7c795019?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTQ4NWFiYTEtMmQ1YS00MzQxLThmYjUtNDllZjdjNzk1MDE5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ba04746e-b5f5-4664-b9bc-e197280ba65c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2139,35 +2190,35 @@ "no-cache" ], "Retry-After": [ - "30" + "35" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" + "Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29955" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "420dd2e6-ec7e-44c7-90be-087b9bfaaae3" + "9a8d07fa-260a-42ce-a194-7ac26aa33c23" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11970" ], "x-ms-correlation-request-id": [ - "9d5001de-0aae-42f2-99f1-0c052fe1904c" + "6175a80c-ef97-45c0-87eb-7d47a354f574" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092820Z:9d5001de-0aae-42f2-99f1-0c052fe1904c" + "CENTRALUSEUAP:20210418T123543Z:6175a80c-ef97-45c0-87eb-7d47a354f574" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:28:20 GMT" + "Sun, 18 Apr 2021 12:35:43 GMT" ], "Content-Length": [ "134" @@ -2179,20 +2230,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-01-16T14:58:07.8635363+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f493595-17a9-47c4-8713-d1e50ac2e4a4\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-04-18T18:05:32.4036733+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5485aba1-2d5a-4341-8fb5-49ef7c795019\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/operations/0f493595-17a9-47c4-8713-d1e50ac2e4a4?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGY0OTM1OTUtMTdhOS00N2M0LTg3MTMtZDFlNTBhYzJlNGE0P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/5485aba1-2d5a-4341-8fb5-49ef7c795019?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTQ4NWFiYTEtMmQ1YS00MzQxLThmYjUtNDllZjdjNzk1MDE5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ba04746e-b5f5-4664-b9bc-e197280ba65c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2203,32 +2257,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29954" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "538c0f93-919b-4f35-b241-b2f65973c56a" + "d80d7139-b3f6-49e4-9613-01802cf8ccdd" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11968" ], "x-ms-correlation-request-id": [ - "52ff6214-cba7-4de6-b12f-f2657911650a" + "f25f8b05-5576-481d-bd52-5841af25df1b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092851Z:52ff6214-cba7-4de6-b12f-f2657911650a" + "CENTRALUSEUAP:20210418T123619Z:f25f8b05-5576-481d-bd52-5841af25df1b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:28:51 GMT" + "Sun, 18 Apr 2021 12:36:18 GMT" ], "Content-Length": [ "134" @@ -2240,20 +2294,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-01-16T14:58:07.8635363+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"0f493595-17a9-47c4-8713-d1e50ac2e4a4\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-04-18T18:05:32.4036733+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"5485aba1-2d5a-4341-8fb5-49ef7c795019\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/operations/0f493595-17a9-47c4-8713-d1e50ac2e4a4?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMGY0OTM1OTUtMTdhOS00N2M0LTg3MTMtZDFlNTBhYzJlNGE0P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/5485aba1-2d5a-4341-8fb5-49ef7c795019?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNTQ4NWFiYTEtMmQ1YS00MzQxLThmYjUtNDllZjdjNzk1MDE5P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "ba04746e-b5f5-4664-b9bc-e197280ba65c" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2264,35 +2321,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996" + "Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29952" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "dd5ca9bc-d88b-4d2c-b20b-4c1da3534982" + "396d48b4-7c6b-437f-b811-b57c1c58e788" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11965" ], "x-ms-correlation-request-id": [ - "9e36d278-979a-4fcd-bcc4-b1645aff07dd" + "d248c818-47f2-48d0-80dc-b71f6ee34e75" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092921Z:9e36d278-979a-4fcd-bcc4-b1645aff07dd" + "CENTRALUSEUAP:20210418T123654Z:d248c818-47f2-48d0-80dc-b71f6ee34e75" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:29:20 GMT" + "Sun, 18 Apr 2021 12:36:53 GMT" ], "Content-Length": [ - "183" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2301,26 +2358,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-01-16T14:58:07.8635363+05:30\",\r\n \"endTime\": \"2020-01-16T14:59:06.863777+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"0f493595-17a9-47c4-8713-d1e50ac2e4a4\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-04-18T18:05:32.4036733+05:30\",\r\n \"endTime\": \"2021-04-18T18:06:44.7162831+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"5485aba1-2d5a-4341-8fb5-49ef7c795019\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvY2FjaGUxMDI/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2NhY2hlMTAyMj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b4c018f1-e80b-4188-a549-02933e7664e1" + "f77b5fa7-1137-4cc6-bd51-c8ef081eb102" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2337,13 +2394,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/westus/asyncoperations/1248ac0c-771d-440b-bdde-fc0041d8c587?monitor=true&api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/5f35bd6a-690b-4533-9490-33b773416ffe?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "1248ac0c-771d-440b-bdde-fc0041d8c587" + "5f35bd6a-690b-4533-9490-33b773416ffe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2352,19 +2409,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1179" ], "x-ms-correlation-request-id": [ - "8feb2ff4-871a-4d15-a6fa-fbe88bdf4cb3" + "b80094ab-da3e-4cf6-ae19-09f553f91f4f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092930Z:8feb2ff4-871a-4d15-a6fa-fbe88bdf4cb3" + "CENTRALUSEUAP:20210418T123658Z:b80094ab-da3e-4cf6-ae19-09f553f91f4f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:29:30 GMT" + "Sun, 18 Apr 2021 12:36:57 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -2380,16 +2437,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/westus/asyncoperations/1248ac0c-771d-440b-bdde-fc0041d8c587?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy8xMjQ4YWMwYy03NzFkLTQ0MGItYmRkZS1mYzAwNDFkOGM1ODc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/5f35bd6a-690b-4533-9490-33b773416ffe?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy81ZjM1YmQ2YS02OTBiLTQ1MzMtOTQ5MC0zM2I3NzM0MTZmZmU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -2400,7 +2457,7 @@ "no-cache" ], "x-ms-request-id": [ - "ae52eb4a-4920-4d46-ba79-16aa3dc3cd8e" + "1a93c1d3-a277-4ff0-900a-4f8c687304d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2409,22 +2466,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11926" ], "x-ms-correlation-request-id": [ - "27b10787-52f8-4060-83a6-c291b0c12449" + "87162dd2-7114-44c8-9484-6c1c5407fba0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092948Z:27b10787-52f8-4060-83a6-c291b0c12449" + "CENTRALUSEUAP:20210418T123715Z:87162dd2-7114-44c8-9484-6c1c5407fba0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:29:47 GMT" + "Sun, 18 Apr 2021 12:37:15 GMT" ], "Content-Length": [ - "1027" + "1034" ], "Content-Type": [ "application/json" @@ -2433,32 +2490,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"name\": \"cache102\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-01-16T09:29:30.0509275Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-01-16T09:29:30.0509275Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-01-16T09:29:29.988428Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cache102.blob.core.windows.net/\",\r\n \"queue\": \"https://cache102.queue.core.windows.net/\",\r\n \"table\": \"https://cache102.table.core.windows.net/\",\r\n \"file\": \"https://cache102.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"name\": \"cache1022\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-18T12:36:57.1732783Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-18T12:36:57.1732783Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-04-18T12:36:57.0639304Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cache1022.blob.core.windows.net/\",\r\n \"queue\": \"https://cache1022.queue.core.windows.net/\",\r\n \"table\": \"https://cache1022.table.core.windows.net/\",\r\n \"file\": \"https://cache1022.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/A2APowershellTestRg102?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDI/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/A2APowershellTestRg1022?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "76b391e0-509a-4344-aa3c-0aa2db574f8c" + "e9aba027-9f9c-48f2-8bdb-a05ba4ef602d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "28" + "35" ] }, "ResponseHeaders": { @@ -2469,16 +2526,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1178" ], "x-ms-request-id": [ - "47dd9ac1-ebad-4543-bc2f-99288af73f45" + "f8520d02-3a6b-4f2d-a8e3-659c6f4f55ae" ], "x-ms-correlation-request-id": [ - "47dd9ac1-ebad-4543-bc2f-99288af73f45" + "f8520d02-3a6b-4f2d-a8e3-659c6f4f55ae" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T092953Z:47dd9ac1-ebad-4543-bc2f-99288af73f45" + "CENTRALUSEUAP:20210418T123716Z:f8520d02-3a6b-4f2d-a8e3-659c6f4f55ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2487,10 +2544,10 @@ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 09:29:53 GMT" + "Sun, 18 Apr 2021 12:37:16 GMT" ], "Content-Length": [ - "197" + "206" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2499,32 +2556,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102\",\r\n \"name\": \"A2APowershellTestRg102\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022\",\r\n \"name\": \"A2APowershellTestRg1022\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "affcbf97-49ef-4a1d-825e-b3547814ca84-2020-01-16 09:30:13Z-P" + "1d088dc6-6cf6-4e77-ace1-8e0fd276da8a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "91" + "98" ] }, "ResponseHeaders": { @@ -2538,10 +2595,10 @@ "nosniff" ], "x-ms-request-id": [ - "49d6c3a2-f633-4ab8-9bfb-9b2278f3d05c" + "5593cbee-8d84-4f8b-bf37-8ce202dc619a" ], "x-ms-client-request-id": [ - "affcbf97-49ef-4a1d-825e-b3547814ca84-2020-01-16 09:30:13Z-P" + "1d088dc6-6cf6-4e77-ace1-8e0fd276da8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2550,19 +2607,19 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "199" + "208" ], "x-ms-correlation-request-id": [ - "49d6c3a2-f633-4ab8-9bfb-9b2278f3d05c" + "5593cbee-8d84-4f8b-bf37-8ce202dc619a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093022Z:49d6c3a2-f633-4ab8-9bfb-9b2278f3d05c" + "CENTRALUSEUAP:20210418T123741Z:5593cbee-8d84-4f8b-bf37-8ce202dc619a" ], "Date": [ - "Thu, 16 Jan 2020 09:30:21 GMT" + "Sun, 18 Apr 2021 12:37:40 GMT" ], "Content-Length": [ - "356" + "480" ], "Content-Type": [ "application/json" @@ -2571,26 +2628,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"eastus\",\r\n \"name\": \"A2APowershellTest102\",\r\n \"etag\": \"W/\\\"datetime'2020-01-16T09%3A30%3A21.0294573Z'\\\"\",\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest1022\",\r\n \"etag\": \"W/\\\"datetime'2021-04-18T12%3A37%3A40.929241Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10b7760d-7884-4bc6-a72a-21c0b4e37934-2020-01-16 09:30:42Z-P" + "f457bfa4-39ac-43c5-9a16-bd306fbc6be9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, "ResponseHeaders": { @@ -2604,31 +2661,31 @@ "nosniff" ], "x-ms-request-id": [ - "6a7c30bc-8ece-44db-9ea9-0d7b998b9282" + "02fadccd-5be8-4932-bb29-b6b66d8c6745" ], "x-ms-client-request-id": [ - "10b7760d-7884-4bc6-a72a-21c0b4e37934-2020-01-16 09:30:42Z-P" + "f457bfa4-39ac-43c5-9a16-bd306fbc6be9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], "Server": [ "Microsoft-IIS/10.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11898" + ], "x-ms-correlation-request-id": [ - "6a7c30bc-8ece-44db-9ea9-0d7b998b9282" + "02fadccd-5be8-4932-bb29-b6b66d8c6745" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093043Z:6a7c30bc-8ece-44db-9ea9-0d7b998b9282" + "CENTRALUSEUAP:20210418T123801Z:02fadccd-5be8-4932-bb29-b6b66d8c6745" ], "Date": [ - "Thu, 16 Jan 2020 09:30:43 GMT" + "Sun, 18 Apr 2021 12:38:00 GMT" ], "Content-Length": [ - "356" + "480" ], "Content-Type": [ "application/json" @@ -2637,17 +2694,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"eastus\",\r\n \"name\": \"A2APowershellTest102\",\r\n \"etag\": \"W/\\\"datetime'2020-01-16T09%3A30%3A21.0294573Z'\\\"\",\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest1022\",\r\n \"etag\": \"W/\\\"datetime'2021-04-18T12%3A37%3A40.929241Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9leHRlbmRlZEluZm9ybWF0aW9uL3ZhdWx0RXh0ZW5kZWRJbmZvP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL2V4dGVuZGVkSW5mb3JtYXRpb24vdmF1bHRFeHRlbmRlZEluZm8/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e88dba79-c9ab-448a-9272-515024d15bfb-2020-01-16 09:30:43Z-Ps" + "9667d55b-c37a-4d94-90e8-e4f175658746" ], "Accept-Language": [ "en-US" @@ -2656,10 +2713,10 @@ "" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, "ResponseHeaders": { @@ -2673,10 +2730,10 @@ "nosniff" ], "x-ms-request-id": [ - "3af5e0f3-09db-4cfe-ad1a-4231c0a12732" + "5bde910b-1423-485f-bb14-75d76acc64bd" ], "x-ms-client-request-id": [ - "e88dba79-c9ab-448a-9272-515024d15bfb-2020-01-16 09:30:43Z-Ps" + "9667d55b-c37a-4d94-90e8-e4f175658746" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2685,16 +2742,16 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11897" ], "x-ms-correlation-request-id": [ - "3af5e0f3-09db-4cfe-ad1a-4231c0a12732" + "5bde910b-1423-485f-bb14-75d76acc64bd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093044Z:3af5e0f3-09db-4cfe-ad1a-4231c0a12732" + "CENTRALUSEUAP:20210418T123801Z:5bde910b-1423-485f-bb14-75d76acc64bd" ], "Date": [ - "Thu, 16 Jan 2020 09:30:44 GMT" + "Sun, 18 Apr 2021 12:38:01 GMT" ], "Content-Length": [ "86" @@ -2710,13 +2767,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9leHRlbmRlZEluZm9ybWF0aW9uL3ZhdWx0RXh0ZW5kZWRJbmZvP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL2V4dGVuZGVkSW5mb3JtYXRpb24vdmF1bHRFeHRlbmRlZEluZm8/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"kHFCis0HCpeZzPNQgHr1iA==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"HQ5b9ox5fWQsbrMqburXjg==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b4b66c98-55e7-4e38-acd6-12a83b18d9aa-2020-01-16 09:30:45Z-Ps" + "9667d55b-c37a-4d94-90e8-e4f175658746" ], "Accept-Language": [ "en-US" @@ -2725,10 +2782,10 @@ "" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2748,10 +2805,10 @@ "nosniff" ], "x-ms-request-id": [ - "a904c49e-be28-48c3-bda2-9e0b0c154e56" + "4ec8b5cd-6852-4f98-91cd-74091cc891a2" ], "x-ms-client-request-id": [ - "b4b66c98-55e7-4e38-acd6-12a83b18d9aa-2020-01-16 09:30:45Z-Ps" + "9667d55b-c37a-4d94-90e8-e4f175658746" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2760,19 +2817,19 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1179" ], "x-ms-correlation-request-id": [ - "a904c49e-be28-48c3-bda2-9e0b0c154e56" + "4ec8b5cd-6852-4f98-91cd-74091cc891a2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093046Z:a904c49e-be28-48c3-bda2-9e0b0c154e56" + "CENTRALUSEUAP:20210418T123802Z:4ec8b5cd-6852-4f98-91cd-74091cc891a2" ], "Date": [ - "Thu, 16 Jan 2020 09:30:46 GMT" + "Sun, 18 Apr 2021 12:38:01 GMT" ], "Content-Length": [ - "412" + "414" ], "Content-Type": [ "application/json" @@ -2781,26 +2838,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"1dc107c5-6705-4c38-a343-f3eb17da807e\",\r\n \"properties\": {\r\n \"integrityKey\": \"kHFCis0HCpeZzPNQgHr1iA==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"f19ffc17-bd68-4332-bbf4-e99e68564f69\",\r\n \"properties\": {\r\n \"integrityKey\": \"HQ5b9ox5fWQsbrMqburXjg==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff445aa0-1792-4cb6-9232-224bce85bc69" + "9667d55b-c37a-4d94-90e8-e4f175658746" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, "ResponseHeaders": { @@ -2814,10 +2871,10 @@ "nosniff" ], "x-ms-request-id": [ - "2d685dde-f468-4ff4-8d8b-8fdfa4fa9d89" + "e43fb7bf-ea6e-40db-9f2c-ab625f0f66b9" ], "x-ms-client-request-id": [ - "ff445aa0-1792-4cb6-9232-224bce85bc69" + "9667d55b-c37a-4d94-90e8-e4f175658746" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2826,19 +2883,19 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11896" ], "x-ms-correlation-request-id": [ - "2d685dde-f468-4ff4-8d8b-8fdfa4fa9d89" + "e43fb7bf-ea6e-40db-9f2c-ab625f0f66b9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093046Z:2d685dde-f468-4ff4-8d8b-8fdfa4fa9d89" + "CENTRALUSEUAP:20210418T123802Z:e43fb7bf-ea6e-40db-9f2c-ab625f0f66b9" ], "Date": [ - "Thu, 16 Jan 2020 09:30:46 GMT" + "Sun, 18 Apr 2021 12:38:02 GMT" ], "Content-Length": [ - "367" + "493" ], "Content-Type": [ "application/json" @@ -2847,29 +2904,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"A2APowershellTest102\",\r\n \"etag\": \"W/\\\"datetime'2020-01-16T09%3A30%3A46.206303Z'\\\"\",\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102\",\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\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest1022\",\r\n \"etag\": \"W/\\\"datetime'2021-04-18T12%3A38%3A02.4103695Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022\",\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/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMj9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westus\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"EastUS\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d5a6cf07-d75f-4b96-b2c0-92b66adcc117-2020-01-16 09:30:46Z-Ps" + "91116f40-a72a-46bf-8aca-b30189774b50" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163446879)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768246879)\\/\",\"ClientRequestId\":\"d5a6cf07-d75f-4b96-b2c0-92b66adcc117-2020-01-16 09:30:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eKRJWZfh1+rWAi36LP7v7yneWX2tBNUqCf3oQ6evkYA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618745883026)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350683026)\\/\",\"ClientRequestId\":\"0ce79016-0ea6-40f0-a69f-6792d4e9eb23-2021-04-18 12:38:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oL6uTnyRgqHM7ihEBDktQgRK97fKZimEYtQnLTvI6rs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2886,41 +2943,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/operationresults/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/operationresults/28cc20af-fa73-40e2-9dee-85f32aa243a4?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationOperationStatus/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationOperationStatus/28cc20af-fa73-40e2-9dee-85f32aa243a4?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d5a6cf07-d75f-4b96-b2c0-92b66adcc117-2020-01-16 09:30:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "91116f40-a72a-46bf-8aca-b30189774b50" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1183" ], "x-ms-correlation-request-id": [ - "954875cc-0224-4d00-913c-2432e17a021b" + "66ed1487-d1e3-49f1-9816-2fb1153d8ff1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093049Z:954875cc-0224-4d00-913c-2432e17a021b" + "CENTRALUSEUAP:20210418T123804Z:66ed1487-d1e3-49f1-9816-2fb1153d8ff1" ], "Date": [ - "Thu, 16 Jan 2020 09:30:48 GMT" + "Sun, 18 Apr 2021 12:38:04 GMT" ], "Expires": [ "-1" @@ -2933,25 +2987,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMzFlYjRiODMtYWE2YS00YTk4LTliMTgtZGNkNTVhYTJiNWE5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8yOGNjMjBhZi1mYTczLTQwZTItOWRlZS04NWYzMmFhMjQzYTQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "131797fd-dbab-49a2-851e-1294711b76f4-2020-01-16 09:30:49Z-Ps" + "91116f40-a72a-46bf-8aca-b30189774b50" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163449166)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768249166)\\/\",\"ClientRequestId\":\"131797fd-dbab-49a2-851e-1294711b76f4-2020-01-16 09:30:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4+ybFX/VctkzRtYnyk30ODr8EIzdyxSf8iiIdTW8IUQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618745884918)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350684918)\\/\",\"ClientRequestId\":\"a6e89369-7d14-4550-a82b-348510df87e6-2021-04-18 12:38:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zCCkK7V2Q+VmUNPLjc+d3tetOSV+jvTSoblajSW7t0I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -2962,38 +3016,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11955" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "131797fd-dbab-49a2-851e-1294711b76f4-2020-01-16 09:30:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "91116f40-a72a-46bf-8aca-b30189774b50" ], "x-ms-correlation-request-id": [ - "cb19b300-bddf-4171-ac02-10add25ada0a" + "d36ea6db-674f-4c18-9ef7-4203aac7485c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093049Z:cb19b300-bddf-4171-ac02-10add25ada0a" + "CENTRALUSEUAP:20210418T123805Z:d36ea6db-674f-4c18-9ef7-4203aac7485c" ], "Date": [ - "Thu, 16 Jan 2020 09:30:49 GMT" + "Sun, 18 Apr 2021 12:38:04 GMT" ], "Content-Length": [ - "1343" + "1314" ], "Content-Type": [ "application/json" @@ -3002,29 +3053,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5a6cf07-d75f-4b96-b2c0-92b66adcc117-2020-01-16 09:30:46Z-Ps ActivityId: 954875cc-0224-4d00-913c-2432e17a021b\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-16T09:30:48.8197102Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric102\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"91116f40-a72a-46bf-8aca-b30189774b50 ActivityId: 66ed1487-d1e3-49f1-9816-2fb1153d8ff1\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric1022\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMzFlYjRiODMtYWE2YS00YTk4LTliMTgtZGNkNTVhYTJiNWE5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8yOGNjMjBhZi1mYTczLTQwZTItOWRlZS04NWYzMmFhMjQzYTQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28fcefee-b886-4edc-9044-0ad1c793427f-2020-01-16 09:30:49Z-Ps" + "5d141155-e7f6-4ed9-9b8a-2b8cc7054186" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163449625)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768249625)\\/\",\"ClientRequestId\":\"28fcefee-b886-4edc-9044-0ad1c793427f-2020-01-16 09:30:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0FlZTCED823jR+qkgFaErr1hsXQj3akSCZvs+amSRys=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618745885376)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350685376)\\/\",\"ClientRequestId\":\"7cd8b8ff-6faf-4e0b-bd11-8f2cd8f6b5c7-2021-04-18 12:38:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qLqc1Qmt0rYxiS08xz3dGrtEiinv+Ml4307jTbvrMXY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3035,38 +3086,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11954" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "28fcefee-b886-4edc-9044-0ad1c793427f-2020-01-16 09:30:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5d141155-e7f6-4ed9-9b8a-2b8cc7054186" ], "x-ms-correlation-request-id": [ - "396d22ad-d97f-4c2c-b521-180018b94c54" + "a55f12a0-7583-4eb5-a8b2-0fcf25a94e80" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093049Z:396d22ad-d97f-4c2c-b521-180018b94c54" + "CENTRALUSEUAP:20210418T123805Z:a55f12a0-7583-4eb5-a8b2-0fcf25a94e80" ], "Date": [ - "Thu, 16 Jan 2020 09:30:49 GMT" + "Sun, 18 Apr 2021 12:38:04 GMT" ], "Content-Length": [ - "1343" + "1323" ], "Content-Type": [ "application/json" @@ -3075,29 +3123,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5a6cf07-d75f-4b96-b2c0-92b66adcc117-2020-01-16 09:30:46Z-Ps ActivityId: 954875cc-0224-4d00-913c-2432e17a021b\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-16T09:30:48.8197102Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric102\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"91116f40-a72a-46bf-8aca-b30189774b50 ActivityId: 66ed1487-d1e3-49f1-9816-2fb1153d8ff1\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T12:38:05.1055069Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric1022\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMzFlYjRiODMtYWE2YS00YTk4LTliMTgtZGNkNTVhYTJiNWE5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8yOGNjMjBhZi1mYTczLTQwZTItOWRlZS04NWYzMmFhMjQzYTQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33d16992-a3b5-42cd-8200-1abd78429067-2020-01-16 09:31:10Z-Ps" + "9485f520-00f2-4770-9e5c-9696755b5102" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163470111)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768270111)\\/\",\"ClientRequestId\":\"33d16992-a3b5-42cd-8200-1abd78429067-2020-01-16 09:31:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PVjMoyUhJAncZZ9V4LUHwqK+/mWsAhZYRyzAgY8viY8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618745905782)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350705782)\\/\",\"ClientRequestId\":\"97b1f2ec-8225-4c7f-aca6-9c9d4aceb800-2021-04-18 12:38:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"y3sFWoFdkqkMhsnc9x5RxwasMnNjv3ggs//71LQ/b/4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3108,38 +3156,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11948" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "33d16992-a3b5-42cd-8200-1abd78429067-2020-01-16 09:31:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9485f520-00f2-4770-9e5c-9696755b5102" ], "x-ms-correlation-request-id": [ - "7ff61b23-0b29-4d54-9ffd-e20d706f1de0" + "2ba5af3f-476a-490c-aec5-8e5ce4dcfeeb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093110Z:7ff61b23-0b29-4d54-9ffd-e20d706f1de0" + "CENTRALUSEUAP:20210418T123826Z:2ba5af3f-476a-490c-aec5-8e5ce4dcfeeb" ], "Date": [ - "Thu, 16 Jan 2020 09:31:09 GMT" + "Sun, 18 Apr 2021 12:38:26 GMT" ], "Content-Length": [ - "1343" + "1323" ], "Content-Type": [ "application/json" @@ -3148,29 +3193,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5a6cf07-d75f-4b96-b2c0-92b66adcc117-2020-01-16 09:30:46Z-Ps ActivityId: 954875cc-0224-4d00-913c-2432e17a021b\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-16T09:30:48.8197102Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric102\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"91116f40-a72a-46bf-8aca-b30189774b50 ActivityId: 66ed1487-d1e3-49f1-9816-2fb1153d8ff1\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T12:38:05.1055069Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric1022\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMzFlYjRiODMtYWE2YS00YTk4LTliMTgtZGNkNTVhYTJiNWE5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8yOGNjMjBhZi1mYTczLTQwZTItOWRlZS04NWYzMmFhMjQzYTQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2e4f16c-c91f-4155-b1c7-464ec80b9dcf-2020-01-16 09:31:30Z-Ps" + "5333cd4d-81bb-47ef-a4fd-8ecbcb505e50" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163490635)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768290635)\\/\",\"ClientRequestId\":\"f2e4f16c-c91f-4155-b1c7-464ec80b9dcf-2020-01-16 09:31:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5E3IKgqeqCEH/DZPVI7kpl1EZk+IfmJu332/nOkY8Z4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618745926291)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350726291)\\/\",\"ClientRequestId\":\"248ca70b-745f-490c-9d98-a25e12223e3a-2021-04-18 12:38:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QkYOpgyb7qmuG2ywMbsPgbG13lGi9ER0k0aqmOU3qNw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3181,38 +3226,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11935" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f2e4f16c-c91f-4155-b1c7-464ec80b9dcf-2020-01-16 09:31:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5333cd4d-81bb-47ef-a4fd-8ecbcb505e50" ], "x-ms-correlation-request-id": [ - "028c10ee-6c8f-438d-b1bf-667b7ca0d203" + "8078808e-9524-4a2b-a48b-2ba863724ebb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093131Z:028c10ee-6c8f-438d-b1bf-667b7ca0d203" + "CENTRALUSEUAP:20210418T123846Z:8078808e-9524-4a2b-a48b-2ba863724ebb" ], "Date": [ - "Thu, 16 Jan 2020 09:31:30 GMT" + "Sun, 18 Apr 2021 12:38:46 GMT" ], "Content-Length": [ - "1343" + "1323" ], "Content-Type": [ "application/json" @@ -3221,29 +3263,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5a6cf07-d75f-4b96-b2c0-92b66adcc117-2020-01-16 09:30:46Z-Ps ActivityId: 954875cc-0224-4d00-913c-2432e17a021b\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-16T09:30:48.8197102Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric102\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"91116f40-a72a-46bf-8aca-b30189774b50 ActivityId: 66ed1487-d1e3-49f1-9816-2fb1153d8ff1\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T12:38:05.1055069Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric1022\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMzFlYjRiODMtYWE2YS00YTk4LTliMTgtZGNkNTVhYTJiNWE5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8yOGNjMjBhZi1mYTczLTQwZTItOWRlZS04NWYzMmFhMjQzYTQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f8fd449-a5b1-4030-8a9f-e9250e372a58-2020-01-16 09:31:51Z-Ps" + "9f965f7b-d7c6-4936-be9c-d83793b1b0cc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163511160)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768311160)\\/\",\"ClientRequestId\":\"1f8fd449-a5b1-4030-8a9f-e9250e372a58-2020-01-16 09:31:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EnsPVaznplZAE0YbXYQtxJgPM6sPodH2ONwfC8GgTsc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618745946693)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350746693)\\/\",\"ClientRequestId\":\"422ad8f8-c9e3-4384-8dfe-584f9b18fb61-2021-04-18 12:39:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"w2rpXyVubxnm65TwruoAUtV9+gDCCnUTRkBo4N9SF1Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3254,38 +3296,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11933" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1f8fd449-a5b1-4030-8a9f-e9250e372a58-2020-01-16 09:31:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9f965f7b-d7c6-4936-be9c-d83793b1b0cc" ], "x-ms-correlation-request-id": [ - "b724d91a-074e-46c1-b1a8-d295e9b31141" + "b69ea764-f6ce-4f21-a634-d6b45524f5b3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093151Z:b724d91a-074e-46c1-b1a8-d295e9b31141" + "CENTRALUSEUAP:20210418T123906Z:b69ea764-f6ce-4f21-a634-d6b45524f5b3" ], "Date": [ - "Thu, 16 Jan 2020 09:31:51 GMT" + "Sun, 18 Apr 2021 12:39:06 GMT" ], "Content-Length": [ - "1343" + "1323" ], "Content-Type": [ "application/json" @@ -3294,29 +3333,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5a6cf07-d75f-4b96-b2c0-92b66adcc117-2020-01-16 09:30:46Z-Ps ActivityId: 954875cc-0224-4d00-913c-2432e17a021b\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-16T09:30:48.8197102Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric102\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"91116f40-a72a-46bf-8aca-b30189774b50 ActivityId: 66ed1487-d1e3-49f1-9816-2fb1153d8ff1\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T12:38:05.1055069Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric1022\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMzFlYjRiODMtYWE2YS00YTk4LTliMTgtZGNkNTVhYTJiNWE5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8yOGNjMjBhZi1mYTczLTQwZTItOWRlZS04NWYzMmFhMjQzYTQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "820c81ca-f2b7-4323-89d1-af05422534f6-2020-01-16 09:32:11Z-Ps" + "b7dc8689-8781-4554-b7d1-15f965e9acae" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163531660)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768331660)\\/\",\"ClientRequestId\":\"820c81ca-f2b7-4323-89d1-af05422534f6-2020-01-16 09:32:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IiqplVpfB5HrhjUZvU2tfWrxmNoqIj3BdhFxzUCNbko=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618745967079)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350767079)\\/\",\"ClientRequestId\":\"799f1a9f-1e81-4dc9-9ded-4c00bfe994de-2021-04-18 12:39:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sKyuZP51iyBs/YU6bm+nl84LKClEqt7y2dxuQMOk3zQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3327,38 +3366,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11931" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "820c81ca-f2b7-4323-89d1-af05422534f6-2020-01-16 09:32:11Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b7dc8689-8781-4554-b7d1-15f965e9acae" ], "x-ms-correlation-request-id": [ - "f878966d-b5d4-49c6-92e2-0add763f1498" + "536c8f62-1ec2-48f1-b679-851972076dee" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093212Z:f878966d-b5d4-49c6-92e2-0add763f1498" + "CENTRALUSEUAP:20210418T123927Z:536c8f62-1ec2-48f1-b679-851972076dee" ], "Date": [ - "Thu, 16 Jan 2020 09:32:11 GMT" + "Sun, 18 Apr 2021 12:39:27 GMT" ], "Content-Length": [ - "1381" + "1361" ], "Content-Type": [ "application/json" @@ -3367,29 +3403,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d5a6cf07-d75f-4b96-b2c0-92b66adcc117-2020-01-16 09:30:46Z-Ps ActivityId: 954875cc-0224-4d00-913c-2432e17a021b\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-16T09:31:53.4526715Z\",\r\n \"endTime\": \"2020-01-16T09:31:53.6557918Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric102\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"91116f40-a72a-46bf-8aca-b30189774b50 ActivityId: 66ed1487-d1e3-49f1-9816-2fb1153d8ff1\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T12:39:10.3210796Z\",\r\n \"endTime\": \"2021-04-18T12:39:10.4860767Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric1022\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMj9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53b6a017-b5a7-4de4-91e1-601ff947e2e9-2020-01-16 09:32:12Z-Ps" + "1d39c4d8-76cc-4895-a40a-28a46514222b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163532110)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768332110)\\/\",\"ClientRequestId\":\"53b6a017-b5a7-4de4-91e1-601ff947e2e9-2020-01-16 09:32:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0KHuLhX+jhSZE5KpjlFdvJi+BYC8ZBP5C1221JCXk5A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618745967474)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350767474)\\/\",\"ClientRequestId\":\"b616ffc8-55bc-426e-b0bd-1c0aacf917b3-2021-04-18 12:39:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"R1mJhhSrHwDTOp5J9er6qDHmPqT12mU/3LMHSu3ZfZY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3400,38 +3436,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11930" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "53b6a017-b5a7-4de4-91e1-601ff947e2e9-2020-01-16 09:32:12Z-Ps 1/16/2020 9:32:12 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "1d39c4d8-76cc-4895-a40a-28a46514222b 4/18/2021 12:39:27 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "53b6a017-b5a7-4de4-91e1-601ff947e2e9-2020-01-16 09:32:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1d39c4d8-76cc-4895-a40a-28a46514222b" ], "x-ms-correlation-request-id": [ - "1d092350-ce33-4380-8803-59ccbe221e08" + "3284b75e-1944-4454-96c8-87fb6183b39a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093212Z:1d092350-ce33-4380-8803-59ccbe221e08" + "CENTRALUSEUAP:20210418T123927Z:3284b75e-1944-4454-96c8-87fb6183b39a" ], "Date": [ - "Thu, 16 Jan 2020 09:32:12 GMT" + "Sun, 18 Apr 2021 12:39:27 GMT" ], "Content-Length": [ - "672" + "687" ], "Content-Type": [ "application/json" @@ -3440,29 +3473,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102\",\r\n \"properties\": {\r\n \"friendlyName\": \"West US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westus\",\r\n \"containerIds\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMj9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9292dc58-1db4-4cb9-9853-9774d8dc9db7-2020-01-16 09:33:38Z-Ps" + "9936516f-f0e1-47cb-a2ca-9374a2477ada" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163618214)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768418214)\\/\",\"ClientRequestId\":\"9292dc58-1db4-4cb9-9853-9774d8dc9db7-2020-01-16 09:33:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JF7jVzV0+MpW+c9YPq/H1aamBI5ktRIlWDUktkmx7gI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746051620)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350851620)\\/\",\"ClientRequestId\":\"248da2d2-75a1-454c-bf68-096b9bbd0429-2021-04-18 12:40:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3zys2UA2XBDqG6lddu2iJ2ZWjB9g5BSN4Hw8CeBeWIE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3473,38 +3506,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11913" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "9292dc58-1db4-4cb9-9853-9774d8dc9db7-2020-01-16 09:33:38Z-Ps 1/16/2020 9:33:38 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "9936516f-f0e1-47cb-a2ca-9374a2477ada 4/18/2021 12:40:51 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9292dc58-1db4-4cb9-9853-9774d8dc9db7-2020-01-16 09:33:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9936516f-f0e1-47cb-a2ca-9374a2477ada" ], "x-ms-correlation-request-id": [ - "6833ae3c-0ba8-463a-81b8-405ade829d1b" + "7c45da5e-2955-47a1-824d-0333cf0410f1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093338Z:6833ae3c-0ba8-463a-81b8-405ade829d1b" + "CENTRALUSEUAP:20210418T124051Z:7c45da5e-2955-47a1-824d-0333cf0410f1" ], "Date": [ - "Thu, 16 Jan 2020 09:33:37 GMT" + "Sun, 18 Apr 2021 12:40:51 GMT" ], "Content-Length": [ - "672" + "687" ], "Content-Type": [ "application/json" @@ -3513,35 +3543,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102\",\r\n \"properties\": {\r\n \"friendlyName\": \"West US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westus\",\r\n \"containerIds\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDI/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzEwMjI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"WestCentralUS\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a7086c78-7cb5-4796-8bc1-13794792d925-2020-01-16 09:32:12Z-Ps" + "90abeccc-ae78-4ffd-a9ae-3429cc858127" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163532717)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768332717)\\/\",\"ClientRequestId\":\"a7086c78-7cb5-4796-8bc1-13794792d925-2020-01-16 09:32:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rIvclZ68pMSs+voENkjQT/I0pq32UohxgFKl+QS3bzU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618745967972)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350767972)\\/\",\"ClientRequestId\":\"5d647053-c8cb-494d-8b9b-76fcdbd1e001-2021-04-18 12:39:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"s7g7EtOLVQbazwGtBNxLVH3XXmfQQD2vK4JJvESxJ+w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "119" + "126" ] }, "ResponseHeaders": { @@ -3552,41 +3582,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/operationresults/431d597b-0a04-4121-a2c0-beab71305eb1?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/operationresults/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationOperationStatus/431d597b-0a04-4121-a2c0-beab71305eb1?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationOperationStatus/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a7086c78-7cb5-4796-8bc1-13794792d925-2020-01-16 09:32:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "90abeccc-ae78-4ffd-a9ae-3429cc858127" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1178" ], "x-ms-correlation-request-id": [ - "9dc186e8-2fee-4a84-a234-c89dc5846297" + "d6258f6b-a9a2-4147-9472-c3b768c0a0f2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093213Z:9dc186e8-2fee-4a84-a234-c89dc5846297" + "CENTRALUSEUAP:20210418T123928Z:d6258f6b-a9a2-4147-9472-c3b768c0a0f2" ], "Date": [ - "Thu, 16 Jan 2020 09:32:12 GMT" + "Sun, 18 Apr 2021 12:39:28 GMT" ], "Expires": [ "-1" @@ -3599,25 +3626,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNDMxZDU5N2ItMGEwNC00MTIxLWEyYzAtYmVhYjcxMzA1ZWIxP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9kYjE2ZjY3ZS03NGIxLTRjZDEtYTBkMy00MDE3YTRjZDFhYmM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c23c0dd-f7dd-4ad3-ad51-413c30c65c92-2020-01-16 09:32:13Z-Ps" + "90abeccc-ae78-4ffd-a9ae-3429cc858127" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163533477)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768333477)\\/\",\"ClientRequestId\":\"0c23c0dd-f7dd-4ad3-ad51-413c30c65c92-2020-01-16 09:32:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"q0blG4G36mc9mE1K7a/Wm/RWiKjKGZ0QsNYgkJ5YZpU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618745968575)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350768575)\\/\",\"ClientRequestId\":\"88a601c3-7583-4470-a02a-310d3b79893e-2021-04-18 12:39:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"I44NgMrEhDa5si7XUeNacld8RDOag4twIJlGrXuaTN8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3628,38 +3655,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11929" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "0c23c0dd-f7dd-4ad3-ad51-413c30c65c92-2020-01-16 09:32:13Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "90abeccc-ae78-4ffd-a9ae-3429cc858127" ], "x-ms-correlation-request-id": [ - "c795d4d7-adeb-42eb-8955-c406ea13d5e2" + "75384bb3-7464-4263-afad-cbd8c1d52318" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093213Z:c795d4d7-adeb-42eb-8955-c406ea13d5e2" + "CENTRALUSEUAP:20210418T123928Z:75384bb3-7464-4263-afad-cbd8c1d52318" ], "Date": [ - "Thu, 16 Jan 2020 09:32:13 GMT" + "Sun, 18 Apr 2021 12:39:28 GMT" ], "Content-Length": [ - "1345" + "1325" ], "Content-Type": [ "application/json" @@ -3668,29 +3692,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a7086c78-7cb5-4796-8bc1-13794792d925-2020-01-16 09:32:12Z-Ps ActivityId: 9dc186e8-2fee-4a84-a234-c89dc5846297\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-16T09:32:13.2248176Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric102\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"90abeccc-ae78-4ffd-a9ae-3429cc858127 ActivityId: d6258f6b-a9a2-4147-9472-c3b768c0a0f2\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T12:39:28.4515677Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric1022\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNDMxZDU5N2ItMGEwNC00MTIxLWEyYzAtYmVhYjcxMzA1ZWIxP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9kYjE2ZjY3ZS03NGIxLTRjZDEtYTBkMy00MDE3YTRjZDFhYmM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e22b32c-7b84-4b78-8f8a-38e6755fbdd1-2020-01-16 09:32:13Z-Ps" + "c5cec7d0-41aa-42a6-9092-dff9d49d0a1d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163533919)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768333919)\\/\",\"ClientRequestId\":\"8e22b32c-7b84-4b78-8f8a-38e6755fbdd1-2020-01-16 09:32:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7b7jBwkIjFrFKpFHRQl/JkGK7ScE/xhs4IZ+7N6+K+U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618745968968)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350768968)\\/\",\"ClientRequestId\":\"2453f62f-4a4a-41e5-9377-c5b66ee7005d-2021-04-18 12:39:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"u5VXCA7e7iWA0NWZoGLIaDswUQKM8XiV+AVvfCH3d+Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3701,38 +3725,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11928" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "8e22b32c-7b84-4b78-8f8a-38e6755fbdd1-2020-01-16 09:32:13Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c5cec7d0-41aa-42a6-9092-dff9d49d0a1d" ], "x-ms-correlation-request-id": [ - "39f58d8c-ce58-482d-b6fb-bdc05f4399be" + "0feb3fa9-9d4e-4b3f-877e-b5b37c439567" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093214Z:39f58d8c-ce58-482d-b6fb-bdc05f4399be" + "CENTRALUSEUAP:20210418T123929Z:0feb3fa9-9d4e-4b3f-877e-b5b37c439567" ], "Date": [ - "Thu, 16 Jan 2020 09:32:13 GMT" + "Sun, 18 Apr 2021 12:39:29 GMT" ], "Content-Length": [ - "1345" + "1325" ], "Content-Type": [ "application/json" @@ -3741,29 +3762,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a7086c78-7cb5-4796-8bc1-13794792d925-2020-01-16 09:32:12Z-Ps ActivityId: 9dc186e8-2fee-4a84-a234-c89dc5846297\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-16T09:32:13.2248176Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric102\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"90abeccc-ae78-4ffd-a9ae-3429cc858127 ActivityId: d6258f6b-a9a2-4147-9472-c3b768c0a0f2\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T12:39:28.4515677Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric1022\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNDMxZDU5N2ItMGEwNC00MTIxLWEyYzAtYmVhYjcxMzA1ZWIxP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9kYjE2ZjY3ZS03NGIxLTRjZDEtYTBkMy00MDE3YTRjZDFhYmM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1f6f1f7-11f1-4c37-a9d1-fcfb556826e9-2020-01-16 09:32:34Z-Ps" + "697f4ae5-1069-4f79-a87d-8345a1e21a70" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163554424)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768354424)\\/\",\"ClientRequestId\":\"c1f6f1f7-11f1-4c37-a9d1-fcfb556826e9-2020-01-16 09:32:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MZzCxAVIlVYrf272gQ6BaXtIignRnZWfkbFIzM0V96s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618745989351)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350789351)\\/\",\"ClientRequestId\":\"f763d0b7-5c9b-4232-b38a-a3565fc5e7f8-2021-04-18 12:39:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7DliGPh/25yb5Xdr2BUYKot3scCS//6/fS24ACsF/zo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3774,38 +3795,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11926" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c1f6f1f7-11f1-4c37-a9d1-fcfb556826e9-2020-01-16 09:32:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "697f4ae5-1069-4f79-a87d-8345a1e21a70" ], "x-ms-correlation-request-id": [ - "68df5398-0b05-4251-bd61-9d253ea49683" + "7c5d394a-7d55-488c-a57e-7af10bc90c2e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093235Z:68df5398-0b05-4251-bd61-9d253ea49683" + "CENTRALUSEUAP:20210418T123949Z:7c5d394a-7d55-488c-a57e-7af10bc90c2e" ], "Date": [ - "Thu, 16 Jan 2020 09:32:35 GMT" + "Sun, 18 Apr 2021 12:39:48 GMT" ], "Content-Length": [ - "1345" + "1325" ], "Content-Type": [ "application/json" @@ -3814,29 +3832,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a7086c78-7cb5-4796-8bc1-13794792d925-2020-01-16 09:32:12Z-Ps ActivityId: 9dc186e8-2fee-4a84-a234-c89dc5846297\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-16T09:32:13.2248176Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric102\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"90abeccc-ae78-4ffd-a9ae-3429cc858127 ActivityId: d6258f6b-a9a2-4147-9472-c3b768c0a0f2\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T12:39:28.4515677Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric1022\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNDMxZDU5N2ItMGEwNC00MTIxLWEyYzAtYmVhYjcxMzA1ZWIxP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9kYjE2ZjY3ZS03NGIxLTRjZDEtYTBkMy00MDE3YTRjZDFhYmM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ff2e999-ca46-4969-b812-b26e84cc6de7-2020-01-16 09:32:56Z-Ps" + "01a1b3a4-8473-4c9b-85e6-e920ad86528d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163576025)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768376025)\\/\",\"ClientRequestId\":\"6ff2e999-ca46-4969-b812-b26e84cc6de7-2020-01-16 09:32:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0MO6BJoijuV/cXLKlz2ialbaoTKjhDb2q9j0ZXBTTpQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746009745)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350809745)\\/\",\"ClientRequestId\":\"2efdbd9e-3bc0-4621-ada5-68424c0e37f5-2021-04-18 12:40:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nvjdpfEle2ru0iVemSCsxTJK7DA5SvCwAsOloAbLyxw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3847,38 +3865,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11921" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "6ff2e999-ca46-4969-b812-b26e84cc6de7-2020-01-16 09:32:56Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "01a1b3a4-8473-4c9b-85e6-e920ad86528d" ], "x-ms-correlation-request-id": [ - "176b7c98-3e50-4668-8247-3edb52473106" + "a75df11a-6ea0-4523-b10a-84f5913c0f5f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093256Z:176b7c98-3e50-4668-8247-3edb52473106" + "CENTRALUSEUAP:20210418T124009Z:a75df11a-6ea0-4523-b10a-84f5913c0f5f" ], "Date": [ - "Thu, 16 Jan 2020 09:32:55 GMT" + "Sun, 18 Apr 2021 12:40:09 GMT" ], "Content-Length": [ - "1345" + "1325" ], "Content-Type": [ "application/json" @@ -3887,29 +3902,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a7086c78-7cb5-4796-8bc1-13794792d925-2020-01-16 09:32:12Z-Ps ActivityId: 9dc186e8-2fee-4a84-a234-c89dc5846297\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-16T09:32:13.2248176Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric102\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"90abeccc-ae78-4ffd-a9ae-3429cc858127 ActivityId: d6258f6b-a9a2-4147-9472-c3b768c0a0f2\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T12:39:28.4515677Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric1022\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNDMxZDU5N2ItMGEwNC00MTIxLWEyYzAtYmVhYjcxMzA1ZWIxP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9kYjE2ZjY3ZS03NGIxLTRjZDEtYTBkMy00MDE3YTRjZDFhYmM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "574e319b-6163-4329-92b2-1b8a021aa329-2020-01-16 09:33:16Z-Ps" + "596b9e10-d8f3-4bcc-ab45-61ccce65c271" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163596719)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768396719)\\/\",\"ClientRequestId\":\"574e319b-6163-4329-92b2-1b8a021aa329-2020-01-16 09:33:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"P95w6/doAsdRkN9ean2vviX8SdbCXXDOrrvvS98Nh8E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746030119)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350830119)\\/\",\"ClientRequestId\":\"eceafff7-8364-468e-84d5-3265c13b5b0f-2021-04-18 12:40:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ef4CkYOwPUUaZnKUEkq8Y/WH1LAMRTOBJpBP7docqk0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3920,38 +3935,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "11917" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "574e319b-6163-4329-92b2-1b8a021aa329-2020-01-16 09:33:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "596b9e10-d8f3-4bcc-ab45-61ccce65c271" ], "x-ms-correlation-request-id": [ - "43b0e74a-7c4c-4d88-814f-3bcaf1e9a2f3" + "39166429-3b7e-43ad-94f8-b92d3bd05610" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093317Z:43b0e74a-7c4c-4d88-814f-3bcaf1e9a2f3" + "CENTRALUSEUAP:20210418T124030Z:39166429-3b7e-43ad-94f8-b92d3bd05610" ], "Date": [ - "Thu, 16 Jan 2020 09:33:16 GMT" + "Sun, 18 Apr 2021 12:40:30 GMT" ], "Content-Length": [ - "1345" + "1325" ], "Content-Type": [ "application/json" @@ -3960,29 +3972,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a7086c78-7cb5-4796-8bc1-13794792d925-2020-01-16 09:32:12Z-Ps ActivityId: 9dc186e8-2fee-4a84-a234-c89dc5846297\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-16T09:32:13.2248176Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric102\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"90abeccc-ae78-4ffd-a9ae-3429cc858127 ActivityId: d6258f6b-a9a2-4147-9472-c3b768c0a0f2\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T12:39:28.4515677Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric1022\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNDMxZDU5N2ItMGEwNC00MTIxLWEyYzAtYmVhYjcxMzA1ZWIxP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9kYjE2ZjY3ZS03NGIxLTRjZDEtYTBkMy00MDE3YTRjZDFhYmM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "380a120d-fa69-4a94-be8e-b1a403d60cff-2020-01-16 09:33:37Z-Ps" + "b2023f61-7cfc-4627-a652-01efd9355b2c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163617259)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768417259)\\/\",\"ClientRequestId\":\"380a120d-fa69-4a94-be8e-b1a403d60cff-2020-01-16 09:33:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yK0eqCkjn/UqTjGr4nxOXbdtcqKC9jJAdEwVqsQwXKQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746050811)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350850811)\\/\",\"ClientRequestId\":\"4698dc6f-9a22-4d16-85c1-7c7fc651a257-2021-04-18 12:40:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cVD8um/jHiOwV18gVB58zXm8+L1G823kqUozT7+4/wM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3993,38 +4005,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11915" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "380a120d-fa69-4a94-be8e-b1a403d60cff-2020-01-16 09:33:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b2023f61-7cfc-4627-a652-01efd9355b2c" ], "x-ms-correlation-request-id": [ - "d30a7073-b3e9-4268-aef0-047332b9de83" + "833660f1-5d7a-4218-90ba-b072ea025ba1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093337Z:d30a7073-b3e9-4268-aef0-047332b9de83" + "CENTRALUSEUAP:20210418T124051Z:833660f1-5d7a-4218-90ba-b072ea025ba1" ], "Date": [ - "Thu, 16 Jan 2020 09:33:36 GMT" + "Sun, 18 Apr 2021 12:40:50 GMT" ], "Content-Length": [ - "1382" + "1363" ], "Content-Type": [ "application/json" @@ -4033,29 +4042,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a7086c78-7cb5-4796-8bc1-13794792d925-2020-01-16 09:32:12Z-Ps ActivityId: 9dc186e8-2fee-4a84-a234-c89dc5846297\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-16T09:33:17.253848Z\",\r\n \"endTime\": \"2020-01-16T09:33:17.4413518Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric102\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"90abeccc-ae78-4ffd-a9ae-3429cc858127 ActivityId: d6258f6b-a9a2-4147-9472-c3b768c0a0f2\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T12:40:32.5888307Z\",\r\n \"endTime\": \"2021-04-18T12:40:32.8238311Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric1022\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDI/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzEwMjI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e017b406-4fba-4771-9e5a-1a0c43a6d20f-2020-01-16 09:33:37Z-Ps" + "4681663c-1ded-47b0-b547-5c93f4ea6f7f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163617683)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768417683)\\/\",\"ClientRequestId\":\"e017b406-4fba-4771-9e5a-1a0c43a6d20f-2020-01-16 09:33:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yIzMWeKh/hK0aoCpB5F9SuV0WTr0Uig4l+Qvis78UA0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746051178)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350851178)\\/\",\"ClientRequestId\":\"47d9d424-4354-432f-b5aa-918313f5b7ce-2021-04-18 12:40:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8YAf3C5GXwbxjx7sg+5PoxjSUJjelPxJ5rA84GGvJYQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4066,38 +4075,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11914" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "e017b406-4fba-4771-9e5a-1a0c43a6d20f-2020-01-16 09:33:37Z-Ps 1/16/2020 9:33:38 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "4681663c-1ded-47b0-b547-5c93f4ea6f7f 4/18/2021 12:40:51 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e017b406-4fba-4771-9e5a-1a0c43a6d20f-2020-01-16 09:33:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4681663c-1ded-47b0-b547-5c93f4ea6f7f" ], "x-ms-correlation-request-id": [ - "221fc2d4-e00a-4769-bd24-b6dc26dde84c" + "15b94b8c-97f1-4a4a-a4bc-a6e1890354de" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093338Z:221fc2d4-e00a-4769-bd24-b6dc26dde84c" + "CENTRALUSEUAP:20210418T124051Z:15b94b8c-97f1-4a4a-a4bc-a6e1890354de" ], "Date": [ - "Thu, 16 Jan 2020 09:33:37 GMT" + "Sun, 18 Apr 2021 12:40:50 GMT" ], "Content-Length": [ - "674" + "704" ], "Content-Type": [ "application/json" @@ -4106,29 +4112,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"properties\": {\r\n \"friendlyName\": \"West Central US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westcentralus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDI/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzEwMjI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0dca7f07-9c03-4796-9980-f7ffc1e71aad-2020-01-16 09:33:38Z-Ps" + "9eff20e5-3036-4486-9892-403a7c8638b8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163618708)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768418708)\\/\",\"ClientRequestId\":\"0dca7f07-9c03-4796-9980-f7ffc1e71aad-2020-01-16 09:33:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LuzC3fADDZ1yZhWFNbvszOCE7jKe0x8nxnTO8WGeYlg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746052024)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350852024)\\/\",\"ClientRequestId\":\"f3425b93-b834-4591-999a-eb407aaa70ce-2021-04-18 12:40:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wGoCMcG6gsDrjei5AFVTL15g0re/CgMjIELb85JzYFg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4139,38 +4145,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11912" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "0dca7f07-9c03-4796-9980-f7ffc1e71aad-2020-01-16 09:33:38Z-Ps 1/16/2020 9:33:40 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "9eff20e5-3036-4486-9892-403a7c8638b8 4/18/2021 12:40:52 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "0dca7f07-9c03-4796-9980-f7ffc1e71aad-2020-01-16 09:33:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9eff20e5-3036-4486-9892-403a7c8638b8" ], "x-ms-correlation-request-id": [ - "42bca9dd-b0b6-425e-b4da-0c87c97046f9" + "68718339-5764-490b-923f-e1631f3665ae" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093340Z:42bca9dd-b0b6-425e-b4da-0c87c97046f9" + "CENTRALUSEUAP:20210418T124052Z:68718339-5764-490b-923f-e1631f3665ae" ], "Date": [ - "Thu, 16 Jan 2020 09:33:39 GMT" + "Sun, 18 Apr 2021 12:40:51 GMT" ], "Content-Length": [ - "674" + "704" ], "Content-Type": [ "application/json" @@ -4179,29 +4182,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"properties\": {\r\n \"friendlyName\": \"West Central US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westcentralus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDI/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c5703c38-e611-46af-9852-464ee9d4f02c-2020-01-16 09:33:40Z-Ps" + "dc4974f0-b567-4b9f-bbe9-c5560637b9c9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163620280)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768420280)\\/\",\"ClientRequestId\":\"c5703c38-e611-46af-9852-464ee9d4f02c-2020-01-16 09:33:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8Hff/1pmhypLMqKHgohMryelSbkV7wFEicbJz6/TAmg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746052412)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350852412)\\/\",\"ClientRequestId\":\"e012aa36-70d0-413d-bfd3-f06392612ebc-2021-04-18 12:40:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"khltCvFUMGFR8DemHQvXgUCR1/MVVUg8lEAO8da+Uac=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4218,41 +4221,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/operationresults/f9ba9e77-4661-4030-adab-146a6276f3c3?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/operationresults/9a4f30a3-933a-41cb-a289-b6257950ef80?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationOperationStatus/f9ba9e77-4661-4030-adab-146a6276f3c3?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationOperationStatus/9a4f30a3-933a-41cb-a289-b6257950ef80?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c5703c38-e611-46af-9852-464ee9d4f02c-2020-01-16 09:33:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "dc4974f0-b567-4b9f-bbe9-c5560637b9c9" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1175" ], "x-ms-correlation-request-id": [ - "e41e751b-b24c-47e8-9080-2d4c2c207982" + "37fff84f-4d74-40de-8c13-dad48256c23a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093340Z:e41e751b-b24c-47e8-9080-2d4c2c207982" + "CENTRALUSEUAP:20210418T124052Z:37fff84f-4d74-40de-8c13-dad48256c23a" ], "Date": [ - "Thu, 16 Jan 2020 09:33:40 GMT" + "Sun, 18 Apr 2021 12:40:51 GMT" ], "Expires": [ "-1" @@ -4265,25 +4265,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvZjliYTllNzctNDY2MS00MDMwLWFkYWItMTQ2YTYyNzZmM2MzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy85YTRmMzBhMy05MzNhLTQxY2ItYTI4OS1iNjI1Nzk1MGVmODA/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3e83668-276f-4d6d-8670-be796a3b3a0e-2020-01-16 09:33:41Z-Ps" + "dc4974f0-b567-4b9f-bbe9-c5560637b9c9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163621023)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768421023)\\/\",\"ClientRequestId\":\"c3e83668-276f-4d6d-8670-be796a3b3a0e-2020-01-16 09:33:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6y0Z9KkUIQZAGgo1uPbqojr9peICUOngrFEsug7Gtdc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746053021)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350853021)\\/\",\"ClientRequestId\":\"ab6180ba-9cbd-4d3a-a073-adb8aa7bbf61-2021-04-18 12:40:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DNGtW8kC2J/HdJhjZXfYLf+K5GqLlb4Ndm2k+y+mKZM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4294,38 +4294,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11911" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c3e83668-276f-4d6d-8670-be796a3b3a0e-2020-01-16 09:33:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "dc4974f0-b567-4b9f-bbe9-c5560637b9c9" ], "x-ms-correlation-request-id": [ - "d6dd3fbb-acc2-4572-a39d-c7768386c81e" + "28778997-bad7-4d10-b061-80aef2b07153" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093341Z:d6dd3fbb-acc2-4572-a39d-c7768386c81e" + "CENTRALUSEUAP:20210418T124053Z:28778997-bad7-4d10-b061-80aef2b07153" ], "Date": [ - "Thu, 16 Jan 2020 09:33:40 GMT" + "Sun, 18 Apr 2021 12:40:53 GMT" ], "Content-Length": [ - "1831" + "1810" ], "Content-Type": [ "application/json" @@ -4334,29 +4331,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c5703c38-e611-46af-9852-464ee9d4f02c-2020-01-16 09:33:40Z-Ps ActivityId: e41e751b-b24c-47e8-9080-2d4c2c207982\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-01-16T09:33:40.9201844Z\",\r\n \"endTime\": \"2020-01-16T09:33:40.9826997Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-01-16T09:33:40.9826997Z\",\r\n \"endTime\": \"2020-01-16T09:33:40.9826997Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"dc4974f0-b567-4b9f-bbe9-c5560637b9c9 ActivityId: 37fff84f-4d74-40de-8c13-dad48256c23a\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-18T12:40:53.0005295Z\",\r\n \"endTime\": \"2021-04-18T12:40:53.0855316Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-18T12:40:53.0855316Z\",\r\n \"endTime\": \"2021-04-18T12:40:53.0855316Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvZjliYTllNzctNDY2MS00MDMwLWFkYWItMTQ2YTYyNzZmM2MzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy85YTRmMzBhMy05MzNhLTQxY2ItYTI4OS1iNjI1Nzk1MGVmODA/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7103ae09-1f60-490b-8db5-1340f54bba1c-2020-01-16 09:33:41Z-Ps" + "7bf71a92-6b2f-4112-858c-fb2f89851672" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163621469)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768421469)\\/\",\"ClientRequestId\":\"7103ae09-1f60-490b-8db5-1340f54bba1c-2020-01-16 09:33:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KKgPMJMydBaoT1k7eGLdKfkeyfPUAePRAankUeyVilo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746053389)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350853389)\\/\",\"ClientRequestId\":\"d4520cd6-16a5-45ac-b46a-2a2e482357a1-2021-04-18 12:40:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YyeOP+v0HB7TD/lnrtI/N/f13X95dVk+mEA3bGUWR/I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4367,38 +4364,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11910" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7103ae09-1f60-490b-8db5-1340f54bba1c-2020-01-16 09:33:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7bf71a92-6b2f-4112-858c-fb2f89851672" ], "x-ms-correlation-request-id": [ - "63f56760-0093-4cf4-a268-4cba062746e5" + "c1373d6f-6204-44e4-a5cb-52730d5e709f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093341Z:63f56760-0093-4cf4-a268-4cba062746e5" + "CENTRALUSEUAP:20210418T124053Z:c1373d6f-6204-44e4-a5cb-52730d5e709f" ], "Date": [ - "Thu, 16 Jan 2020 09:33:40 GMT" + "Sun, 18 Apr 2021 12:40:53 GMT" ], "Content-Length": [ - "1831" + "1810" ], "Content-Type": [ "application/json" @@ -4407,29 +4401,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c5703c38-e611-46af-9852-464ee9d4f02c-2020-01-16 09:33:40Z-Ps ActivityId: e41e751b-b24c-47e8-9080-2d4c2c207982\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-01-16T09:33:40.9201844Z\",\r\n \"endTime\": \"2020-01-16T09:33:40.9826997Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-01-16T09:33:40.9826997Z\",\r\n \"endTime\": \"2020-01-16T09:33:40.9826997Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"dc4974f0-b567-4b9f-bbe9-c5560637b9c9 ActivityId: 37fff84f-4d74-40de-8c13-dad48256c23a\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-18T12:40:53.0005295Z\",\r\n \"endTime\": \"2021-04-18T12:40:53.0855316Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-18T12:40:53.0855316Z\",\r\n \"endTime\": \"2021-04-18T12:40:53.0855316Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDI/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e1be240-f7c3-45e0-9e6c-56dd747c1012-2020-01-16 09:33:41Z-Ps" + "1e2a9b3e-0406-42d9-8372-2277c5d7e05b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163621910)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768421910)\\/\",\"ClientRequestId\":\"0e1be240-f7c3-45e0-9e6c-56dd747c1012-2020-01-16 09:33:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bhrkq94lfPakDU6S9bS2zXWvviylX0QZgUiEC0c+jRQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746053766)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350853766)\\/\",\"ClientRequestId\":\"19918870-0bde-4777-a529-15a62d6b8125-2021-04-18 12:40:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9w8DjwcOeAFjfMkfy0E8xnhy/Xu6ZTSktGvMEoLdaLI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4440,38 +4434,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11909" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "0e1be240-f7c3-45e0-9e6c-56dd747c1012-2020-01-16 09:33:41Z-Ps 1/16/2020 9:33:42 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "1e2a9b3e-0406-42d9-8372-2277c5d7e05b 4/18/2021 12:40:53 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "0e1be240-f7c3-45e0-9e6c-56dd747c1012-2020-01-16 09:33:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1e2a9b3e-0406-42d9-8372-2277c5d7e05b" ], "x-ms-correlation-request-id": [ - "87ab8c9e-cda9-4142-91e4-7d78ac07ac40" + "974caac4-dae7-4ec2-b74d-7258f46b3c41" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093342Z:87ab8c9e-cda9-4142-91e4-7d78ac07ac40" + "CENTRALUSEUAP:20210418T124053Z:974caac4-dae7-4ec2-b74d-7258f46b3c41" ], "Date": [ - "Thu, 16 Jan 2020 09:33:41 GMT" + "Sun, 18 Apr 2021 12:40:53 GMT" ], "Content-Length": [ - "580" + "586" ], "Content-Type": [ "application/json" @@ -4480,29 +4471,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102\",\r\n \"name\": \"A2APrimaryContainer102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"West US\",\r\n \"friendlyName\": \"A2APrimaryContainer102\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022\",\r\n \"name\": \"A2APrimaryContainer1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"East US\",\r\n \"friendlyName\": \"A2APrimaryContainer1022\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectionContainerMappings?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectionContainerMappings?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06fb2c42-6870-42d9-b7ae-d2d47030cc5d-2020-01-16 09:33:42Z-Ps" + "1e2a9b3e-0406-42d9-8372-2277c5d7e05b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163622332)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768422332)\\/\",\"ClientRequestId\":\"06fb2c42-6870-42d9-b7ae-d2d47030cc5d-2020-01-16 09:33:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"U88rTaMLGTcW/dDxkef6s4/wL7sRXrd/ymvcAT6GSnc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746054145)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350854145)\\/\",\"ClientRequestId\":\"af552845-5d3e-4d60-8689-37699b8c693e-2021-04-18 12:40:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QYgwAK8oFsXNMM7p2JnHN4/K3cwINaBr+sMw4OU0oY0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4513,35 +4504,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11908" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "06fb2c42-6870-42d9-b7ae-d2d47030cc5d-2020-01-16 09:33:42Z-Ps 1/16/2020 9:33:42 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "1e2a9b3e-0406-42d9-8372-2277c5d7e05b 4/18/2021 12:40:54 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "06fb2c42-6870-42d9-b7ae-d2d47030cc5d-2020-01-16 09:33:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1e2a9b3e-0406-42d9-8372-2277c5d7e05b" ], "x-ms-correlation-request-id": [ - "4a1fda31-b0c0-4805-ac39-420ae32ac11a" + "3eb33a76-a597-48b8-92d5-1e27fe3ee264" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093342Z:4a1fda31-b0c0-4805-ac39-420ae32ac11a" + "CENTRALUSEUAP:20210418T124054Z:3eb33a76-a597-48b8-92d5-1e27fe3ee264" ], "Date": [ - "Thu, 16 Jan 2020 09:33:41 GMT" + "Sun, 18 Apr 2021 12:40:54 GMT" ], "Content-Length": [ "28" @@ -4557,25 +4545,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDIvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzEwMjIvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjEwMjI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "380e23ec-33d9-4d7f-8134-d47f1fa6b2ff-2020-01-16 09:33:42Z-Ps" + "674154c4-06ac-4dae-9236-d26aa9584a6e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163622821)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768422821)\\/\",\"ClientRequestId\":\"380e23ec-33d9-4d7f-8134-d47f1fa6b2ff-2020-01-16 09:33:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uZbCjpBNbgfCaNrKOA4MtP9V78GB20TqQMwyd0b5RJs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746054547)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350854547)\\/\",\"ClientRequestId\":\"7c45ed8e-7f61-4244-8638-a160f40591d7-2021-04-18 12:40:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YSP9txzUFQqDSWrU18xcptkqKfR3CIF3YACd3uHcSkk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4592,41 +4580,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102/operationresults/53fec5f2-fd4e-4c51-bd97-c608dce0429d?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022/operationresults/22f1242a-5772-4bf7-be95-5e25fec159db?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationOperationStatus/53fec5f2-fd4e-4c51-bd97-c608dce0429d?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationOperationStatus/22f1242a-5772-4bf7-be95-5e25fec159db?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "380e23ec-33d9-4d7f-8134-d47f1fa6b2ff-2020-01-16 09:33:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "674154c4-06ac-4dae-9236-d26aa9584a6e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1174" ], "x-ms-correlation-request-id": [ - "501dd3cf-eaca-410e-a655-82b9481e0717" + "016dffc1-9ab6-453f-9f96-8e735eeff0ba" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093343Z:501dd3cf-eaca-410e-a655-82b9481e0717" + "CENTRALUSEUAP:20210418T124054Z:016dffc1-9ab6-453f-9f96-8e735eeff0ba" ], "Date": [ - "Thu, 16 Jan 2020 09:33:42 GMT" + "Sun, 18 Apr 2021 12:40:54 GMT" ], "Expires": [ "-1" @@ -4639,25 +4624,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNTNmZWM1ZjItZmQ0ZS00YzUxLWJkOTctYzYwOGRjZTA0MjlkP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8yMmYxMjQyYS01NzcyLTRiZjctYmU5NS01ZTI1ZmVjMTU5ZGI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "818783fd-a6b4-4ed6-b541-e72cd67b9bae-2020-01-16 09:33:43Z-Ps" + "674154c4-06ac-4dae-9236-d26aa9584a6e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163623656)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768423656)\\/\",\"ClientRequestId\":\"818783fd-a6b4-4ed6-b541-e72cd67b9bae-2020-01-16 09:33:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xXmTc3X5W10PHYP+ocFL5+WVKNHRSJVUXo1yTA4uGzY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746055069)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350855069)\\/\",\"ClientRequestId\":\"3d100612-13d5-410e-82f6-f6aebcbd46b8-2021-04-18 12:40:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sB0bAs06mgR+E2fxEDTF0Uv1hW4d8tEC+PCH2zTylHE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4668,38 +4653,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11907" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "818783fd-a6b4-4ed6-b541-e72cd67b9bae-2020-01-16 09:33:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "674154c4-06ac-4dae-9236-d26aa9584a6e" ], "x-ms-correlation-request-id": [ - "65ddb538-70b1-4dfb-852f-3676acc8f2ce" + "f24bce88-85bc-491d-b6c5-d3f5261ae5bd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093344Z:65ddb538-70b1-4dfb-852f-3676acc8f2ce" + "CENTRALUSEUAP:20210418T124055Z:f24bce88-85bc-491d-b6c5-d3f5261ae5bd" ], "Date": [ - "Thu, 16 Jan 2020 09:33:43 GMT" + "Sun, 18 Apr 2021 12:40:54 GMT" ], "Content-Length": [ - "1829" + "1819" ], "Content-Type": [ "application/json" @@ -4708,29 +4690,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"380e23ec-33d9-4d7f-8134-d47f1fa6b2ff-2020-01-16 09:33:42Z-Ps ActivityId: 501dd3cf-eaca-410e-a655-82b9481e0717\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-01-16T09:33:43.4314388Z\",\r\n \"endTime\": \"2020-01-16T09:33:43.509551Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-01-16T09:33:43.509551Z\",\r\n \"endTime\": \"2020-01-16T09:33:43.509551Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"674154c4-06ac-4dae-9236-d26aa9584a6e ActivityId: 016dffc1-9ab6-453f-9f96-8e735eeff0ba\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-18T12:40:55.0305441Z\",\r\n \"endTime\": \"2021-04-18T12:40:55.1055463Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-18T12:40:55.1055463Z\",\r\n \"endTime\": \"2021-04-18T12:40:55.1055463Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNTNmZWM1ZjItZmQ0ZS00YzUxLWJkOTctYzYwOGRjZTA0MjlkP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8yMmYxMjQyYS01NzcyLTRiZjctYmU5NS01ZTI1ZmVjMTU5ZGI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fce83efb-b2eb-4a80-9fad-39f216c2258d-2020-01-16 09:33:44Z-Ps" + "41ad8bf7-1b84-4e7e-bc89-d1787b696b81" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163624133)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768424133)\\/\",\"ClientRequestId\":\"fce83efb-b2eb-4a80-9fad-39f216c2258d-2020-01-16 09:33:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3YsbegQWPrk4iK0/WxVj33ey+dkmnsGUD7qNXQ3mCX0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746055440)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350855440)\\/\",\"ClientRequestId\":\"90a77129-6553-4580-86a6-4ea68586459e-2021-04-18 12:40:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xQzaw+rqIXmQJt7IZBqE54s2IGfYuwIUNvBsQJuIyQE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4741,38 +4723,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11906" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "fce83efb-b2eb-4a80-9fad-39f216c2258d-2020-01-16 09:33:44Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "41ad8bf7-1b84-4e7e-bc89-d1787b696b81" ], "x-ms-correlation-request-id": [ - "ace639af-c7b4-43e0-9c31-ee90eda1c0e0" + "efdbc2f1-df3c-48dd-afb2-c53b085d0cd3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093344Z:ace639af-c7b4-43e0-9c31-ee90eda1c0e0" + "CENTRALUSEUAP:20210418T124055Z:efdbc2f1-df3c-48dd-afb2-c53b085d0cd3" ], "Date": [ - "Thu, 16 Jan 2020 09:33:43 GMT" + "Sun, 18 Apr 2021 12:40:55 GMT" ], "Content-Length": [ - "1829" + "1819" ], "Content-Type": [ "application/json" @@ -4781,29 +4760,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"380e23ec-33d9-4d7f-8134-d47f1fa6b2ff-2020-01-16 09:33:42Z-Ps ActivityId: 501dd3cf-eaca-410e-a655-82b9481e0717\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-01-16T09:33:43.4314388Z\",\r\n \"endTime\": \"2020-01-16T09:33:43.509551Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-01-16T09:33:43.509551Z\",\r\n \"endTime\": \"2020-01-16T09:33:43.509551Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"674154c4-06ac-4dae-9236-d26aa9584a6e ActivityId: 016dffc1-9ab6-453f-9f96-8e735eeff0ba\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-18T12:40:55.0305441Z\",\r\n \"endTime\": \"2021-04-18T12:40:55.1055463Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-18T12:40:55.1055463Z\",\r\n \"endTime\": \"2021-04-18T12:40:55.1055463Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDIvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzEwMjIvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjEwMjI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d49af72-3bb0-438b-b770-da679a7a5016-2020-01-16 09:33:44Z-Ps" + "aa2d126c-b70a-4ec1-9261-bb3b8e521800" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163624548)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768424548)\\/\",\"ClientRequestId\":\"2d49af72-3bb0-438b-b770-da679a7a5016-2020-01-16 09:33:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gPrfYzD4TXWM+4XMdElHplsXb06MbuhljT0kJgB7gZs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746055804)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350855804)\\/\",\"ClientRequestId\":\"185ca125-42b6-41ba-a4f5-faff73b1fcc9-2021-04-18 12:40:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lFAVhSfXythm3MPq41NgGg8wDkce1/Zs4SaZp1Lp0v0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4814,38 +4793,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "11905" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "2d49af72-3bb0-438b-b770-da679a7a5016-2020-01-16 09:33:44Z-Ps 1/16/2020 9:33:44 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "aa2d126c-b70a-4ec1-9261-bb3b8e521800 4/18/2021 12:40:55 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2d49af72-3bb0-438b-b770-da679a7a5016-2020-01-16 09:33:44Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "aa2d126c-b70a-4ec1-9261-bb3b8e521800" ], "x-ms-correlation-request-id": [ - "57f970db-7257-4bba-8546-4131d1d8e06a" + "5154e961-5093-4b05-a6a5-405fda26b650" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093344Z:57f970db-7257-4bba-8546-4131d1d8e06a" + "CENTRALUSEUAP:20210418T124056Z:5154e961-5093-4b05-a6a5-405fda26b650" ], "Date": [ - "Thu, 16 Jan 2020 09:33:44 GMT" + "Sun, 18 Apr 2021 12:40:55 GMT" ], "Content-Length": [ - "584" + "598" ], "Content-Type": [ "application/json" @@ -4854,29 +4830,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"name\": \"A2ARecoveryContainer102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"East US\",\r\n \"friendlyName\": \"A2ARecoveryContainer102\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"name\": \"A2ARecoveryContainer1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"West Central US\",\r\n \"friendlyName\": \"A2ARecoveryContainer1022\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102/replicationProtectionContainerMappings?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDIvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022/replicationProtectionContainerMappings?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzEwMjIvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjEwMjIvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18646a2b-f0ab-4cce-96dd-3f1b9321385c-2020-01-16 09:33:44Z-Ps" + "aa2d126c-b70a-4ec1-9261-bb3b8e521800" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163624929)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768424929)\\/\",\"ClientRequestId\":\"18646a2b-f0ab-4cce-96dd-3f1b9321385c-2020-01-16 09:33:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KIHi6CLWoy9F+B+iV8xSuDP62YAyL8VSeAKZrErIBdM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746056170)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350856170)\\/\",\"ClientRequestId\":\"697eaf66-e761-495b-ba80-d09e34a32434-2021-04-18 12:40:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"00D+PjRJJABQPVNOb28VXgX/TpsX7xa/tAfihvP3P7U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4887,35 +4863,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" + "11904" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "18646a2b-f0ab-4cce-96dd-3f1b9321385c-2020-01-16 09:33:44Z-Ps 1/16/2020 9:33:45 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "aa2d126c-b70a-4ec1-9261-bb3b8e521800 4/18/2021 12:40:56 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "18646a2b-f0ab-4cce-96dd-3f1b9321385c-2020-01-16 09:33:44Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "aa2d126c-b70a-4ec1-9261-bb3b8e521800" ], "x-ms-correlation-request-id": [ - "d244a4ad-c32c-49c3-bc69-68973f5bc270" + "38bd21e6-fe53-48ce-97bf-3c124e47dd38" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093345Z:d244a4ad-c32c-49c3-bc69-68973f5bc270" + "CENTRALUSEUAP:20210418T124056Z:38bd21e6-fe53-48ce-97bf-3c124e47dd38" ], "Date": [ - "Thu, 16 Jan 2020 09:33:44 GMT" + "Sun, 18 Apr 2021 12:40:55 GMT" ], "Content-Length": [ "28" @@ -4931,25 +4904,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxMTAyP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uUG9saWNpZXMvVGVzdEEyQVBvbGljeTExMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointHistory\": 720,\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enable\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "edbd2456-c720-4c54-9d4c-608a121983d7-2020-01-16 09:33:45Z-Ps" + "d4e8662d-9119-4ab0-9103-ab3c2b0d5c6d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163625383)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768425383)\\/\",\"ClientRequestId\":\"edbd2456-c720-4c54-9d4c-608a121983d7-2020-01-16 09:33:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dn+kxou+nW5mpNU/FXBbCN+geyc14iELtq9+njGxmeE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746056547)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350856547)\\/\",\"ClientRequestId\":\"705b507e-4806-47bf-ab23-581534532390-2021-04-18 12:40:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KYCJYkVCblgXt4PW+kShfD2ScOAbKLePqWj4+Fe3CuM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4966,40 +4939,37 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102/operationresults/942a488b-ae11-467e-b95b-eb00d4a687a5?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022/operationresults/0193acec-beb6-4d00-a099-e327fe539b5b?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "edbd2456-c720-4c54-9d4c-608a121983d7-2020-01-16 09:33:45Z-Ps 1/16/2020 9:33:45 AM" + "d4e8662d-9119-4ab0-9103-ab3c2b0d5c6d 4/18/2021 12:40:56 PM" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationOperationStatus/942a488b-ae11-467e-b95b-eb00d4a687a5?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationOperationStatus/0193acec-beb6-4d00-a099-e327fe539b5b?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "edbd2456-c720-4c54-9d4c-608a121983d7-2020-01-16 09:33:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "d4e8662d-9119-4ab0-9103-ab3c2b0d5c6d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1173" ], "x-ms-correlation-request-id": [ - "16085848-ba23-4f58-a666-5c3e652ae019" + "10fbf6a4-bd8c-4eb1-a4ec-0329068cb97f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093346Z:16085848-ba23-4f58-a666-5c3e652ae019" + "CENTRALUSEUAP:20210418T124056Z:10fbf6a4-bd8c-4eb1-a4ec-0329068cb97f" ], "Date": [ - "Thu, 16 Jan 2020 09:33:45 GMT" + "Sun, 18 Apr 2021 12:40:56 GMT" ], "Expires": [ "-1" @@ -5012,25 +4982,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvOTQyYTQ4OGItYWUxMS00NjdlLWI5NWItZWIwMGQ0YTY4N2E1P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8wMTkzYWNlYy1iZWI2LTRkMDAtYTA5OS1lMzI3ZmU1MzliNWI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6378545f-ab9f-45de-8e0e-1db783f7adfa-2020-01-16 09:33:46Z-Ps" + "d4e8662d-9119-4ab0-9103-ab3c2b0d5c6d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163626085)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768426085)\\/\",\"ClientRequestId\":\"6378545f-ab9f-45de-8e0e-1db783f7adfa-2020-01-16 09:33:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/qu9sBW5jP7I2V9VwLC5I91Y4IXr2Yw3szh0ILKezOM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746057080)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350857080)\\/\",\"ClientRequestId\":\"6c71ad16-6e8d-49e7-b32a-c28ca694fc4a-2021-04-18 12:40:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AAMMb+KYQWIjjsRFbXGKzBNPkf5ewt8qip3XrV2wZgw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5041,38 +5011,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" + "11903" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "6378545f-ab9f-45de-8e0e-1db783f7adfa-2020-01-16 09:33:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d4e8662d-9119-4ab0-9103-ab3c2b0d5c6d" ], "x-ms-correlation-request-id": [ - "f829f8d4-7f8a-4016-8e6e-0ec266873479" + "5ae8143d-adc6-4def-9aa2-59bbf3bb19da" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093346Z:f829f8d4-7f8a-4016-8e6e-0ec266873479" + "CENTRALUSEUAP:20210418T124057Z:5ae8143d-adc6-4def-9aa2-59bbf3bb19da" ], "Date": [ - "Thu, 16 Jan 2020 09:33:45 GMT" + "Sun, 18 Apr 2021 12:40:56 GMT" ], "Content-Length": [ - "1757" + "1729" ], "Content-Type": [ "application/json" @@ -5081,29 +5048,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"edbd2456-c720-4c54-9d4c-608a121983d7-2020-01-16 09:33:45Z-Ps ActivityId: 16085848-ba23-4f58-a666-5c3e652ae019\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2020-01-16T09:33:45.9532114Z\",\r\n \"endTime\": \"2020-01-16T09:33:46.0156983Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2020-01-16T09:33:46.0156983Z\",\r\n \"endTime\": \"2020-01-16T09:33:46.0156983Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d4e8662d-9119-4ab0-9103-ab3c2b0d5c6d ActivityId: 10fbf6a4-bd8c-4eb1-a4ec-0329068cb97f\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2021-04-18T12:40:57.1005598Z\",\r\n \"endTime\": \"2021-04-18T12:40:57.1355584Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2021-04-18T12:40:57.1355584Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvOTQyYTQ4OGItYWUxMS00NjdlLWI5NWItZWIwMGQ0YTY4N2E1P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8wMTkzYWNlYy1iZWI2LTRkMDAtYTA5OS1lMzI3ZmU1MzliNWI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fe9fb37-fb18-4861-8c97-6ce2ceb2157c-2020-01-16 09:33:46Z-Ps" + "b994e2af-54e8-4ae1-ac54-c640af60064e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163626511)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768426511)\\/\",\"ClientRequestId\":\"0fe9fb37-fb18-4861-8c97-6ce2ceb2157c-2020-01-16 09:33:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QXT6f3G+s0/AMGqjdLdzrMnulm/9sl7IIQ4/NGUtPLE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746057458)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350857458)\\/\",\"ClientRequestId\":\"3e690e6d-2560-49b8-93b3-36780679c9b0-2021-04-18 12:40:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vWQsteqOE/Eq2xj7tfUkH/RgxuUh+h1Ah9NY2g2Ue+I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5114,38 +5081,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" + "11902" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "0fe9fb37-fb18-4861-8c97-6ce2ceb2157c-2020-01-16 09:33:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b994e2af-54e8-4ae1-ac54-c640af60064e" ], "x-ms-correlation-request-id": [ - "ecbbf9df-5e0d-41af-b851-384082eff5c2" + "b052c1c9-4d2e-4167-ae45-8a910b5d880f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093346Z:ecbbf9df-5e0d-41af-b851-384082eff5c2" + "CENTRALUSEUAP:20210418T124057Z:b052c1c9-4d2e-4167-ae45-8a910b5d880f" ], "Date": [ - "Thu, 16 Jan 2020 09:33:46 GMT" + "Sun, 18 Apr 2021 12:40:56 GMT" ], "Content-Length": [ - "1757" + "1736" ], "Content-Type": [ "application/json" @@ -5154,29 +5118,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"edbd2456-c720-4c54-9d4c-608a121983d7-2020-01-16 09:33:45Z-Ps ActivityId: 16085848-ba23-4f58-a666-5c3e652ae019\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2020-01-16T09:33:45.9532114Z\",\r\n \"endTime\": \"2020-01-16T09:33:46.0156983Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2020-01-16T09:33:46.0156983Z\",\r\n \"endTime\": \"2020-01-16T09:33:46.0156983Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d4e8662d-9119-4ab0-9103-ab3c2b0d5c6d ActivityId: 10fbf6a4-bd8c-4eb1-a4ec-0329068cb97f\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2021-04-18T12:40:57.1005598Z\",\r\n \"endTime\": \"2021-04-18T12:40:57.1955636Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2021-04-18T12:40:57.1955636Z\",\r\n \"endTime\": \"2021-04-18T12:40:57.1955636Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxMTAyP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uUG9saWNpZXMvVGVzdEEyQVBvbGljeTExMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3dc2e38a-fc15-4a7d-be0c-7f5e7fe0fcc8-2020-01-16 09:33:46Z-Ps" + "881abb4e-9762-4851-8be8-79b71e37e635" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163626980)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768426980)\\/\",\"ClientRequestId\":\"3dc2e38a-fc15-4a7d-be0c-7f5e7fe0fcc8-2020-01-16 09:33:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qgM/qJAMs/o+tPqPa77mEpGs5UV2UiNhyihBYvFFI/8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746057823)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350857823)\\/\",\"ClientRequestId\":\"d24e330d-7e07-4d1c-8f3f-52c1fadf5749-2021-04-18 12:40:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Yzm0m9juWN6uyo63M1flGuYQ3F7yhfC1Hk3uC4n/Ej8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5187,38 +5151,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" + "11901" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "3dc2e38a-fc15-4a7d-be0c-7f5e7fe0fcc8-2020-01-16 09:33:46Z-Ps 1/16/2020 9:33:47 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "881abb4e-9762-4851-8be8-79b71e37e635 4/18/2021 12:40:57 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3dc2e38a-fc15-4a7d-be0c-7f5e7fe0fcc8-2020-01-16 09:33:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "881abb4e-9762-4851-8be8-79b71e37e635" ], "x-ms-correlation-request-id": [ - "570fe434-9d32-4b2c-ac5d-be9ef6d91b6f" + "03dadccd-b077-421d-8dd8-ab32fc57ec6c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093347Z:570fe434-9d32-4b2c-ac5d-be9ef6d91b6f" + "CENTRALUSEUAP:20210418T124058Z:03dadccd-b077-421d-8dd8-ab32fc57ec6c" ], "Date": [ - "Thu, 16 Jan 2020 09:33:46 GMT" + "Sun, 18 Apr 2021 12:40:57 GMT" ], "Content-Length": [ - "557" + "562" ], "Content-Type": [ "application/json" @@ -5227,29 +5188,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"name\": \"TestA2APolicy1102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestA2APolicy1102\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"name\": \"TestA2APolicy11022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestA2APolicy11022\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxMTAyP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uUG9saWNpZXMvVGVzdEEyQVBvbGljeTExMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ef468d4-1b9b-4684-891e-6fdbf625dfb1-2020-01-16 09:35:34Z-Ps" + "1d29d061-1c13-431a-994f-cf4767f3545a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163734429)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768534429)\\/\",\"ClientRequestId\":\"2ef468d4-1b9b-4684-891e-6fdbf625dfb1-2020-01-16 09:35:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"G56fLmx2qeWYqreLqYwfNA9RY9Uf/Qaln+9GPSUg5dY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746163711)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350963711)\\/\",\"ClientRequestId\":\"15ea488a-78d7-4800-b7b7-d7540a052fc1-2021-04-18 12:42:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IsfsuhcTUt2wvED/87c3rGRU8Cwd1qSsxPSzgtbGTzM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5260,38 +5221,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" + "11879" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "2ef468d4-1b9b-4684-891e-6fdbf625dfb1-2020-01-16 09:35:34Z-Ps 1/16/2020 9:35:34 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "1d29d061-1c13-431a-994f-cf4767f3545a 4/18/2021 12:42:43 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2ef468d4-1b9b-4684-891e-6fdbf625dfb1-2020-01-16 09:35:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1d29d061-1c13-431a-994f-cf4767f3545a" ], "x-ms-correlation-request-id": [ - "93c5fb73-5bed-498d-81ee-c662e43fb1de" + "84d2955b-204b-40e9-a7c8-5387c4a66378" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093534Z:93c5fb73-5bed-498d-81ee-c662e43fb1de" + "CENTRALUSEUAP:20210418T124243Z:84d2955b-204b-40e9-a7c8-5387c4a66378" ], "Date": [ - "Thu, 16 Jan 2020 09:35:34 GMT" + "Sun, 18 Apr 2021 12:42:43 GMT" ], "Content-Length": [ - "557" + "562" ], "Content-Type": [ "application/json" @@ -5300,35 +5258,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"name\": \"TestA2APolicy1102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestA2APolicy1102\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"name\": \"TestA2APolicy11022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestA2APolicy11022\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectionContainerMappings/A2APCM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUENNMTAyP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectionContainerMappings/A2APCM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzL0EyQVBDTTEwMjI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"ReplicationProviderSpecificContainerMappingInput\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"ReplicationProviderSpecificContainerMappingInput\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cc84c5dc-ec14-4954-acba-cb1511a82851-2020-01-16 09:33:47Z-Ps" + "faeefa3e-76fd-4fe1-ab30-e8f94a39ac23" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163627368)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768427368)\\/\",\"ClientRequestId\":\"cc84c5dc-ec14-4954-acba-cb1511a82851-2020-01-16 09:33:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qU4tQIbrvvshbearlgsFsMewXayYO4s5mZ1Im70HAUA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746058184)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350858184)\\/\",\"ClientRequestId\":\"a48b637d-4daf-4586-933c-eaceedc6ce90-2021-04-18 12:40:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JHclA0PWv57D6ndn+t4AVxijp6HazlWt62+5qzuOdhY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "644" + "651" ] }, "ResponseHeaders": { @@ -5339,41 +5297,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectionContainerMappings/A2APCM102/operationresults/9fa0caba-c642-49bd-8811-11f712c73c46?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectionContainerMappings/A2APCM1022/operationresults/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationOperationStatus/9fa0caba-c642-49bd-8811-11f712c73c46?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationOperationStatus/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "cc84c5dc-ec14-4954-acba-cb1511a82851-2020-01-16 09:33:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "faeefa3e-76fd-4fe1-ab30-e8f94a39ac23" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1172" ], "x-ms-correlation-request-id": [ - "917cbbf7-ec88-440f-8329-774c78a3ebb6" + "8c29fd39-dcc9-40a1-bc9d-efccb943876e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093348Z:917cbbf7-ec88-440f-8329-774c78a3ebb6" + "CENTRALUSEUAP:20210418T124058Z:8c29fd39-dcc9-40a1-bc9d-efccb943876e" ], "Date": [ - "Thu, 16 Jan 2020 09:33:47 GMT" + "Sun, 18 Apr 2021 12:40:57 GMT" ], "Expires": [ "-1" @@ -5386,25 +5341,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvOWZhMGNhYmEtYzY0Mi00OWJkLTg4MTEtMTFmNzEyYzczYzQ2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9mNWJkN2NiMC03Y2RhLTQzYjktODhhYi1lNzdmY2Y0MTFiMzY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adbadc25-4b2c-4dec-8e17-93ab11ffbdfa-2020-01-16 09:33:48Z-Ps" + "faeefa3e-76fd-4fe1-ab30-e8f94a39ac23" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163628133)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768428133)\\/\",\"ClientRequestId\":\"adbadc25-4b2c-4dec-8e17-93ab11ffbdfa-2020-01-16 09:33:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SxNv2HRbq5yJF9W1jirZZV1XJhCAhRzEZ9LmZL6m9jo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746058785)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350858785)\\/\",\"ClientRequestId\":\"2b7dd697-0e17-4a74-96e1-b93f566ea3b7-2021-04-18 12:40:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wHMGJ+PhhMOETCG9a+d2kwy7oBjhdOl+IWA0qnHvou4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5415,38 +5370,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" + "11900" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "adbadc25-4b2c-4dec-8e17-93ab11ffbdfa-2020-01-16 09:33:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "faeefa3e-76fd-4fe1-ab30-e8f94a39ac23" ], "x-ms-correlation-request-id": [ - "9f723626-6068-4860-87f9-6b5a61a713fb" + "0afc5e23-ce59-4791-b16a-af37c6ca0258" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093348Z:9f723626-6068-4860-87f9-6b5a61a713fb" + "CENTRALUSEUAP:20210418T124058Z:0afc5e23-ce59-4791-b16a-af37c6ca0258" ], "Date": [ - "Thu, 16 Jan 2020 09:33:47 GMT" + "Sun, 18 Apr 2021 12:40:58 GMT" ], "Content-Length": [ - "2893" + "737" ], "Content-Type": [ "application/json" @@ -5455,29 +5407,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"cc84c5dc-ec14-4954-acba-cb1511a82851-2020-01-16 09:33:47Z-Ps ActivityId: 917cbbf7-ec88-440f-8329-774c78a3ebb6\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:33:48.1851939Z\",\r\n \"endTime\": \"2020-01-16T09:33:48.2945658Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-01-16T09:33:48.2945658Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"faeefa3e-76fd-4fe1-ab30-e8f94a39ac23 ActivityId: 8c29fd39-dcc9-40a1-bc9d-efccb943876e\",\r\n \"scenarioName\": null,\r\n \"friendlyName\": null,\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"allowedActions\": [],\r\n \"targetObjectId\": null,\r\n \"targetObjectName\": null,\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvOWZhMGNhYmEtYzY0Mi00OWJkLTg4MTEtMTFmNzEyYzczYzQ2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9mNWJkN2NiMC03Y2RhLTQzYjktODhhYi1lNzdmY2Y0MTFiMzY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e3efb4b-ef84-4b58-922d-7570577d2ee9-2020-01-16 09:33:48Z-Ps" + "11a90f75-a668-4c56-aa5c-b033ac992f13" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163628602)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768428602)\\/\",\"ClientRequestId\":\"6e3efb4b-ef84-4b58-922d-7570577d2ee9-2020-01-16 09:33:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8RXuyAA5YV1RbjcVrPR1F2ijHMYSw6bJG/Cu+hulfp8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746059148)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350859148)\\/\",\"ClientRequestId\":\"711408fb-c17b-4f1f-a41a-ea4150dc8dad-2021-04-18 12:40:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fljjjiPOmV+kfk2oh1+f8gjvCCudMlYoKtBM1kWG3LE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5488,38 +5440,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" + "11898" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "6e3efb4b-ef84-4b58-922d-7570577d2ee9-2020-01-16 09:33:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "11a90f75-a668-4c56-aa5c-b033ac992f13" ], "x-ms-correlation-request-id": [ - "c9626b11-6e4f-4c76-b772-04b5edc10842" + "1b8d5691-dec2-4cc6-8334-adf488eefad2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093349Z:c9626b11-6e4f-4c76-b772-04b5edc10842" + "CENTRALUSEUAP:20210418T124059Z:1b8d5691-dec2-4cc6-8334-adf488eefad2" ], "Date": [ - "Thu, 16 Jan 2020 09:33:48 GMT" + "Sun, 18 Apr 2021 12:40:58 GMT" ], "Content-Length": [ - "2909" + "2896" ], "Content-Type": [ "application/json" @@ -5528,29 +5477,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"cc84c5dc-ec14-4954-acba-cb1511a82851-2020-01-16 09:33:47Z-Ps ActivityId: 917cbbf7-ec88-440f-8329-774c78a3ebb6\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:33:48.1851939Z\",\r\n \"endTime\": \"2020-01-16T09:33:48.3570877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-01-16T09:33:48.3570877Z\",\r\n \"endTime\": \"2020-01-16T09:33:48.3882857Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-01-16T09:33:48.3882857Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"faeefa3e-76fd-4fe1-ab30-e8f94a39ac23 ActivityId: 8c29fd39-dcc9-40a1-bc9d-efccb943876e\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:40:59.2390221Z\",\r\n \"endTime\": \"2021-04-18T12:40:59.3590211Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T12:40:59.3590211Z\",\r\n \"endTime\": \"2021-04-18T12:40:59.409021Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T12:40:59.409021Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvOWZhMGNhYmEtYzY0Mi00OWJkLTg4MTEtMTFmNzEyYzczYzQ2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9mNWJkN2NiMC03Y2RhLTQzYjktODhhYi1lNzdmY2Y0MTFiMzY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55658878-bbf3-45be-a250-257835369c82-2020-01-16 09:34:09Z-Ps" + "c2eeab06-4074-4426-8e81-265b5b9267b7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163649167)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768449167)\\/\",\"ClientRequestId\":\"55658878-bbf3-45be-a250-257835369c82-2020-01-16 09:34:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"aVE5BZie/Bbj59/HqNi0+fRJpBBm7+vlR+6AmqDo4V8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746079679)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350879679)\\/\",\"ClientRequestId\":\"bbdbd97f-44fd-4aeb-bc07-a0e42af09661-2021-04-18 12:41:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BhMGZrcShpy+SZnvm93WVHEZjVU2Tzy6jpTpN2eUotY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5561,38 +5510,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" + "11896" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "55658878-bbf3-45be-a250-257835369c82-2020-01-16 09:34:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c2eeab06-4074-4426-8e81-265b5b9267b7" ], "x-ms-correlation-request-id": [ - "c5c88f76-58ad-4d62-830a-a990598a3392" + "3259d095-284d-429a-97dc-8ce152bc302c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093409Z:c5c88f76-58ad-4d62-830a-a990598a3392" + "CENTRALUSEUAP:20210418T124119Z:3259d095-284d-429a-97dc-8ce152bc302c" ], "Date": [ - "Thu, 16 Jan 2020 09:34:09 GMT" + "Sun, 18 Apr 2021 12:41:19 GMT" ], "Content-Length": [ - "2909" + "2896" ], "Content-Type": [ "application/json" @@ -5601,29 +5547,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"cc84c5dc-ec14-4954-acba-cb1511a82851-2020-01-16 09:33:47Z-Ps ActivityId: 917cbbf7-ec88-440f-8329-774c78a3ebb6\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:33:48.1851939Z\",\r\n \"endTime\": \"2020-01-16T09:33:48.3570877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-01-16T09:33:48.3570877Z\",\r\n \"endTime\": \"2020-01-16T09:33:48.3882857Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-01-16T09:33:48.3882857Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"faeefa3e-76fd-4fe1-ab30-e8f94a39ac23 ActivityId: 8c29fd39-dcc9-40a1-bc9d-efccb943876e\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:40:59.2390221Z\",\r\n \"endTime\": \"2021-04-18T12:40:59.3590211Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T12:40:59.3590211Z\",\r\n \"endTime\": \"2021-04-18T12:40:59.409021Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T12:40:59.409021Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvOWZhMGNhYmEtYzY0Mi00OWJkLTg4MTEtMTFmNzEyYzczYzQ2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9mNWJkN2NiMC03Y2RhLTQzYjktODhhYi1lNzdmY2Y0MTFiMzY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a807da1-4b9a-4de5-be94-539eb3de49b0-2020-01-16 09:34:29Z-Ps" + "64f7481b-f8e4-450f-8e53-58313216bb3a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163669766)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768469766)\\/\",\"ClientRequestId\":\"0a807da1-4b9a-4de5-be94-539eb3de49b0-2020-01-16 09:34:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9ZMBZoC6fCcFNECx0wYaa99IWPz13F7d0Cc6o0gV3tA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746100065)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350900065)\\/\",\"ClientRequestId\":\"52c4591f-a4bd-4a69-baae-35830d04239c-2021-04-18 12:41:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cJMeFhwn6lHvfZGuT1eJ0rqwOeDIWNI2DivVN1cCPKY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5634,38 +5580,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" + "11894" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "0a807da1-4b9a-4de5-be94-539eb3de49b0-2020-01-16 09:34:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "64f7481b-f8e4-450f-8e53-58313216bb3a" ], "x-ms-correlation-request-id": [ - "5ace47bf-0db2-4dd2-81e7-062f423b414c" + "dd6ae213-6487-4f28-9ffd-00a1629779cf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093430Z:5ace47bf-0db2-4dd2-81e7-062f423b414c" + "CENTRALUSEUAP:20210418T124140Z:dd6ae213-6487-4f28-9ffd-00a1629779cf" ], "Date": [ - "Thu, 16 Jan 2020 09:34:29 GMT" + "Sun, 18 Apr 2021 12:41:40 GMT" ], "Content-Length": [ - "2909" + "2896" ], "Content-Type": [ "application/json" @@ -5674,29 +5617,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"cc84c5dc-ec14-4954-acba-cb1511a82851-2020-01-16 09:33:47Z-Ps ActivityId: 917cbbf7-ec88-440f-8329-774c78a3ebb6\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:33:48.1851939Z\",\r\n \"endTime\": \"2020-01-16T09:33:48.3570877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-01-16T09:33:48.3570877Z\",\r\n \"endTime\": \"2020-01-16T09:33:48.3882857Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-01-16T09:33:48.3882857Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"faeefa3e-76fd-4fe1-ab30-e8f94a39ac23 ActivityId: 8c29fd39-dcc9-40a1-bc9d-efccb943876e\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:40:59.2390221Z\",\r\n \"endTime\": \"2021-04-18T12:40:59.3590211Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T12:40:59.3590211Z\",\r\n \"endTime\": \"2021-04-18T12:40:59.409021Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T12:40:59.409021Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvOWZhMGNhYmEtYzY0Mi00OWJkLTg4MTEtMTFmNzEyYzczYzQ2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9mNWJkN2NiMC03Y2RhLTQzYjktODhhYi1lNzdmY2Y0MTFiMzY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a597d0aa-e070-4dfb-9769-a9ef3ad9d09e-2020-01-16 09:34:50Z-Ps" + "fd1272d0-e49b-4ea5-bbf3-2f115e16915b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163690330)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768490330)\\/\",\"ClientRequestId\":\"a597d0aa-e070-4dfb-9769-a9ef3ad9d09e-2020-01-16 09:34:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5JaM+CytCkDKy+q/M7vlJJ2qvfWq3OhGokxNe6+pn0Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746120442)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350920442)\\/\",\"ClientRequestId\":\"c5708518-362f-482a-8732-dd8cc61ef92f-2021-04-18 12:42:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"00EIkG52WRXQsoitTeRwUUUl8vzbUMjP4bCOA5yowkQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5707,38 +5650,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" + "11891" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a597d0aa-e070-4dfb-9769-a9ef3ad9d09e-2020-01-16 09:34:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "fd1272d0-e49b-4ea5-bbf3-2f115e16915b" ], "x-ms-correlation-request-id": [ - "6e0cb7eb-e4d6-406d-9721-728f7aa5fdd1" + "02a7c04d-8e8b-453e-b8e9-2f2126f1c054" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093450Z:6e0cb7eb-e4d6-406d-9721-728f7aa5fdd1" + "CENTRALUSEUAP:20210418T124200Z:02a7c04d-8e8b-453e-b8e9-2f2126f1c054" ], "Date": [ - "Thu, 16 Jan 2020 09:34:49 GMT" + "Sun, 18 Apr 2021 12:42:00 GMT" ], "Content-Length": [ - "2909" + "2896" ], "Content-Type": [ "application/json" @@ -5747,29 +5687,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"cc84c5dc-ec14-4954-acba-cb1511a82851-2020-01-16 09:33:47Z-Ps ActivityId: 917cbbf7-ec88-440f-8329-774c78a3ebb6\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:33:48.1851939Z\",\r\n \"endTime\": \"2020-01-16T09:33:48.3570877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-01-16T09:33:48.3570877Z\",\r\n \"endTime\": \"2020-01-16T09:33:48.3882857Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-01-16T09:33:48.3882857Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"faeefa3e-76fd-4fe1-ab30-e8f94a39ac23 ActivityId: 8c29fd39-dcc9-40a1-bc9d-efccb943876e\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:40:59.2390221Z\",\r\n \"endTime\": \"2021-04-18T12:40:59.3590211Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T12:40:59.3590211Z\",\r\n \"endTime\": \"2021-04-18T12:40:59.409021Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T12:40:59.409021Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvOWZhMGNhYmEtYzY0Mi00OWJkLTg4MTEtMTFmNzEyYzczYzQ2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9mNWJkN2NiMC03Y2RhLTQzYjktODhhYi1lNzdmY2Y0MTFiMzY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "efc18aaf-bf29-4e87-a9bc-0be064600b0e-2020-01-16 09:35:10Z-Ps" + "4dc56656-35b2-4505-acc8-95d904a41f7d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163710957)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768510957)\\/\",\"ClientRequestId\":\"efc18aaf-bf29-4e87-a9bc-0be064600b0e-2020-01-16 09:35:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zDFvcSnBxMBPbiFoxZMOMV6Y2AF1noeWfCwEDdjOL5Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746141116)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350941116)\\/\",\"ClientRequestId\":\"aa0c26c6-c38c-4fbb-bcf5-d52a7839120e-2021-04-18 12:42:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"c/6nKtwRWNpE4FtUO69Dsop4RHF+KXEJfiXQdW1d+pk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5780,38 +5720,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" + "11888" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "efc18aaf-bf29-4e87-a9bc-0be064600b0e-2020-01-16 09:35:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4dc56656-35b2-4505-acc8-95d904a41f7d" ], "x-ms-correlation-request-id": [ - "e8ed04ee-cda8-4542-b59d-bb98b43845dc" + "c4d6c00d-d5da-4a42-8a6e-f88b69155cc2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093511Z:e8ed04ee-cda8-4542-b59d-bb98b43845dc" + "CENTRALUSEUAP:20210418T124221Z:c4d6c00d-d5da-4a42-8a6e-f88b69155cc2" ], "Date": [ - "Thu, 16 Jan 2020 09:35:11 GMT" + "Sun, 18 Apr 2021 12:42:21 GMT" ], "Content-Length": [ - "2951" + "2944" ], "Content-Type": [ "application/json" @@ -5820,29 +5757,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"cc84c5dc-ec14-4954-acba-cb1511a82851-2020-01-16 09:33:47Z-Ps ActivityId: 917cbbf7-ec88-440f-8329-774c78a3ebb6\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:33:48.1851939Z\",\r\n \"endTime\": \"2020-01-16T09:33:48.3570877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-01-16T09:33:48.3570877Z\",\r\n \"endTime\": \"2020-01-16T09:34:54.58242Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-01-16T09:34:54.58242Z\",\r\n \"endTime\": \"2020-01-16T09:34:54.6762124Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"2020-01-16T09:34:54.6762124Z\",\r\n \"endTime\": \"2020-01-16T09:34:54.6762124Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"faeefa3e-76fd-4fe1-ab30-e8f94a39ac23 ActivityId: 8c29fd39-dcc9-40a1-bc9d-efccb943876e\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:40:59.2390221Z\",\r\n \"endTime\": \"2021-04-18T12:40:59.3590211Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T12:40:59.3590211Z\",\r\n \"endTime\": \"2021-04-18T12:42:04.1944457Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T12:42:04.1944457Z\",\r\n \"endTime\": \"2021-04-18T12:42:04.2844515Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"2021-04-18T12:42:04.2844515Z\",\r\n \"endTime\": \"2021-04-18T12:42:04.2844515Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectionContainerMappings/A2APCM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUENNMTAyP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectionContainerMappings/A2APCM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzL0EyQVBDTTEwMjI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5236819-89a4-4a61-a4ff-54e8959a85a0-2020-01-16 09:35:11Z-Ps" + "f55ccca8-75c1-45bb-83c7-a8f537e59dea" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163711405)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768511405)\\/\",\"ClientRequestId\":\"c5236819-89a4-4a61-a4ff-54e8959a85a0-2020-01-16 09:35:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"w1c6/J+lQDbqSswAUuX/54t0uAj7Od8IYYKaQ6YiWTI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746141533)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350941533)\\/\",\"ClientRequestId\":\"18ec5d5c-3060-44b5-862e-8192cdb9b085-2021-04-18 12:42:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nF9sBSGjVwYKxDyoiABF9e7Xn4S0ukQjg8XmAglhyDw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5853,38 +5790,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" + "11887" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "c5236819-89a4-4a61-a4ff-54e8959a85a0-2020-01-16 09:35:11Z-Ps 1/16/2020 9:35:11 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "f55ccca8-75c1-45bb-83c7-a8f537e59dea 4/18/2021 12:42:21 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c5236819-89a4-4a61-a4ff-54e8959a85a0-2020-01-16 09:35:11Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f55ccca8-75c1-45bb-83c7-a8f537e59dea" ], "x-ms-correlation-request-id": [ - "116175bc-9966-4179-8716-0e658b4211c8" + "5133baed-c0fa-47c3-8510-066c05a87c03" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093511Z:116175bc-9966-4179-8716-0e658b4211c8" + "CENTRALUSEUAP:20210418T124221Z:5133baed-c0fa-47c3-8510-066c05a87c03" ], "Date": [ - "Thu, 16 Jan 2020 09:35:11 GMT" + "Sun, 18 Apr 2021 12:42:21 GMT" ], "Content-Length": [ - "1424" + "1448" ], "Content-Type": [ "application/json" @@ -5893,35 +5827,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectionContainerMappings/A2APCM102\",\r\n \"name\": \"A2APCM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"targetProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"agentAutoUpdateStatus\": \"Disabled\",\r\n \"automationAccountArmId\": null,\r\n \"scheduleName\": null,\r\n \"jobScheduleName\": null\r\n },\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"sourceFabricFriendlyName\": \"West US\",\r\n \"targetFabricFriendlyName\": \"East US\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectionContainerMappings/A2APCM1022\",\r\n \"name\": \"A2APCM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"targetProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"agentAutoUpdateStatus\": \"Disabled\",\r\n \"automationAccountArmId\": null,\r\n \"scheduleName\": null,\r\n \"jobScheduleName\": null\r\n },\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"sourceFabricFriendlyName\": \"East US\",\r\n \"targetFabricFriendlyName\": \"West Central US\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ANetworkMapping102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvbk5ldHdvcmtzL2F6dXJlTmV0d29yay9yZXBsaWNhdGlvbk5ldHdvcmtNYXBwaW5ncy9BMkFOZXR3b3JrTWFwcGluZzEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ANetworkMapping1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvbk5ldHdvcmtzL2F6dXJlTmV0d29yay9yZXBsaWNhdGlvbk5ldHdvcmtNYXBwaW5ncy9BMkFOZXR3b3JrTWFwcGluZzEwMjI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"recoveryFabricName\": \"a2aRecoveryFabric102\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork102\",\r\n \"fabricSpecificDetails\": {\r\n \"instanceType\": \"AzureToAzure\",\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/virtualNetworks/a2aVM102\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"recoveryFabricName\": \"a2aRecoveryFabric1022\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1022\",\r\n \"fabricSpecificDetails\": {\r\n \"instanceType\": \"AzureToAzure\",\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b8b171e0-157b-42fb-b0bc-43488d65e14d-2020-01-16 09:35:11Z-Ps" + "9a03c923-57f0-4777-a927-06cee69b742d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163711939)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768511939)\\/\",\"ClientRequestId\":\"b8b171e0-157b-42fb-b0bc-43488d65e14d-2020-01-16 09:35:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0+OHN+Fa+b9p9GbovH+NmPpp0YLvGTURfVpYs3gjoFg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746141991)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350941991)\\/\",\"ClientRequestId\":\"cdb8a288-c3fb-463e-9c90-f36610eb202e-2021-04-18 12:42:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7xLzDZKLR2/GcKOVv9FfiDsqY/XowMPsY7DMuYLpauY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "486" + "491" ] }, "ResponseHeaders": { @@ -5932,40 +5866,37 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ANetworkMapping102/operationresults/86220ffe-c72f-4a7d-9636-4c9860255c8d?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ANetworkMapping1022/operationresults/27d39e16-9448-4d83-b09f-45d2ad3267b0?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "b8b171e0-157b-42fb-b0bc-43488d65e14d-2020-01-16 09:35:11Z-Ps 1/16/2020 9:35:12 AM" + "9a03c923-57f0-4777-a927-06cee69b742d 4/18/2021 12:42:22 PM" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationOperationStatus/86220ffe-c72f-4a7d-9636-4c9860255c8d?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationOperationStatus/27d39e16-9448-4d83-b09f-45d2ad3267b0?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b8b171e0-157b-42fb-b0bc-43488d65e14d-2020-01-16 09:35:11Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "9a03c923-57f0-4777-a927-06cee69b742d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1170" ], "x-ms-correlation-request-id": [ - "8717cdc6-3d9e-4b1c-b38f-d692580ee4c6" + "4f6a1fc7-5164-4ae8-b1d5-7f4585eb7a6d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093512Z:8717cdc6-3d9e-4b1c-b38f-d692580ee4c6" + "CENTRALUSEUAP:20210418T124222Z:4f6a1fc7-5164-4ae8-b1d5-7f4585eb7a6d" ], "Date": [ - "Thu, 16 Jan 2020 09:35:12 GMT" + "Sun, 18 Apr 2021 12:42:22 GMT" ], "Expires": [ "-1" @@ -5978,25 +5909,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODYyMjBmZmUtYzcyZi00YTdkLTk2MzYtNGM5ODYwMjU1YzhkP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8yN2QzOWUxNi05NDQ4LTRkODMtYjA5Zi00NWQyYWQzMjY3YjA/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c3458e7-6d95-4e37-a092-51a610fb4f9a-2020-01-16 09:35:12Z-Ps" + "9a03c923-57f0-4777-a927-06cee69b742d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163712918)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768512918)\\/\",\"ClientRequestId\":\"5c3458e7-6d95-4e37-a092-51a610fb4f9a-2020-01-16 09:35:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cz7wfwOTasYsbkN0R8xpk2ayf8UKtUQJeVox6YCw4V0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746142546)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350942546)\\/\",\"ClientRequestId\":\"8ed9114c-764e-4b4f-9bf7-ff1bd96715d9-2021-04-18 12:42:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pT+8N/m5K9W9pZ2KwFQogqFYkwO+afOn1wSrLb/Vztg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6007,38 +5938,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" + "11884" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "5c3458e7-6d95-4e37-a092-51a610fb4f9a-2020-01-16 09:35:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9a03c923-57f0-4777-a927-06cee69b742d" ], "x-ms-correlation-request-id": [ - "8e727d14-9a53-4d9b-9e68-6b93df951bef" + "8ad2b5a1-4f71-4fd9-b06c-b9d3b09e629e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093513Z:8e727d14-9a53-4d9b-9e68-6b93df951bef" + "CENTRALUSEUAP:20210418T124222Z:8ad2b5a1-4f71-4fd9-b06c-b9d3b09e629e" ], "Date": [ - "Thu, 16 Jan 2020 09:35:13 GMT" + "Sun, 18 Apr 2021 12:42:22 GMT" ], "Content-Length": [ - "2197" + "2190" ], "Content-Type": [ "application/json" @@ -6047,29 +5975,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b8b171e0-157b-42fb-b0bc-43488d65e14d-2020-01-16 09:35:11Z-Ps ActivityId: 8717cdc6-3d9e-4b1c-b38f-d692580ee4c6\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"e0a1d1b3-5703-4c9a-a3e8-4d4693b9a9dd\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2020-01-16T09:35:12.8397575Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"9a704a47-5edd-4002-8a47-c42645d71746\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.network/virtualnetworks/a2avm102\",\r\n \"primaryNetworkName\": \"a2avm102\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"9a03c923-57f0-4777-a927-06cee69b742d ActivityId: 4f6a1fc7-5164-4ae8-b1d5-7f4585eb7a6d\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"7fa2be75-1516-48ce-b4fb-f3371477a39d\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-18T12:42:22.5947722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"c27a7bd3-28b3-4aaf-bd72-4cc9851c22b4\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.network/virtualnetworks/a2avm1022\",\r\n \"primaryNetworkName\": \"a2avm1022\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODYyMjBmZmUtYzcyZi00YTdkLTk2MzYtNGM5ODYwMjU1YzhkP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8yN2QzOWUxNi05NDQ4LTRkODMtYjA5Zi00NWQyYWQzMjY3YjA/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d96668f3-956d-45ef-a2f6-e870bc05e08f-2020-01-16 09:35:13Z-Ps" + "acc9f091-6e79-4e19-b4c3-ec50845b8361" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163713415)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768513415)\\/\",\"ClientRequestId\":\"d96668f3-956d-45ef-a2f6-e870bc05e08f-2020-01-16 09:35:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WG7bWlgq8jJzvDqsGEr2/GEPdlYAkR0Khd1eWhUbN8g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746142912)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350942912)\\/\",\"ClientRequestId\":\"4f9284f0-f66d-4cf2-a06c-71e0da119428-2021-04-18 12:42:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1mry05KYTPIcZnE3Y/lbYK1hAWg4z9TsV2BXI/ZHdv0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6080,38 +6008,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" + "11883" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d96668f3-956d-45ef-a2f6-e870bc05e08f-2020-01-16 09:35:13Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "acc9f091-6e79-4e19-b4c3-ec50845b8361" ], "x-ms-correlation-request-id": [ - "3838eea3-3d11-462f-a04e-56fc61fd726a" + "401d9081-6317-4354-86a2-7ad778cb1aa6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093513Z:3838eea3-3d11-462f-a04e-56fc61fd726a" + "CENTRALUSEUAP:20210418T124223Z:401d9081-6317-4354-86a2-7ad778cb1aa6" ], "Date": [ - "Thu, 16 Jan 2020 09:35:13 GMT" + "Sun, 18 Apr 2021 12:42:22 GMT" ], "Content-Length": [ - "2197" + "2190" ], "Content-Type": [ "application/json" @@ -6120,29 +6045,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b8b171e0-157b-42fb-b0bc-43488d65e14d-2020-01-16 09:35:11Z-Ps ActivityId: 8717cdc6-3d9e-4b1c-b38f-d692580ee4c6\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"e0a1d1b3-5703-4c9a-a3e8-4d4693b9a9dd\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2020-01-16T09:35:12.8397575Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"9a704a47-5edd-4002-8a47-c42645d71746\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.network/virtualnetworks/a2avm102\",\r\n \"primaryNetworkName\": \"a2avm102\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"9a03c923-57f0-4777-a927-06cee69b742d ActivityId: 4f6a1fc7-5164-4ae8-b1d5-7f4585eb7a6d\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"7fa2be75-1516-48ce-b4fb-f3371477a39d\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-18T12:42:22.5947722Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"c27a7bd3-28b3-4aaf-bd72-4cc9851c22b4\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.network/virtualnetworks/a2avm1022\",\r\n \"primaryNetworkName\": \"a2avm1022\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODYyMjBmZmUtYzcyZi00YTdkLTk2MzYtNGM5ODYwMjU1YzhkP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8yN2QzOWUxNi05NDQ4LTRkODMtYjA5Zi00NWQyYWQzMjY3YjA/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b51cce2-a32b-4406-bfc5-af40e4277588-2020-01-16 09:35:33Z-Ps" + "781c4a74-c881-4e2f-a7b1-8d8a1204b10a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163733963)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768533963)\\/\",\"ClientRequestId\":\"4b51cce2-a32b-4406-bfc5-af40e4277588-2020-01-16 09:35:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RcwbT1EwTL8ZsZ/egT+BU99CeF49CHK94IpSQD88wmg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746163329)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350963329)\\/\",\"ClientRequestId\":\"cc9db494-66de-46fa-b4f2-c2ca9a570dfc-2021-04-18 12:42:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wliWzsM1zrDGrScoIwD4zek5+X+WhpBjBMkVYgP7AZU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6152,39 +6077,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11880" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "4b51cce2-a32b-4406-bfc5-af40e4277588-2020-01-16 09:35:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" + "781c4a74-c881-4e2f-a7b1-8d8a1204b10a" ], "x-ms-correlation-request-id": [ - "ab889a2f-fd4f-44dd-8f47-0347d69609d9" + "5a478b79-2a75-4e91-b756-02a9ff3decd1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093534Z:ab889a2f-fd4f-44dd-8f47-0347d69609d9" + "CENTRALUSEUAP:20210418T124243Z:5a478b79-2a75-4e91-b756-02a9ff3decd1" ], "Date": [ - "Thu, 16 Jan 2020 09:35:33 GMT" + "Sun, 18 Apr 2021 12:42:43 GMT" ], "Content-Length": [ - "2219" + "2212" ], "Content-Type": [ "application/json" @@ -6193,35 +6115,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b8b171e0-157b-42fb-b0bc-43488d65e14d-2020-01-16 09:35:11Z-Ps ActivityId: 8717cdc6-3d9e-4b1c-b38f-d692580ee4c6\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"e0a1d1b3-5703-4c9a-a3e8-4d4693b9a9dd\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2020-01-16T09:35:12.8397575Z\",\r\n \"endTime\": \"2020-01-16T09:35:14.1848591Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"9a704a47-5edd-4002-8a47-c42645d71746\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.network/virtualnetworks/a2avm102\",\r\n \"primaryNetworkName\": \"a2avm102\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"9a03c923-57f0-4777-a927-06cee69b742d ActivityId: 4f6a1fc7-5164-4ae8-b1d5-7f4585eb7a6d\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"7fa2be75-1516-48ce-b4fb-f3371477a39d\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-18T12:42:22.5947722Z\",\r\n \"endTime\": \"2021-04-18T12:42:23.8295897Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"c27a7bd3-28b3-4aaf-bd72-4cc9851c22b4\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.network/virtualnetworks/a2avm1022\",\r\n \"primaryNetworkName\": \"a2avm1022\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/virtualMachines/a2aVM102\",\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"vmDisks\": [],\r\n \"vmManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/virtualMachines/a2aVM1022\",\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"vmDisks\": [],\r\n \"vmManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps" + "1d29d061-1c13-431a-994f-cf4767f3545a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163734821)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768534821)\\/\",\"ClientRequestId\":\"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wPMd3Bhfi2paIy4/CIkD4Xg9s9Ms6IruReEwNi/8cFs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746164070)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350964070)\\/\",\"ClientRequestId\":\"85d39eb3-f00a-49ef-9a12-fa8741fd53b2-2021-04-18 12:42:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ifSoGoagWoNxiir8fvbhGhxhEWrMQKESlsx/yDHBwZY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1548" + "1563" ] }, "ResponseHeaders": { @@ -6232,41 +6154,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102/operationresults/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022/operationresults/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationOperationStatus/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationOperationStatus/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "1d29d061-1c13-431a-994f-cf4767f3545a" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1168" ], "x-ms-correlation-request-id": [ - "276a3603-beeb-4168-94d6-25eee2a7dfd3" + "27647df2-e822-46d3-9318-2a2cfbcaf9cf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093535Z:276a3603-beeb-4168-94d6-25eee2a7dfd3" + "CENTRALUSEUAP:20210418T124244Z:27647df2-e822-46d3-9318-2a2cfbcaf9cf" ], "Date": [ - "Thu, 16 Jan 2020 09:35:35 GMT" + "Sun, 18 Apr 2021 12:42:44 GMT" ], "Expires": [ "-1" @@ -6279,25 +6198,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da7c3912-1404-496b-a2ed-ae9cd458abad-2020-01-16 09:35:35Z-Ps" + "1d29d061-1c13-431a-994f-cf4767f3545a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163735775)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768535775)\\/\",\"ClientRequestId\":\"da7c3912-1404-496b-a2ed-ae9cd458abad-2020-01-16 09:35:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1A+Th7WeR36UQIQ7878hvT07hNQ+bpyf0kLw61KU1Po=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746164766)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619350964766)\\/\",\"ClientRequestId\":\"11ac6392-6439-451c-a763-4f20b463edeb-2021-04-18 12:42:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"S/bkyctXtYgg7qnwH4ejwUZL7Mjzm4ddAI6IoGHk2gY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6308,38 +6227,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" + "11877" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "da7c3912-1404-496b-a2ed-ae9cd458abad-2020-01-16 09:35:35Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1d29d061-1c13-431a-994f-cf4767f3545a" ], "x-ms-correlation-request-id": [ - "6d87e599-1ea0-4a0c-beea-d93d2115301d" + "35e22403-1238-44fb-b025-d6005f96fe0f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093536Z:6d87e599-1ea0-4a0c-beea-d93d2115301d" + "CENTRALUSEUAP:20210418T124244Z:35e22403-1238-44fb-b025-d6005f96fe0f" ], "Date": [ - "Thu, 16 Jan 2020 09:35:35 GMT" + "Sun, 18 Apr 2021 12:42:44 GMT" ], "Content-Length": [ - "3379" + "3370" ], "Content-Type": [ "application/json" @@ -6348,29 +6264,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52436e02-6e83-4c2d-83a5-ac140a355971-2020-01-16 09:35:36Z-Ps" + "bd5f6016-3860-45cc-95bc-11ebeb8750de" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163736165)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768536165)\\/\",\"ClientRequestId\":\"52436e02-6e83-4c2d-83a5-ac140a355971-2020-01-16 09:35:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VsRja0Zds9mPZhWljeUK9d7Z71CDKmYdpfkjiXydbEg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746205166)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351005166)\\/\",\"ClientRequestId\":\"dba0e99c-fb42-482f-8808-d3272e810de5-2021-04-18 12:43:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"v6+SFmq/aO8QvfyQiwLecTe7wIQzlcXdRpOYbfmDOa4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6381,38 +6297,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" + "11874" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "52436e02-6e83-4c2d-83a5-ac140a355971-2020-01-16 09:35:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bd5f6016-3860-45cc-95bc-11ebeb8750de" ], "x-ms-correlation-request-id": [ - "0ecdc325-fd32-437b-b93c-76029f4fcec0" + "5ad0ed37-5322-44eb-a75a-3ab70fcfb313" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093536Z:0ecdc325-fd32-437b-b93c-76029f4fcec0" + "CENTRALUSEUAP:20210418T124325Z:5ad0ed37-5322-44eb-a75a-3ab70fcfb313" ], "Date": [ - "Thu, 16 Jan 2020 09:35:35 GMT" + "Sun, 18 Apr 2021 12:43:24 GMT" ], "Content-Length": [ - "3379" + "3386" ], "Content-Type": [ "application/json" @@ -6421,29 +6334,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:20.3475199Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:20.3475199Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aeda0d5e-9b82-4bc8-a11c-e0dd163d7df7-2020-01-16 09:35:56Z-Ps" + "87c6ba79-8534-4467-b2e0-badb41de946e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163756678)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768556678)\\/\",\"ClientRequestId\":\"aeda0d5e-9b82-4bc8-a11c-e0dd163d7df7-2020-01-16 09:35:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0iIkN2DOK4TqemMdOeCpO9sKGzZA12Dhi85DDNyl91A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746225671)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351025671)\\/\",\"ClientRequestId\":\"1ae66336-6052-4c4a-bb42-4d2cb1c5f96d-2021-04-18 12:43:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XtOL7SbYEuTll8OoA0znhMAUn4C9Le7iH2t9CrhdKig=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6454,38 +6367,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" + "11872" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "aeda0d5e-9b82-4bc8-a11c-e0dd163d7df7-2020-01-16 09:35:56Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "87c6ba79-8534-4467-b2e0-badb41de946e" ], "x-ms-correlation-request-id": [ - "a3d03719-74d7-4891-a6d8-6753bb811a4e" + "d70faf7b-4777-4690-b7dc-c7656568fb3e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093558Z:a3d03719-74d7-4891-a6d8-6753bb811a4e" + "CENTRALUSEUAP:20210418T124345Z:d70faf7b-4777-4690-b7dc-c7656568fb3e" ], "Date": [ - "Thu, 16 Jan 2020 09:35:58 GMT" + "Sun, 18 Apr 2021 12:43:45 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -6494,29 +6404,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37d3d5c3-b363-4a90-bed4-30abba05c5ea-2020-01-16 09:36:18Z-Ps" + "cdeca002-8528-4a10-815d-7d16a31745c8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163778362)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768578362)\\/\",\"ClientRequestId\":\"37d3d5c3-b363-4a90-bed4-30abba05c5ea-2020-01-16 09:36:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kfVN7BoqIowurD/MJ5+DkcHGS5jEIfSTYZ45qPQjMvA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746246064)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351046064)\\/\",\"ClientRequestId\":\"c673261b-075f-427a-918b-cda71ee05436-2021-04-18 12:44:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oSglvT3phQ+L50kldgW1i7kf/s9ysbCm/f/MeDTpNZw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6527,38 +6437,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" + "11870" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "37d3d5c3-b363-4a90-bed4-30abba05c5ea-2020-01-16 09:36:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cdeca002-8528-4a10-815d-7d16a31745c8" ], "x-ms-correlation-request-id": [ - "7e3578e0-77ee-4936-9b34-d3d02d4ade67" + "b9fef3df-af67-4b04-a37f-dc582d099e16" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093618Z:7e3578e0-77ee-4936-9b34-d3d02d4ade67" + "CENTRALUSEUAP:20210418T124406Z:b9fef3df-af67-4b04-a37f-dc582d099e16" ], "Date": [ - "Thu, 16 Jan 2020 09:36:18 GMT" + "Sun, 18 Apr 2021 12:44:06 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -6567,29 +6474,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57c13984-192d-4380-9d15-000111b1b57c-2020-01-16 09:36:38Z-Ps" + "e46e741d-140d-48cf-8bb7-79f2b1ff639a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163798916)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768598916)\\/\",\"ClientRequestId\":\"57c13984-192d-4380-9d15-000111b1b57c-2020-01-16 09:36:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rdgowILaPTbGE3bsLi0K0LZeat6J+accFEiWrDjoo/s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746266471)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351066471)\\/\",\"ClientRequestId\":\"972d1c3c-4905-4e7f-85d0-c4ba246aa9d5-2021-04-18 12:44:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3yaCouRoKPIbTXo/Zn+saStg5HrTQpJsB5Ov44BuU1U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6600,38 +6507,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" + "11868" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "57c13984-192d-4380-9d15-000111b1b57c-2020-01-16 09:36:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e46e741d-140d-48cf-8bb7-79f2b1ff639a" ], "x-ms-correlation-request-id": [ - "90e79dd2-06dd-498a-8811-f8f2260db1f2" + "fc1bb444-0e56-4210-a4aa-692595e7b6a2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093639Z:90e79dd2-06dd-498a-8811-f8f2260db1f2" + "CENTRALUSEUAP:20210418T124426Z:fc1bb444-0e56-4210-a4aa-692595e7b6a2" ], "Date": [ - "Thu, 16 Jan 2020 09:36:38 GMT" + "Sun, 18 Apr 2021 12:44:26 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -6640,29 +6544,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d9df4f2-66bb-48f8-87e5-200bc385da62-2020-01-16 09:36:59Z-Ps" + "d276b0aa-df93-4d27-812d-1cdee418df17" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163819500)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768619500)\\/\",\"ClientRequestId\":\"8d9df4f2-66bb-48f8-87e5-200bc385da62-2020-01-16 09:36:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KH/U0jpY13sgu+9+wRclfQWNdOiuZq1S0s4o1PZ/SN8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746287049)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351087049)\\/\",\"ClientRequestId\":\"b3a3fb37-aca1-4318-8165-eb719d36403a-2021-04-18 12:44:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wRq4JiQPwodGlLSFnnmtte0OIutDSsIt1saC4L1Ntlg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6673,38 +6577,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" + "11866" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "8d9df4f2-66bb-48f8-87e5-200bc385da62-2020-01-16 09:36:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d276b0aa-df93-4d27-812d-1cdee418df17" ], "x-ms-correlation-request-id": [ - "c0cf2847-d99e-4e63-93cf-bf108a9d5ec8" + "6965dd68-0b7e-4644-a73d-df75327e2034" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093659Z:c0cf2847-d99e-4e63-93cf-bf108a9d5ec8" + "CENTRALUSEUAP:20210418T124447Z:6965dd68-0b7e-4644-a73d-df75327e2034" ], "Date": [ - "Thu, 16 Jan 2020 09:36:59 GMT" + "Sun, 18 Apr 2021 12:44:46 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -6713,29 +6614,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12740c7d-435f-49d4-b8b7-5f38d42b0375-2020-01-16 09:37:20Z-Ps" + "c6dfca7e-8a55-44ce-8c8b-c99ba4c8d811" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163840033)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768640033)\\/\",\"ClientRequestId\":\"12740c7d-435f-49d4-b8b7-5f38d42b0375-2020-01-16 09:37:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FsgCOJTdwWBOQB1cWoh4Lu8Tf4CdibxiHWnui6RlUDQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746307504)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351107504)\\/\",\"ClientRequestId\":\"f2e7fb95-7df2-4267-b89d-36ecfb722deb-2021-04-18 12:45:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"85Gl7EKslfCtBQiumB/Gi9iTXtou/cp6SnokoKdbI58=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6745,39 +6646,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11864" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" - ], - "X-Powered-By": [ - "ASP.NET" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "12740c7d-435f-49d4-b8b7-5f38d42b0375-2020-01-16 09:37:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" + "c6dfca7e-8a55-44ce-8c8b-c99ba4c8d811" ], "x-ms-correlation-request-id": [ - "dd485ffe-2804-4f96-a0a7-bcc0e2451720" + "5aef012c-528e-478f-bf2d-d574be5b71e9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093720Z:dd485ffe-2804-4f96-a0a7-bcc0e2451720" + "CENTRALUSEUAP:20210418T124507Z:5aef012c-528e-478f-bf2d-d574be5b71e9" ], "Date": [ - "Thu, 16 Jan 2020 09:37:19 GMT" + "Sun, 18 Apr 2021 12:45:07 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -6786,29 +6684,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "969dc02e-95fa-45dc-a05a-205f9987016c-2020-01-16 09:37:40Z-Ps" + "f29d3e7e-bec3-4a14-997c-11ee2b2f1534" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163860538)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768660538)\\/\",\"ClientRequestId\":\"969dc02e-95fa-45dc-a05a-205f9987016c-2020-01-16 09:37:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Zp8STXwvSfQYvK2NkSRH65zqSOJcdL5B1tfBEzNZfLk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746327929)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351127929)\\/\",\"ClientRequestId\":\"457a9705-73fe-4cfe-be7b-0430f4fd01cf-2021-04-18 12:45:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"64vmDmWxmpbhkPwZbvFpFhYzW7vwX2fPGQJo/SHzlJc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6819,38 +6717,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" + "11862" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "969dc02e-95fa-45dc-a05a-205f9987016c-2020-01-16 09:37:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f29d3e7e-bec3-4a14-997c-11ee2b2f1534" ], "x-ms-correlation-request-id": [ - "be73dd31-1fed-4b3d-bb6f-69402dbcd9cd" + "7cce05d1-973a-4114-939a-adf42ea9750e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093742Z:be73dd31-1fed-4b3d-bb6f-69402dbcd9cd" + "CENTRALUSEUAP:20210418T124528Z:7cce05d1-973a-4114-939a-adf42ea9750e" ], "Date": [ - "Thu, 16 Jan 2020 09:37:41 GMT" + "Sun, 18 Apr 2021 12:45:27 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -6859,29 +6754,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "714dec81-0e15-4ead-a87e-1275f0284540-2020-01-16 09:38:02Z-Ps" + "5987b1b4-374e-4dd7-b6ac-6bcbad04b17f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163882213)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768682213)\\/\",\"ClientRequestId\":\"714dec81-0e15-4ead-a87e-1275f0284540-2020-01-16 09:38:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Oepo266Ypjc6O2DUjggTXA9OqWRiZye4qp43wWRAYzA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746348378)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351148378)\\/\",\"ClientRequestId\":\"4bc8abed-7ce1-42fb-94fc-ec0cc085390b-2021-04-18 12:45:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rwEjmJ3efnh2pFAcEx6+jSK44hQgSV6pSfGojWC1F/Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6892,38 +6787,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" + "11860" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "714dec81-0e15-4ead-a87e-1275f0284540-2020-01-16 09:38:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5987b1b4-374e-4dd7-b6ac-6bcbad04b17f" ], "x-ms-correlation-request-id": [ - "e834c64a-de88-4c02-af91-40c350b59063" + "d5c90fe2-90e6-418b-876d-b0437017224b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093802Z:e834c64a-de88-4c02-af91-40c350b59063" + "CENTRALUSEUAP:20210418T124548Z:d5c90fe2-90e6-418b-876d-b0437017224b" ], "Date": [ - "Thu, 16 Jan 2020 09:38:02 GMT" + "Sun, 18 Apr 2021 12:45:48 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -6932,29 +6824,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48faec94-5fed-461c-922e-fb147cb1063c-2020-01-16 09:38:22Z-Ps" + "c85ded16-e1bc-4858-95db-5e720805a202" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163902714)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768702714)\\/\",\"ClientRequestId\":\"48faec94-5fed-461c-922e-fb147cb1063c-2020-01-16 09:38:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tMe2ES+yWkhs3YNTzjA34sTXdQ3XYpAFXqsR2ybmtDw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746368834)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351168834)\\/\",\"ClientRequestId\":\"97849a52-5e6b-4b88-8e28-df2748b145b1-2021-04-18 12:46:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Br2nlqIrjKBciOgavLTmSWCqEjtqFPUJozSeuJExySQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6965,38 +6857,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" + "11858" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "48faec94-5fed-461c-922e-fb147cb1063c-2020-01-16 09:38:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c85ded16-e1bc-4858-95db-5e720805a202" ], "x-ms-correlation-request-id": [ - "1c5d877b-18f1-4dee-8892-921db022b757" + "b848a384-78cb-438d-9df4-d911c34f578e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093823Z:1c5d877b-18f1-4dee-8892-921db022b757" + "CENTRALUSEUAP:20210418T124609Z:b848a384-78cb-438d-9df4-d911c34f578e" ], "Date": [ - "Thu, 16 Jan 2020 09:38:22 GMT" + "Sun, 18 Apr 2021 12:46:09 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -7005,29 +6894,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "420d09ab-5145-4305-aea7-b5f0413c3302-2020-01-16 09:38:43Z-Ps" + "6b8bfdeb-23a9-44e3-b15a-ff896e56ce26" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163923642)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768723642)\\/\",\"ClientRequestId\":\"420d09ab-5145-4305-aea7-b5f0413c3302-2020-01-16 09:38:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UKrBlvE8078LpxdEiKTFh807dzy+7TfB+nCoiJDLEww=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746389271)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351189271)\\/\",\"ClientRequestId\":\"792597e9-e181-4df3-b97a-89bad36c01f3-2021-04-18 12:46:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6lbuCQbYPuqrxlbpsQO2FZ+xYWjLh3hZdazqyom2Ffg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7038,38 +6927,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" + "11856" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "420d09ab-5145-4305-aea7-b5f0413c3302-2020-01-16 09:38:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6b8bfdeb-23a9-44e3-b15a-ff896e56ce26" ], "x-ms-correlation-request-id": [ - "8693c9f7-2aaa-4587-9c95-5a47d6c7826c" + "785d4d5a-5a24-47dc-b680-71b5d91a488f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093844Z:8693c9f7-2aaa-4587-9c95-5a47d6c7826c" + "CENTRALUSEUAP:20210418T124629Z:785d4d5a-5a24-47dc-b680-71b5d91a488f" ], "Date": [ - "Thu, 16 Jan 2020 09:38:43 GMT" + "Sun, 18 Apr 2021 12:46:29 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -7078,29 +6964,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e903c405-b285-480f-a8ef-fed7426992e1-2020-01-16 09:39:04Z-Ps" + "b95d2341-b975-455f-994c-b36bf796c5fe" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163944178)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768744178)\\/\",\"ClientRequestId\":\"e903c405-b285-480f-a8ef-fed7426992e1-2020-01-16 09:39:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CRs/52Ju5mk+k2fhmmNEAErAWTJ1jNLm+52jxBFs5cE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746410295)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351210295)\\/\",\"ClientRequestId\":\"2fb1c99a-2511-45f7-a171-8239ffab2927-2021-04-18 12:46:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Rqb8UUWJ2huXw/jK0xJY+LD04JqmdZmjwfhXxKkMuc4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7110,39 +6996,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11854" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e903c405-b285-480f-a8ef-fed7426992e1-2020-01-16 09:39:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" + "b95d2341-b975-455f-994c-b36bf796c5fe" ], "x-ms-correlation-request-id": [ - "f651aac2-d5de-4985-81d9-f63391961713" + "a649d71f-5245-4bef-bd68-cdf15072a11a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093904Z:f651aac2-d5de-4985-81d9-f63391961713" + "CENTRALUSEUAP:20210418T124650Z:a649d71f-5245-4bef-bd68-cdf15072a11a" ], "Date": [ - "Thu, 16 Jan 2020 09:39:04 GMT" + "Sun, 18 Apr 2021 12:46:50 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -7151,29 +7034,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50b2edfa-0f31-4626-9dac-340306acebdd-2020-01-16 09:39:24Z-Ps" + "36477fa6-915d-4a11-bb5a-060d9abe982c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163964672)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768764672)\\/\",\"ClientRequestId\":\"50b2edfa-0f31-4626-9dac-340306acebdd-2020-01-16 09:39:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"P1kc5EGjEY8x/8wH1yLIrIuPwatn+1I8ejA2TMqs5OM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746430705)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351230705)\\/\",\"ClientRequestId\":\"9298e710-f1a4-42d2-9c9e-c1efa70d645a-2021-04-18 12:47:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7OqWdKz6Ro5wsSwYu/6lJXI68i/3qkocwYGvXWh/Fa4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7184,38 +7067,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" + "11852" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "50b2edfa-0f31-4626-9dac-340306acebdd-2020-01-16 09:39:24Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "36477fa6-915d-4a11-bb5a-060d9abe982c" ], "x-ms-correlation-request-id": [ - "0541bdd9-b846-4b64-baff-81eeb5cfebec" + "e3766891-04ba-40d6-bb72-2c3fdd160c10" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093926Z:0541bdd9-b846-4b64-baff-81eeb5cfebec" + "CENTRALUSEUAP:20210418T124710Z:e3766891-04ba-40d6-bb72-2c3fdd160c10" ], "Date": [ - "Thu, 16 Jan 2020 09:39:25 GMT" + "Sun, 18 Apr 2021 12:47:10 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -7224,29 +7104,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14262425-9695-41c8-8cdd-c4386d084c9f-2020-01-16 09:39:46Z-Ps" + "7538b99c-9430-4f3b-93fd-2060318d731b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579163986285)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768786285)\\/\",\"ClientRequestId\":\"14262425-9695-41c8-8cdd-c4386d084c9f-2020-01-16 09:39:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"aGWDNOjHUaa9sPhKHQViSl5zf/b+4I05GBKTo+Bk1Ck=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746451131)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351251131)\\/\",\"ClientRequestId\":\"30169f05-bd65-470f-9ff6-982a6c98ccaa-2021-04-18 12:47:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"C2QB14ITm4kK0kKSt0RVPcz7QMUaAx/4tblA14U8418=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7257,38 +7137,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" + "11850" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "14262425-9695-41c8-8cdd-c4386d084c9f-2020-01-16 09:39:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7538b99c-9430-4f3b-93fd-2060318d731b" ], "x-ms-correlation-request-id": [ - "ee03d6eb-9b1d-413b-881b-8bb25e28666b" + "7939b690-9193-42a4-99ed-29bc5bde3c7c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T093946Z:ee03d6eb-9b1d-413b-881b-8bb25e28666b" + "CENTRALUSEUAP:20210418T124731Z:7939b690-9193-42a4-99ed-29bc5bde3c7c" ], "Date": [ - "Thu, 16 Jan 2020 09:39:45 GMT" + "Sun, 18 Apr 2021 12:47:30 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -7297,29 +7174,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fa7edbf-19d0-4f5c-8b12-453df22fe8ae-2020-01-16 09:40:06Z-Ps" + "71eb90ce-1b91-407f-8c4f-4da2c7c0fa93" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164006869)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768806869)\\/\",\"ClientRequestId\":\"7fa7edbf-19d0-4f5c-8b12-453df22fe8ae-2020-01-16 09:40:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vt35DviWg26jOT+SamJnmxe8KEIWFfcO0hFQOj/F9Qw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746471576)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351271576)\\/\",\"ClientRequestId\":\"bfe91dd3-a8ad-4f34-83d5-cd8cf7ba4ed6-2021-04-18 12:47:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FWlFF2uqBQrlQzrvNc0aoZKa1IzFV4Es+xelXgs/t9Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7330,38 +7207,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" + "11848" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7fa7edbf-19d0-4f5c-8b12-453df22fe8ae-2020-01-16 09:40:06Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "71eb90ce-1b91-407f-8c4f-4da2c7c0fa93" ], "x-ms-correlation-request-id": [ - "199776cd-ab63-4ff4-92c2-d7f8813b38a7" + "7ca3273a-9e76-4668-9eba-45b0d6de9f09" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094007Z:199776cd-ab63-4ff4-92c2-d7f8813b38a7" + "CENTRALUSEUAP:20210418T124751Z:7ca3273a-9e76-4668-9eba-45b0d6de9f09" ], "Date": [ - "Thu, 16 Jan 2020 09:40:06 GMT" + "Sun, 18 Apr 2021 12:47:51 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -7370,29 +7244,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7650f685-88d5-457d-bbee-2ba7280df1ac-2020-01-16 09:40:27Z-Ps" + "13271241-6a38-4159-a463-8dfd2e73b761" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164027424)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768827424)\\/\",\"ClientRequestId\":\"7650f685-88d5-457d-bbee-2ba7280df1ac-2020-01-16 09:40:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BnMrcN54LFK0v0v3bG2D9Ga4g/gaHWbn15qlaspB0aU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746491972)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351291972)\\/\",\"ClientRequestId\":\"fefe4c96-8e38-499a-b3b5-d408c801b7ae-2021-04-18 12:48:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kgucWT1gyOcOdAhrvVFbq1NoiqYsOPT/onp3S6u0wew=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7403,38 +7277,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" + "11846" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7650f685-88d5-457d-bbee-2ba7280df1ac-2020-01-16 09:40:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "13271241-6a38-4159-a463-8dfd2e73b761" ], "x-ms-correlation-request-id": [ - "67de31dc-b27e-4fe2-8e84-d6f1da4646fc" + "91580320-7d0b-46cc-887e-8e4460d79deb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094027Z:67de31dc-b27e-4fe2-8e84-d6f1da4646fc" + "CENTRALUSEUAP:20210418T124812Z:91580320-7d0b-46cc-887e-8e4460d79deb" ], "Date": [ - "Thu, 16 Jan 2020 09:40:27 GMT" + "Sun, 18 Apr 2021 12:48:12 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -7443,29 +7314,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "801192b4-2383-408a-a38e-c377ae1e2627-2020-01-16 09:40:47Z-Ps" + "21b7a779-9e2e-4116-a483-0176e44d3e28" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164047917)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768847917)\\/\",\"ClientRequestId\":\"801192b4-2383-408a-a38e-c377ae1e2627-2020-01-16 09:40:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Zz3er3OdrJW/mqc5qJwhf1J6eABBua74Xzjv188N+mk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746512369)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351312369)\\/\",\"ClientRequestId\":\"5ec92238-00c4-4829-9b9c-9d727a254198-2021-04-18 12:48:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vNtVGljX/w7bLaf1VX2fTGu+4CZxwL9qKlFaF9iSmvc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7475,39 +7346,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11844" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "801192b4-2383-408a-a38e-c377ae1e2627-2020-01-16 09:40:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" + "21b7a779-9e2e-4116-a483-0176e44d3e28" ], "x-ms-correlation-request-id": [ - "132601f9-6aef-43b9-ae16-ba823ead0c38" + "4f6aa15d-d64e-4827-84ec-f3a66fa843a1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094048Z:132601f9-6aef-43b9-ae16-ba823ead0c38" + "CENTRALUSEUAP:20210418T124832Z:4f6aa15d-d64e-4827-84ec-f3a66fa843a1" ], "Date": [ - "Thu, 16 Jan 2020 09:40:47 GMT" + "Sun, 18 Apr 2021 12:48:31 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -7516,29 +7384,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "047f8423-6c9d-47f2-89e7-a2425922773b-2020-01-16 09:41:08Z-Ps" + "698747da-a508-4e05-809d-46c8dcb6367c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164068428)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768868428)\\/\",\"ClientRequestId\":\"047f8423-6c9d-47f2-89e7-a2425922773b-2020-01-16 09:41:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"J83PEUUYVMfYeeY+oYo9vxRBOIKrf0f39H8cwZ7chf0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746532764)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351332764)\\/\",\"ClientRequestId\":\"04198a8c-8e4e-447a-ae40-34ae1f75c9f5-2021-04-18 12:48:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fGNtOIALYwcv06VwKeiz/BszB7swH7HnMvusTUFZEck=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7549,38 +7417,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11896" + "11842" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "047f8423-6c9d-47f2-89e7-a2425922773b-2020-01-16 09:41:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "698747da-a508-4e05-809d-46c8dcb6367c" ], "x-ms-correlation-request-id": [ - "74b84227-80f7-4179-990b-2ae3e7acb7bb" + "d80a2503-5eb4-4c46-bf0c-bb560418710d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094109Z:74b84227-80f7-4179-990b-2ae3e7acb7bb" + "CENTRALUSEUAP:20210418T124853Z:d80a2503-5eb4-4c46-bf0c-bb560418710d" ], "Date": [ - "Thu, 16 Jan 2020 09:41:09 GMT" + "Sun, 18 Apr 2021 12:48:53 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -7589,29 +7454,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73285b18-e765-4fc7-9103-4d69d5e8c16b-2020-01-16 09:41:30Z-Ps" + "824283b4-1fec-47e0-81e3-cf24231eba4e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164090014)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768890014)\\/\",\"ClientRequestId\":\"73285b18-e765-4fc7-9103-4d69d5e8c16b-2020-01-16 09:41:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WWSbO9xj2Vas5PdCNjKDdKV3uSHGEptlA/eTvivntlc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746553342)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351353342)\\/\",\"ClientRequestId\":\"bf718613-36a1-4619-bffa-379d809a6bc5-2021-04-18 12:49:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"m57MVVma2o5HC3kNXP1KR/UkGKOq9GEgCidENInKr2k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7622,38 +7487,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" + "11840" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "73285b18-e765-4fc7-9103-4d69d5e8c16b-2020-01-16 09:41:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "824283b4-1fec-47e0-81e3-cf24231eba4e" ], "x-ms-correlation-request-id": [ - "1dd38713-b339-4082-bf06-863f15e2d6f3" + "9d6f8bfc-5483-4848-8c22-4d98f89cafc8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094130Z:1dd38713-b339-4082-bf06-863f15e2d6f3" + "CENTRALUSEUAP:20210418T124913Z:9d6f8bfc-5483-4848-8c22-4d98f89cafc8" ], "Date": [ - "Thu, 16 Jan 2020 09:41:30 GMT" + "Sun, 18 Apr 2021 12:49:12 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -7662,29 +7524,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdf3fc0a-1c6d-4bf0-ab81-02a8253052dc-2020-01-16 09:41:50Z-Ps" + "f30fb5a5-f090-478d-99ce-5905f3d9e7b2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164110683)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768910683)\\/\",\"ClientRequestId\":\"cdf3fc0a-1c6d-4bf0-ab81-02a8253052dc-2020-01-16 09:41:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TBZpygRLYcthHxcVn4gfkw3bb6GjpdwFWBQ+zWgZMvE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746573715)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351373715)\\/\",\"ClientRequestId\":\"e9039e53-ee5b-49ed-88aa-228ae33efe3c-2021-04-18 12:49:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PZwDIl8EYrD6TgXgDRGLoGB8zeMdfAkZvkC55Z/TE+M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7695,38 +7557,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11894" + "11838" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "cdf3fc0a-1c6d-4bf0-ab81-02a8253052dc-2020-01-16 09:41:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f30fb5a5-f090-478d-99ce-5905f3d9e7b2" ], "x-ms-correlation-request-id": [ - "5f0dbe30-9ec5-44ee-8507-474b25eab42a" + "c1be789c-cb41-4cb2-bd61-c725bc9638d7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094151Z:5f0dbe30-9ec5-44ee-8507-474b25eab42a" + "CENTRALUSEUAP:20210418T124933Z:c1be789c-cb41-4cb2-bd61-c725bc9638d7" ], "Date": [ - "Thu, 16 Jan 2020 09:41:50 GMT" + "Sun, 18 Apr 2021 12:49:33 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -7735,29 +7594,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11a5d8f7-e490-4f19-a4d6-b1a756d6e4ea-2020-01-16 09:42:11Z-Ps" + "a96fb036-e45d-427a-87b1-9cec5ca85919" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164131330)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768931330)\\/\",\"ClientRequestId\":\"11a5d8f7-e490-4f19-a4d6-b1a756d6e4ea-2020-01-16 09:42:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Lab6cMACaPQHShNxHXtBzq63xjUZUCT+EFAJmuVYdxc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746594085)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351394085)\\/\",\"ClientRequestId\":\"e0dacfd7-f636-4e7b-bf02-811b62a34767-2021-04-18 12:49:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"876MbWPVD3zR/sTG+4VZC7+1+ZyJljRT9tLS0Kseg8o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7768,38 +7627,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" + "11836" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "11a5d8f7-e490-4f19-a4d6-b1a756d6e4ea-2020-01-16 09:42:11Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a96fb036-e45d-427a-87b1-9cec5ca85919" ], "x-ms-correlation-request-id": [ - "d21d6c5f-625d-4aff-a27f-f6b5a1358afd" + "00998540-8beb-489c-9e1b-9644a960117f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094211Z:d21d6c5f-625d-4aff-a27f-f6b5a1358afd" + "CENTRALUSEUAP:20210418T124954Z:00998540-8beb-489c-9e1b-9644a960117f" ], "Date": [ - "Thu, 16 Jan 2020 09:42:11 GMT" + "Sun, 18 Apr 2021 12:49:53 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -7808,29 +7664,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19b36132-fed1-4230-928d-8f3f419484b5-2020-01-16 09:42:31Z-Ps" + "4ab50e74-8fbf-483a-91cb-31137b0dc692" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164151856)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768951856)\\/\",\"ClientRequestId\":\"19b36132-fed1-4230-928d-8f3f419484b5-2020-01-16 09:42:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BnRhEoeRK9kxac6OaetmVWuS49Rykob94Pa1BTZtsdQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746614470)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351414470)\\/\",\"ClientRequestId\":\"8b122825-bec0-4882-b65a-7de3179fe685-2021-04-18 12:50:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"o/ggg/7UZhFtK0kW9CaHAULEfGd9v7nmDPu8eyBDa7w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7841,38 +7697,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" + "11834" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "19b36132-fed1-4230-928d-8f3f419484b5-2020-01-16 09:42:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4ab50e74-8fbf-483a-91cb-31137b0dc692" ], "x-ms-correlation-request-id": [ - "0f3e20d1-6602-472b-b131-edf25d518718" + "c080b6c6-c4e7-4a3f-b194-d03538251a30" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094233Z:0f3e20d1-6602-472b-b131-edf25d518718" + "CENTRALUSEUAP:20210418T125014Z:c080b6c6-c4e7-4a3f-b194-d03538251a30" ], "Date": [ - "Thu, 16 Jan 2020 09:42:32 GMT" + "Sun, 18 Apr 2021 12:50:14 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -7881,29 +7734,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eadd58b5-0a01-4bee-abca-8f7f791c5a96-2020-01-16 09:42:53Z-Ps" + "d147d9d9-cbac-4902-ad95-006781a8b073" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164173431)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768973431)\\/\",\"ClientRequestId\":\"eadd58b5-0a01-4bee-abca-8f7f791c5a96-2020-01-16 09:42:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"af4SJRjFO7XYKUDJakzSm7yQLQk5RLAoyWTwbPqPnBA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746634847)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351434847)\\/\",\"ClientRequestId\":\"a321e284-dd30-481a-97e5-2a23245baf62-2021-04-18 12:50:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"s4vnvZJ480myOY9+gr7yLaOlFKcBlnqnB+Sk6M9mu4Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7914,38 +7767,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" + "11832" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "eadd58b5-0a01-4bee-abca-8f7f791c5a96-2020-01-16 09:42:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d147d9d9-cbac-4902-ad95-006781a8b073" ], "x-ms-correlation-request-id": [ - "4ff2294c-d929-48be-85b1-4bcde4684015" + "b2f47315-25fa-45bb-a63b-125cf6c23b5b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094253Z:4ff2294c-d929-48be-85b1-4bcde4684015" + "CENTRALUSEUAP:20210418T125035Z:b2f47315-25fa-45bb-a63b-125cf6c23b5b" ], "Date": [ - "Thu, 16 Jan 2020 09:42:53 GMT" + "Sun, 18 Apr 2021 12:50:34 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -7954,29 +7804,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73dfba0c-85e8-488d-8ed7-18be326aa6d3-2020-01-16 09:43:13Z-Ps" + "ec6995ff-097a-4586-a974-a7b42ebaf8c0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164193965)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579768993965)\\/\",\"ClientRequestId\":\"73dfba0c-85e8-488d-8ed7-18be326aa6d3-2020-01-16 09:43:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hmJkyiJA1YC/MrE8eOtIGdNEnqx+IOmvFJALNlBX6yI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746655274)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351455274)\\/\",\"ClientRequestId\":\"546a655b-c321-4ab9-86ed-c3dd71277c77-2021-04-18 12:50:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Wec10jGF4p524VQvqTd/o/ehQkwILt5KnV99FD3dFp4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7987,38 +7837,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" + "11830" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "73dfba0c-85e8-488d-8ed7-18be326aa6d3-2020-01-16 09:43:13Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ec6995ff-097a-4586-a974-a7b42ebaf8c0" ], "x-ms-correlation-request-id": [ - "6dd6aebc-3906-4087-b9bf-f74bf80e7f82" + "d8fb4e88-7fe2-41d3-a908-a31bff9ad5de" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094314Z:6dd6aebc-3906-4087-b9bf-f74bf80e7f82" + "CENTRALUSEUAP:20210418T125055Z:d8fb4e88-7fe2-41d3-a908-a31bff9ad5de" ], "Date": [ - "Thu, 16 Jan 2020 09:43:13 GMT" + "Sun, 18 Apr 2021 12:50:54 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -8027,29 +7874,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a7a596b-de4e-4e07-aeb6-69341abf4789-2020-01-16 09:43:34Z-Ps" + "af06f259-bbf7-4063-848b-8a147695e0b0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164214489)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769014489)\\/\",\"ClientRequestId\":\"4a7a596b-de4e-4e07-aeb6-69341abf4789-2020-01-16 09:43:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rMJrR6zFpb96vDPcvx2Lf4TSwy9vxNSti0gYtAmNcWY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746675657)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351475657)\\/\",\"ClientRequestId\":\"fb2213c5-6c07-43da-8e51-5f40116d487e-2021-04-18 12:51:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"f/UpHNKTp4Heu1OElM0YESBcBulzVPjSKZ4mivaewT4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8060,38 +7907,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" + "11828" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "4a7a596b-de4e-4e07-aeb6-69341abf4789-2020-01-16 09:43:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "af06f259-bbf7-4063-848b-8a147695e0b0" ], "x-ms-correlation-request-id": [ - "d121f558-850d-4319-bae3-f0e2799395fc" + "07254be6-aaf4-4e3b-8332-9dea1bf03a0d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094335Z:d121f558-850d-4319-bae3-f0e2799395fc" + "CENTRALUSEUAP:20210418T125115Z:07254be6-aaf4-4e3b-8332-9dea1bf03a0d" ], "Date": [ - "Thu, 16 Jan 2020 09:43:34 GMT" + "Sun, 18 Apr 2021 12:51:15 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -8100,29 +7944,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7aabc3a1-44f7-43f0-9fda-e4ffbdd5bae1-2020-01-16 09:43:55Z-Ps" + "d4de34c3-1f7c-49f9-b83c-9bdd44b5ae51" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164235253)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769035253)\\/\",\"ClientRequestId\":\"7aabc3a1-44f7-43f0-9fda-e4ffbdd5bae1-2020-01-16 09:43:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RGx321Ho1K2ss0gHnhFqvLxmfcai4zUipy7IVYJ6Vxc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746696100)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351496100)\\/\",\"ClientRequestId\":\"b8be4b57-d59c-4ab8-842f-b3caf011b3d4-2021-04-18 12:51:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BA2LoyJygi6ciRHSfgeuzDfHwqcnFufkEV0XbAegsrk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8132,39 +7976,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11826" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7aabc3a1-44f7-43f0-9fda-e4ffbdd5bae1-2020-01-16 09:43:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" + "d4de34c3-1f7c-49f9-b83c-9bdd44b5ae51" ], "x-ms-correlation-request-id": [ - "dc97611c-5f7b-41cb-a668-ce0043205f53" + "dd097d43-4f7d-4418-8c97-13bd2edb6121" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094355Z:dc97611c-5f7b-41cb-a668-ce0043205f53" + "CENTRALUSEUAP:20210418T125136Z:dd097d43-4f7d-4418-8c97-13bd2edb6121" ], "Date": [ - "Thu, 16 Jan 2020 09:43:54 GMT" + "Sun, 18 Apr 2021 12:51:36 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -8173,29 +8014,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e35ea184-c940-4553-bf8c-7b1366ef2957-2020-01-16 09:44:15Z-Ps" + "48c22cda-6b15-4982-9d72-c49b662af41e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164255752)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769055752)\\/\",\"ClientRequestId\":\"e35ea184-c940-4553-bf8c-7b1366ef2957-2020-01-16 09:44:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xOEO6BJHRJ5JBxBM7H+YwYG56fBrg3cMdyqE4zxKeGY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746716490)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351516490)\\/\",\"ClientRequestId\":\"4e9aa0d8-2edb-4a91-8c63-bbbb73cca7c9-2021-04-18 12:51:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ovcvMyasoF0HVGnaI2QnsIspgEpUfXL/qdvzKvd9QIM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8206,38 +8047,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" + "11824" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e35ea184-c940-4553-bf8c-7b1366ef2957-2020-01-16 09:44:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "48c22cda-6b15-4982-9d72-c49b662af41e" ], "x-ms-correlation-request-id": [ - "7810ab56-cd14-436f-ab5c-1291d65ee086" + "54f34000-7614-4204-9a3d-e4aa432ea65b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094417Z:7810ab56-cd14-436f-ab5c-1291d65ee086" + "CENTRALUSEUAP:20210418T125156Z:54f34000-7614-4204-9a3d-e4aa432ea65b" ], "Date": [ - "Thu, 16 Jan 2020 09:44:16 GMT" + "Sun, 18 Apr 2021 12:51:56 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -8246,29 +8084,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d259725-f061-445c-a2ed-b82dba85a72b-2020-01-16 09:44:37Z-Ps" + "8839da0b-8c75-44cc-a754-1642f9c6196a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164277385)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769077385)\\/\",\"ClientRequestId\":\"2d259725-f061-445c-a2ed-b82dba85a72b-2020-01-16 09:44:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"f9AIRJoEa8WPKcU2FkwDB+DA7HEnOYx8Q6t4JWL7LGY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746737030)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351537030)\\/\",\"ClientRequestId\":\"f98133cc-9f35-4d73-a1ff-f17e1d44b656-2021-04-18 12:52:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QVGPrKm9EVSDLJYaKAna6WX9FcIgks+z3SdnVg1ZIT8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8279,38 +8117,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" + "11822" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2d259725-f061-445c-a2ed-b82dba85a72b-2020-01-16 09:44:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8839da0b-8c75-44cc-a754-1642f9c6196a" ], "x-ms-correlation-request-id": [ - "c553a37a-9e66-44dd-9797-c3720ae850cc" + "f38df19a-130a-4a84-ab2f-2731e60434a7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094437Z:c553a37a-9e66-44dd-9797-c3720ae850cc" + "CENTRALUSEUAP:20210418T125217Z:f38df19a-130a-4a84-ab2f-2731e60434a7" ], "Date": [ - "Thu, 16 Jan 2020 09:44:37 GMT" + "Sun, 18 Apr 2021 12:52:17 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -8319,29 +8154,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79091460-c868-4569-b11e-3e4bdb42c6a4-2020-01-16 09:44:57Z-Ps" + "be1aa8e0-306e-414a-8bf0-d58d1255547a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164297957)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769097957)\\/\",\"ClientRequestId\":\"79091460-c868-4569-b11e-3e4bdb42c6a4-2020-01-16 09:44:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9pEFFFm7MxpRCZhWMnY6VjnFol2Q4NvoOU3PIvTgb5Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746757454)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351557454)\\/\",\"ClientRequestId\":\"b414f0a7-684a-4b4f-a083-379004f9d4bf-2021-04-18 12:52:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FQbHgDtLFOPmwe+iyLPjDiqW01bFzq8Wq5Z1Hd6t0Cc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8352,38 +8187,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" + "11820" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "79091460-c868-4569-b11e-3e4bdb42c6a4-2020-01-16 09:44:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "be1aa8e0-306e-414a-8bf0-d58d1255547a" ], "x-ms-correlation-request-id": [ - "43296dbe-ea51-4919-9c35-bd7dee54ecda" + "2de7faf2-ff69-4250-ae02-96ec28fe41ad" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094458Z:43296dbe-ea51-4919-9c35-bd7dee54ecda" + "CENTRALUSEUAP:20210418T125237Z:2de7faf2-ff69-4250-ae02-96ec28fe41ad" ], "Date": [ - "Thu, 16 Jan 2020 09:44:57 GMT" + "Sun, 18 Apr 2021 12:52:37 GMT" ], "Content-Length": [ - "3395" + "3418" ], "Content-Type": [ "application/json" @@ -8392,29 +8224,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00146024-c37b-4225-a235-372dec22d48a-2020-01-16 09:45:18Z-Ps" + "fb4d802b-c426-4616-94fb-7f8e65a40f81" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164318460)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769118460)\\/\",\"ClientRequestId\":\"00146024-c37b-4225-a235-372dec22d48a-2020-01-16 09:45:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WJq/bcXcAtMghY0VVMDBDq9lzTXrKguK6DCZ+zX+cAQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746777889)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351577889)\\/\",\"ClientRequestId\":\"1503f497-0f01-4591-b15f-ad9ba673307f-2021-04-18 12:52:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"v7zwVBrtclRI3eMiEYsFdRrKrHO/cc9TMvFG7gID4fY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8425,38 +8257,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" + "11818" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "00146024-c37b-4225-a235-372dec22d48a-2020-01-16 09:45:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "fb4d802b-c426-4616-94fb-7f8e65a40f81" ], "x-ms-correlation-request-id": [ - "7aaa018c-9b63-4c4f-bbdd-e9c14b49f619" + "74f8d6c7-53c8-4270-96d8-d1bb5fa8adb5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094518Z:7aaa018c-9b63-4c4f-bbdd-e9c14b49f619" + "CENTRALUSEUAP:20210418T125258Z:74f8d6c7-53c8-4270-96d8-d1bb5fa8adb5" ], "Date": [ - "Thu, 16 Jan 2020 09:45:18 GMT" + "Sun, 18 Apr 2021 12:52:57 GMT" ], "Content-Length": [ - "3395" + "3418" ], "Content-Type": [ "application/json" @@ -8465,29 +8294,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc48d761-c401-484e-a653-0338b1585981-2020-01-16 09:45:39Z-Ps" + "813d6aad-34bc-4bd6-9a4f-2a89679c9b71" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164339015)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769139015)\\/\",\"ClientRequestId\":\"bc48d761-c401-484e-a653-0338b1585981-2020-01-16 09:45:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ux3Vkjgle5iH/VGVpS5P/ZEDL+l7aO5ELVnofoWLk1E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746798263)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351598263)\\/\",\"ClientRequestId\":\"3bd6ec4f-5f84-4a7c-a96f-27e58de959d8-2021-04-18 12:53:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kUL0Vz5+MTGktq3O8J9jk8WWrgs2ibnTFS7tL7xLX2M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8497,39 +8326,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11816" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "bc48d761-c401-484e-a653-0338b1585981-2020-01-16 09:45:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" + "813d6aad-34bc-4bd6-9a4f-2a89679c9b71" ], "x-ms-correlation-request-id": [ - "360cf5c2-53c6-433e-976f-837dff431fff" + "21fc53a4-9388-45f3-99ef-bf1392c0403f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094539Z:360cf5c2-53c6-433e-976f-837dff431fff" + "CENTRALUSEUAP:20210418T125318Z:21fc53a4-9388-45f3-99ef-bf1392c0403f" ], "Date": [ - "Thu, 16 Jan 2020 09:45:39 GMT" + "Sun, 18 Apr 2021 12:53:18 GMT" ], "Content-Length": [ - "3423" + "3418" ], "Content-Type": [ "application/json" @@ -8538,29 +8364,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "080a1dde-2be3-4807-82f1-1a7ecf6880fb-2020-01-16 09:45:59Z-Ps" + "293eb404-e7ef-490a-ba2f-6c8422c5af84" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164359563)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769159563)\\/\",\"ClientRequestId\":\"080a1dde-2be3-4807-82f1-1a7ecf6880fb-2020-01-16 09:45:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"USwKtRxtsWAY/uPQiiF0c+w8SaDdNRtqy3KisGOma4I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746818993)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351618993)\\/\",\"ClientRequestId\":\"d4b3e18e-436d-4216-b9f9-fbd28d56ca17-2021-04-18 12:53:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SZNFc7n9jOdM3MqDaOpkkvCxKwps4H8FKISm+BEs10I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8571,38 +8397,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" + "11814" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "080a1dde-2be3-4807-82f1-1a7ecf6880fb-2020-01-16 09:45:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "293eb404-e7ef-490a-ba2f-6c8422c5af84" ], "x-ms-correlation-request-id": [ - "85e9ef52-a6e7-4a1d-8302-2e2f77babbc0" + "7b596d9c-2491-4b37-a8ba-aa0f570f9a4c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094559Z:85e9ef52-a6e7-4a1d-8302-2e2f77babbc0" + "CENTRALUSEUAP:20210418T125339Z:7b596d9c-2491-4b37-a8ba-aa0f570f9a4c" ], "Date": [ - "Thu, 16 Jan 2020 09:45:59 GMT" + "Sun, 18 Apr 2021 12:53:39 GMT" ], "Content-Length": [ - "3423" + "3418" ], "Content-Type": [ "application/json" @@ -8611,29 +8434,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ced6365-75ec-49c5-8a29-4fa351bb78f8-2020-01-16 09:46:20Z-Ps" + "74fd45c5-041b-48c8-b78f-5f687b8f96b4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164380061)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769180061)\\/\",\"ClientRequestId\":\"6ced6365-75ec-49c5-8a29-4fa351bb78f8-2020-01-16 09:46:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UezMm0T16s/V0+6Pdddi4BNIN5TDe0BcwGcGX0XzYes=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746839400)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351639400)\\/\",\"ClientRequestId\":\"5a5b6c8b-44b1-47eb-9eff-3d375fc20d65-2021-04-18 12:53:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oDuJPuCWcxeSAsEqCfULKqksoQ8TCm0/dctfZNFI+4o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8644,38 +8467,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" + "11812" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "6ced6365-75ec-49c5-8a29-4fa351bb78f8-2020-01-16 09:46:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "74fd45c5-041b-48c8-b78f-5f687b8f96b4" ], "x-ms-correlation-request-id": [ - "003b994e-87f0-4b69-8d83-ba9586c4af12" + "2ec65401-15ec-44e9-96b8-5197d4d6e653" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094620Z:003b994e-87f0-4b69-8d83-ba9586c4af12" + "CENTRALUSEUAP:20210418T125359Z:2ec65401-15ec-44e9-96b8-5197d4d6e653" ], "Date": [ - "Thu, 16 Jan 2020 09:46:20 GMT" + "Sun, 18 Apr 2021 12:53:59 GMT" ], "Content-Length": [ - "3423" + "3418" ], "Content-Type": [ "application/json" @@ -8684,29 +8504,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a2c0e86-7abf-4418-aa04-fd9b70f109b0-2020-01-16 09:46:40Z-Ps" + "ad9b50a9-0050-4873-8bab-02e3ea8179a1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164400642)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769200642)\\/\",\"ClientRequestId\":\"6a2c0e86-7abf-4418-aa04-fd9b70f109b0-2020-01-16 09:46:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zzOr2FWBs1IgNO0Dp5/L8ul20Cyq9U+I1FVDZWAd8io=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746859795)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351659795)\\/\",\"ClientRequestId\":\"51fedfa3-1481-4cef-997e-2dfa0eba45de-2021-04-18 12:54:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0LgPD2P2hzxBSTMvy1ouVhxty+WO0FQV3QR/EjARd3Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8717,38 +8537,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" + "11810" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "6a2c0e86-7abf-4418-aa04-fd9b70f109b0-2020-01-16 09:46:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ad9b50a9-0050-4873-8bab-02e3ea8179a1" ], "x-ms-correlation-request-id": [ - "fc8bce93-4bef-4a5d-af75-a6779e4e0b0c" + "d48e524b-7919-4c1e-aca3-ba3101aec165" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094641Z:fc8bce93-4bef-4a5d-af75-a6779e4e0b0c" + "CENTRALUSEUAP:20210418T125420Z:d48e524b-7919-4c1e-aca3-ba3101aec165" ], "Date": [ - "Thu, 16 Jan 2020 09:46:40 GMT" + "Sun, 18 Apr 2021 12:54:19 GMT" ], "Content-Length": [ - "3423" + "3418" ], "Content-Type": [ "application/json" @@ -8757,29 +8574,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5206cc6-be3b-4609-8c8f-92981d32137c-2020-01-16 09:47:01Z-Ps" + "0027a6de-7173-4257-b729-fe209c8bfb30" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164421170)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769221170)\\/\",\"ClientRequestId\":\"a5206cc6-be3b-4609-8c8f-92981d32137c-2020-01-16 09:47:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AGDeVoDLUtP/jga1cMThUFGMxv1mwkrALgvP3pgBKr8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746880223)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351680223)\\/\",\"ClientRequestId\":\"0eff7731-4d80-4391-95cc-73e2caa1daac-2021-04-18 12:54:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/db6Z528NDbKVK8Wg5nZl7xfVUwL8gLU6noNc+pjnHA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8790,38 +8607,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" + "11808" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" - ], - "X-Powered-By": [ - "ASP.NET" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a5206cc6-be3b-4609-8c8f-92981d32137c-2020-01-16 09:47:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0027a6de-7173-4257-b729-fe209c8bfb30" ], "x-ms-correlation-request-id": [ - "2512608f-985e-40a3-8cc9-8a1a394e02ce" + "3d5c5dc3-40da-42d5-bc44-eb06c19622fd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094701Z:2512608f-985e-40a3-8cc9-8a1a394e02ce" + "CENTRALUSEUAP:20210418T125440Z:3d5c5dc3-40da-42d5-bc44-eb06c19622fd" ], "Date": [ - "Thu, 16 Jan 2020 09:47:00 GMT" + "Sun, 18 Apr 2021 12:54:39 GMT" ], "Content-Length": [ - "3423" + "3418" ], "Content-Type": [ "application/json" @@ -8830,29 +8644,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6d3d004-ed15-48b0-a893-6e72acec9d3a-2020-01-16 09:47:21Z-Ps" + "d2c88d98-3f3e-4bc6-ba13-271d201bfc37" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164441749)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769241749)\\/\",\"ClientRequestId\":\"d6d3d004-ed15-48b0-a893-6e72acec9d3a-2020-01-16 09:47:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KvDBTCp63zGo1sG08/e9Q/b5qWxlCqZHyjDvc4ur/0g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746900797)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351700797)\\/\",\"ClientRequestId\":\"d0cf74fb-9ed2-4528-a879-658d2b310bfe-2021-04-18 12:55:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ulXVOvJQR/NaB8kpXinsizEE83tqBhFhM5OUSh/EYOM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8862,39 +8676,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11805" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d6d3d004-ed15-48b0-a893-6e72acec9d3a-2020-01-16 09:47:21Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" + "d2c88d98-3f3e-4bc6-ba13-271d201bfc37" ], "x-ms-correlation-request-id": [ - "6b667ae9-c614-40fd-b176-f0b817c49eff" + "39ebe7ef-5690-42b7-bab4-3ca75479d7a8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094722Z:6b667ae9-c614-40fd-b176-f0b817c49eff" + "CENTRALUSEUAP:20210418T125501Z:39ebe7ef-5690-42b7-bab4-3ca75479d7a8" ], "Date": [ - "Thu, 16 Jan 2020 09:47:21 GMT" + "Sun, 18 Apr 2021 12:55:00 GMT" ], "Content-Length": [ - "3423" + "3418" ], "Content-Type": [ "application/json" @@ -8903,29 +8714,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90ed15ba-8d8c-46e0-a774-40b9db79a87b-2020-01-16 09:47:42Z-Ps" + "b5ccf6f0-3d5e-4094-9af8-8bea90d059c5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164462290)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769262290)\\/\",\"ClientRequestId\":\"90ed15ba-8d8c-46e0-a774-40b9db79a87b-2020-01-16 09:47:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"J4IzDe4Bc/ig4E3A8kgiw0/TtsG5OI6mOUugrM/ZLA8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746921205)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351721205)\\/\",\"ClientRequestId\":\"ff49a919-0ba9-4205-81da-15ebbc25679b-2021-04-18 12:55:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"G1zEeFTuCijraT4VYbEqt88tCe3bb/Ru8T479RNbkas=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8936,38 +8747,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" + "11802" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "90ed15ba-8d8c-46e0-a774-40b9db79a87b-2020-01-16 09:47:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b5ccf6f0-3d5e-4094-9af8-8bea90d059c5" ], "x-ms-correlation-request-id": [ - "3bb71867-e89b-4dc6-9e1a-1bc742e35016" + "e7df7373-fd0a-45e5-a955-1f0f7ffe8184" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094743Z:3bb71867-e89b-4dc6-9e1a-1bc742e35016" + "CENTRALUSEUAP:20210418T125521Z:e7df7373-fd0a-45e5-a955-1f0f7ffe8184" ], "Date": [ - "Thu, 16 Jan 2020 09:47:43 GMT" + "Sun, 18 Apr 2021 12:55:21 GMT" ], "Content-Length": [ - "3423" + "3418" ], "Content-Type": [ "application/json" @@ -8976,29 +8784,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7ea4d3d-7c7b-4478-9553-6aee74cdf065-2020-01-16 09:48:03Z-Ps" + "37a7424d-277e-4acd-82b4-87a090c58f54" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164483967)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769283967)\\/\",\"ClientRequestId\":\"b7ea4d3d-7c7b-4478-9553-6aee74cdf065-2020-01-16 09:48:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qoSpyByt+2TSW1mgPionxdP77kyNE5sjXADlFt3Evyo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746941619)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351741619)\\/\",\"ClientRequestId\":\"9e7bf406-edea-4eaf-9221-439ed55ac04f-2021-04-18 12:55:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Dux5l5uoK75I6EtM48GVN3IPRwj3bfpuRVGe64YahD8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9009,38 +8817,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" + "11799" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b7ea4d3d-7c7b-4478-9553-6aee74cdf065-2020-01-16 09:48:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "37a7424d-277e-4acd-82b4-87a090c58f54" ], "x-ms-correlation-request-id": [ - "8404d47d-9785-442c-a5e3-a14d7fb6171e" + "5dc3d92d-b89d-4b89-b05f-8c3083ab0ed7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094804Z:8404d47d-9785-442c-a5e3-a14d7fb6171e" + "CENTRALUSEUAP:20210418T125541Z:5dc3d92d-b89d-4b89-b05f-8c3083ab0ed7" ], "Date": [ - "Thu, 16 Jan 2020 09:48:03 GMT" + "Sun, 18 Apr 2021 12:55:41 GMT" ], "Content-Length": [ - "3423" + "3418" ], "Content-Type": [ "application/json" @@ -9049,29 +8854,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df30a56d-ef27-4a71-855d-1ff4798a2b3e-2020-01-16 09:48:24Z-Ps" + "e113bd7c-a232-4f1d-85ec-23d77e34ef82" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164504529)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769304529)\\/\",\"ClientRequestId\":\"df30a56d-ef27-4a71-855d-1ff4798a2b3e-2020-01-16 09:48:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zhARehpPqi9VhcQgOXkyCqUlcb+/A7lW82QARRUMtkY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746962042)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351762042)\\/\",\"ClientRequestId\":\"67f8a626-7b8c-4b17-abd5-69af4cc09707-2021-04-18 12:56:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xMZgatsWJAI6dpJWftiYqmskenCBg3N38PC8WZBTIRI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9082,38 +8887,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" + "11796" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "df30a56d-ef27-4a71-855d-1ff4798a2b3e-2020-01-16 09:48:24Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e113bd7c-a232-4f1d-85ec-23d77e34ef82" ], "x-ms-correlation-request-id": [ - "f8de72ea-cfdf-43eb-b365-550df667b8ec" + "3c01563e-f41b-4522-8d1c-e664e3bd6f7b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094825Z:f8de72ea-cfdf-43eb-b365-550df667b8ec" + "CENTRALUSEUAP:20210418T125602Z:3c01563e-f41b-4522-8d1c-e664e3bd6f7b" ], "Date": [ - "Thu, 16 Jan 2020 09:48:24 GMT" + "Sun, 18 Apr 2021 12:56:01 GMT" ], "Content-Length": [ - "3423" + "3418" ], "Content-Type": [ "application/json" @@ -9122,29 +8924,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2250923-b017-46fc-befc-8a37fbc7f04f-2020-01-16 09:48:45Z-Ps" + "74291140-4566-4dbf-a99b-745689d10963" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164525274)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769325274)\\/\",\"ClientRequestId\":\"b2250923-b017-46fc-befc-8a37fbc7f04f-2020-01-16 09:48:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RZ5ha4HnAkIe8U0QmkgoB1Q75pdOm9yy+AHHlywLR84=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618746982451)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351782451)\\/\",\"ClientRequestId\":\"d040583f-35bf-4ef7-b9d8-892d1167e90c-2021-04-18 12:56:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ucfSb2kOvcjm2WPQFx4ks9OxNU4h+bfPbe1+4YkYRD4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9155,38 +8957,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11876" + "11793" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b2250923-b017-46fc-befc-8a37fbc7f04f-2020-01-16 09:48:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "74291140-4566-4dbf-a99b-745689d10963" ], "x-ms-correlation-request-id": [ - "09822ccb-7111-45fd-9c6b-86926e2abbf2" + "66f4efca-c5a2-4dad-942b-274fb7b46047" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094845Z:09822ccb-7111-45fd-9c6b-86926e2abbf2" + "CENTRALUSEUAP:20210418T125622Z:66f4efca-c5a2-4dad-942b-274fb7b46047" ], "Date": [ - "Thu, 16 Jan 2020 09:48:45 GMT" + "Sun, 18 Apr 2021 12:56:22 GMT" ], "Content-Length": [ - "3423" + "3418" ], "Content-Type": [ "application/json" @@ -9195,29 +8994,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvNzA3NzBiMzctOGMyNi00NWJmLWJlODAtZjlhNDNiODU1Zjk0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy8zNDQ5OThlZC1kYjc2LTQ3OTMtOGJkNC0xMzc4ZWI4ZTY0NTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ef957a4-c423-4211-a198-60c921bdaf2c-2020-01-16 09:49:05Z-Ps" + "e3aa0981-49a5-405c-b5e9-f6211e60be81" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164545788)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769345788)\\/\",\"ClientRequestId\":\"4ef957a4-c423-4211-a198-60c921bdaf2c-2020-01-16 09:49:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5Y+vUNEHjuZR1IVoIiT1LbPZbl7OfzS1j2ASHqDCf8o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747002848)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351802848)\\/\",\"ClientRequestId\":\"12440c96-01fc-4669-aae2-88b6f7ce4e61-2021-04-18 12:56:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"R1uncgoZslOw3Pp2kmomIg4Q3Ryr5Qur/+TWIw18O7Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9227,39 +9026,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11790" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "4ef957a4-c423-4211-a198-60c921bdaf2c-2020-01-16 09:49:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" + "e3aa0981-49a5-405c-b5e9-f6211e60be81" ], "x-ms-correlation-request-id": [ - "4cb1da88-9065-4bda-ba4d-656c15d91f9e" + "52fcafb3-e3b8-4392-b4dc-7c09c8b0eb8d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094906Z:4cb1da88-9065-4bda-ba4d-656c15d91f9e" + "CENTRALUSEUAP:20210418T125643Z:52fcafb3-e3b8-4392-b4dc-7c09c8b0eb8d" ], "Date": [ - "Thu, 16 Jan 2020 09:49:05 GMT" + "Sun, 18 Apr 2021 12:56:43 GMT" ], "Content-Length": [ - "3467" + "3464" ], "Content-Type": [ "application/json" @@ -9268,29 +9064,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-16T09:35:35.7296802Z\",\r\n \"endTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-01-16T09:35:47.5985877Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-01-16T09:45:20.3340143Z\",\r\n \"endTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-01-16T09:45:20.50588Z\",\r\n \"endTime\": \"2020-01-16T09:48:54.490784Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2020-01-16T09:48:54.490784Z\",\r\n \"endTime\": \"2020-01-16T09:48:54.6314528Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T12:42:44.6823432Z\",\r\n \"endTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T12:43:25.6975402Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T12:52:24.0821095Z\",\r\n \"endTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T12:52:24.2171107Z\",\r\n \"endTime\": \"2021-04-18T12:56:27.6079863Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2021-04-18T12:56:27.6079863Z\",\r\n \"endTime\": \"2021-04-18T12:56:27.6979861Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09ffccdc-3699-46c5-a277-7c5908aa2028-2020-01-16 09:49:06Z-Ps" + "ca2ddc7c-6350-4b90-bcb1-fc61b3e53941" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164546285)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769346285)\\/\",\"ClientRequestId\":\"09ffccdc-3699-46c5-a277-7c5908aa2028-2020-01-16 09:49:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"A+A30tauQPPheCaBXKaBD+ELMYsYa5DGBbYjT9kZFjE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747003299)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351803299)\\/\",\"ClientRequestId\":\"dc5a8eda-3620-4089-82a9-1e1fcbf8dc65-2021-04-18 12:56:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ed/qLO6UliCPIE8qGu6Pjw0hgdQO7CZbY0e1PW7FQqI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9301,38 +9097,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" + "11789" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "633fa2e0-699a-4c18-926b-b5b011f816ec" + "75979d77-37c8-4353-90b1-dc5439ddb6ea" ], "x-ms-client-request-id": [ - "09ffccdc-3699-46c5-a277-7c5908aa2028-2020-01-16 09:49:06Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ca2ddc7c-6350-4b90-bcb1-fc61b3e53941" ], "x-ms-correlation-request-id": [ - "633fa2e0-699a-4c18-926b-b5b011f816ec" + "75979d77-37c8-4353-90b1-dc5439ddb6ea" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094907Z:633fa2e0-699a-4c18-926b-b5b011f816ec" + "CENTRALUSEUAP:20210418T125643Z:75979d77-37c8-4353-90b1-dc5439ddb6ea" ], "Date": [ - "Thu, 16 Jan 2020 09:49:07 GMT" + "Sun, 18 Apr 2021 12:56:43 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -9341,29 +9134,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fc8baa7-52c9-4657-a781-d1ee672933de-2020-01-16 09:49:17Z-Ps" + "3b789966-2fe2-4bd0-ac81-9f06ac829d28" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164557883)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769357883)\\/\",\"ClientRequestId\":\"8fc8baa7-52c9-4657-a781-d1ee672933de-2020-01-16 09:49:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GfrzFqntJQNRV68GTMQAM8H9+CgWZ1brx3+lOTG+qxY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747013725)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351813725)\\/\",\"ClientRequestId\":\"d99078b1-2e0b-4414-b363-32aa8029518b-2021-04-18 12:56:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PaUeqtLx9YD1vSc6IfPVPEfNMXFukaEWWV4uS93AWCM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9374,38 +9167,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" + "11787" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "52611fc5-f01f-4827-ad2e-a4d3fd187d70" + "9afad7db-3b25-42ee-99e9-cebc2e154e48" ], "x-ms-client-request-id": [ - "8fc8baa7-52c9-4657-a781-d1ee672933de-2020-01-16 09:49:17Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3b789966-2fe2-4bd0-ac81-9f06ac829d28" ], "x-ms-correlation-request-id": [ - "52611fc5-f01f-4827-ad2e-a4d3fd187d70" + "9afad7db-3b25-42ee-99e9-cebc2e154e48" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094918Z:52611fc5-f01f-4827-ad2e-a4d3fd187d70" + "CENTRALUSEUAP:20210418T125653Z:9afad7db-3b25-42ee-99e9-cebc2e154e48" ], "Date": [ - "Thu, 16 Jan 2020 09:49:17 GMT" + "Sun, 18 Apr 2021 12:56:53 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -9414,29 +9204,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56938d62-12d8-44da-a1e8-cb2b50f0edcc-2020-01-16 09:49:28Z-Ps" + "ac1a6fad-7b60-4ebf-a477-0d5ead675a11" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164568409)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769368409)\\/\",\"ClientRequestId\":\"56938d62-12d8-44da-a1e8-cb2b50f0edcc-2020-01-16 09:49:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"spmUI49qAOZh3JSzzS713ejS8aP9XSzgKobjhUsHLsk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747024130)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351824130)\\/\",\"ClientRequestId\":\"4dc66004-b0e6-4893-b5c8-b1375ad2b155-2021-04-18 12:57:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"m0+CKMS9w5N71DAeG8t0KMrrP4h59DPxOH7cLRXWl3E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9447,38 +9237,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11872" + "11785" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "96332cf2-f2dc-47dc-a636-1e5548ea8a4d" + "1a3693e9-1828-4a96-88bb-f61e0466ccd9" ], "x-ms-client-request-id": [ - "56938d62-12d8-44da-a1e8-cb2b50f0edcc-2020-01-16 09:49:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ac1a6fad-7b60-4ebf-a477-0d5ead675a11" ], "x-ms-correlation-request-id": [ - "96332cf2-f2dc-47dc-a636-1e5548ea8a4d" + "1a3693e9-1828-4a96-88bb-f61e0466ccd9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094928Z:96332cf2-f2dc-47dc-a636-1e5548ea8a4d" + "CENTRALUSEUAP:20210418T125704Z:1a3693e9-1828-4a96-88bb-f61e0466ccd9" ], "Date": [ - "Thu, 16 Jan 2020 09:49:27 GMT" + "Sun, 18 Apr 2021 12:57:03 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -9487,29 +9274,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96de78ca-3918-4ee6-bf60-b902721d9c72-2020-01-16 09:49:38Z-Ps" + "314add87-a661-428a-8935-b75f6427cc7f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164578864)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769378864)\\/\",\"ClientRequestId\":\"96de78ca-3918-4ee6-bf60-b902721d9c72-2020-01-16 09:49:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eeAwky+jiOe+bw7I2QyJgh+Kp0hFJaIHKroZLzzM0ho=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747034544)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351834544)\\/\",\"ClientRequestId\":\"7b46126b-6189-4b78-b4f5-391b24df1a50-2021-04-18 12:57:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FaEcRi+6j0KRiAY5VlJbRS+CR/NxbJSWXjQDWOMxf2Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9520,38 +9307,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" + "11783" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f1f670b9-375b-4b60-836b-a486b8900b52" + "75edd452-242d-4f35-9090-b92c0cf71a2a" ], "x-ms-client-request-id": [ - "96de78ca-3918-4ee6-bf60-b902721d9c72-2020-01-16 09:49:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "314add87-a661-428a-8935-b75f6427cc7f" ], "x-ms-correlation-request-id": [ - "f1f670b9-375b-4b60-836b-a486b8900b52" + "75edd452-242d-4f35-9090-b92c0cf71a2a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094939Z:f1f670b9-375b-4b60-836b-a486b8900b52" + "CENTRALUSEUAP:20210418T125714Z:75edd452-242d-4f35-9090-b92c0cf71a2a" ], "Date": [ - "Thu, 16 Jan 2020 09:49:38 GMT" + "Sun, 18 Apr 2021 12:57:14 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -9560,29 +9344,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75255dcc-f0f7-4e78-9550-1eefae436c2e-2020-01-16 09:49:49Z-Ps" + "76c3dc1d-4ed3-48ae-85d8-7927272f5cd2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164589313)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769389313)\\/\",\"ClientRequestId\":\"75255dcc-f0f7-4e78-9550-1eefae436c2e-2020-01-16 09:49:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pE4YQm9RlGZuqx8Mq3e0iPnUsQ1m0JWUJBA0EU6pP78=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747044924)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351844924)\\/\",\"ClientRequestId\":\"1bb4bd7c-9405-4c38-9eb5-fcfe862edf68-2021-04-18 12:57:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HpQ4qYM3oD8X8ez/usCvSbp4ZRw7PtthyGW1wKwBIRI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9593,38 +9377,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11870" + "11781" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "68d0abdd-c045-4a25-96c9-b4896dd2c216" + "a2fd008d-b90f-443f-85a1-7c6874710bcd" ], "x-ms-client-request-id": [ - "75255dcc-f0f7-4e78-9550-1eefae436c2e-2020-01-16 09:49:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "76c3dc1d-4ed3-48ae-85d8-7927272f5cd2" ], "x-ms-correlation-request-id": [ - "68d0abdd-c045-4a25-96c9-b4896dd2c216" + "a2fd008d-b90f-443f-85a1-7c6874710bcd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T094949Z:68d0abdd-c045-4a25-96c9-b4896dd2c216" + "CENTRALUSEUAP:20210418T125725Z:a2fd008d-b90f-443f-85a1-7c6874710bcd" ], "Date": [ - "Thu, 16 Jan 2020 09:49:48 GMT" + "Sun, 18 Apr 2021 12:57:25 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -9633,29 +9414,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "262af97f-59b8-4725-88b9-2e84cee65bb0-2020-01-16 09:49:59Z-Ps" + "59f9720a-4cd5-4a85-b47a-3fea74203047" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164599737)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769399737)\\/\",\"ClientRequestId\":\"262af97f-59b8-4725-88b9-2e84cee65bb0-2020-01-16 09:49:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/8cFZ6lkRw76TEbOdkpKKvwwTmdGhWg6Tv3BSwEUvJE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747055295)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351855295)\\/\",\"ClientRequestId\":\"ce8002fd-cbce-47ae-a983-a7b9df6b19f6-2021-04-18 12:57:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lkLZTgpj7xUgdyx5PMcWSS7ofDH+dSSs5uK5a+nGoX4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9666,38 +9447,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" + "11779" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "13e19f35-9beb-475f-94f3-2ce7004ad248" + "4deb2461-a58f-4133-a523-3fe01f0187a9" ], "x-ms-client-request-id": [ - "262af97f-59b8-4725-88b9-2e84cee65bb0-2020-01-16 09:49:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "59f9720a-4cd5-4a85-b47a-3fea74203047" ], "x-ms-correlation-request-id": [ - "13e19f35-9beb-475f-94f3-2ce7004ad248" + "4deb2461-a58f-4133-a523-3fe01f0187a9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095000Z:13e19f35-9beb-475f-94f3-2ce7004ad248" + "CENTRALUSEUAP:20210418T125735Z:4deb2461-a58f-4133-a523-3fe01f0187a9" ], "Date": [ - "Thu, 16 Jan 2020 09:49:59 GMT" + "Sun, 18 Apr 2021 12:57:35 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -9706,29 +9484,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aeee364e-6fb3-4abe-ae3b-6c6637636ea7-2020-01-16 09:50:10Z-Ps" + "c3dd5d29-8e27-491b-960e-8e515df8b4bb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164610181)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769410181)\\/\",\"ClientRequestId\":\"aeee364e-6fb3-4abe-ae3b-6c6637636ea7-2020-01-16 09:50:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+8hU8sj7yRAYO8JwLWAflMc1l0WWjKM79ddNhlFZ+HY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747065679)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351865679)\\/\",\"ClientRequestId\":\"4fc90945-8de4-469b-9c2c-a61904b4a377-2021-04-18 12:57:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5nB+j7DgdT9LSlrleoaElcmssCwgKps2UlgOYjCUMOk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9739,38 +9517,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" + "11777" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1f675f35-7b4f-473c-81f8-2f78803d06ac" + "9a7d437d-cff7-421d-9ec2-00697255d6b9" ], "x-ms-client-request-id": [ - "aeee364e-6fb3-4abe-ae3b-6c6637636ea7-2020-01-16 09:50:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c3dd5d29-8e27-491b-960e-8e515df8b4bb" ], "x-ms-correlation-request-id": [ - "1f675f35-7b4f-473c-81f8-2f78803d06ac" + "9a7d437d-cff7-421d-9ec2-00697255d6b9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095010Z:1f675f35-7b4f-473c-81f8-2f78803d06ac" + "CENTRALUSEUAP:20210418T125745Z:9a7d437d-cff7-421d-9ec2-00697255d6b9" ], "Date": [ - "Thu, 16 Jan 2020 09:50:10 GMT" + "Sun, 18 Apr 2021 12:57:45 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -9779,29 +9554,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "321d2a5e-d135-4842-9056-7cbee55a54d1-2020-01-16 09:50:20Z-Ps" + "3684e395-fbcb-4e36-8b8e-01992b8900ac" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164620679)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769420679)\\/\",\"ClientRequestId\":\"321d2a5e-d135-4842-9056-7cbee55a54d1-2020-01-16 09:50:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"usK5E9eogMtVNlHrajhrzLiIGMtnv1lsfwJYJwhubw8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747076143)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351876143)\\/\",\"ClientRequestId\":\"25c35ad6-112f-4a63-9e38-f242dbe81b33-2021-04-18 12:57:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Fv0S+5hv/VHCyWpIXI2274g2rbGRwzIpYuWyA/bJ4qA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9812,38 +9587,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" + "11775" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5abeb44a-466e-47cb-8b30-8a7a329c8423" + "b1c0f0a0-84e1-478b-a389-cf96a9b4d933" ], "x-ms-client-request-id": [ - "321d2a5e-d135-4842-9056-7cbee55a54d1-2020-01-16 09:50:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3684e395-fbcb-4e36-8b8e-01992b8900ac" ], "x-ms-correlation-request-id": [ - "5abeb44a-466e-47cb-8b30-8a7a329c8423" + "b1c0f0a0-84e1-478b-a389-cf96a9b4d933" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095021Z:5abeb44a-466e-47cb-8b30-8a7a329c8423" + "CENTRALUSEUAP:20210418T125756Z:b1c0f0a0-84e1-478b-a389-cf96a9b4d933" ], "Date": [ - "Thu, 16 Jan 2020 09:50:20 GMT" + "Sun, 18 Apr 2021 12:57:56 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -9852,29 +9624,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6e6faf6-d1bf-406f-ac99-83877648cea8-2020-01-16 09:50:31Z-Ps" + "c6f0157c-4d95-4ecf-82be-32c85d1edff8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164631146)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769431146)\\/\",\"ClientRequestId\":\"a6e6faf6-d1bf-406f-ac99-83877648cea8-2020-01-16 09:50:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+CCeOkVUPWiAFXGqu0SVNCIBDrd9Rp5RrQ0UGndbd7I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747086503)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351886503)\\/\",\"ClientRequestId\":\"a360465d-cd6c-4d50-b4f5-6e99a67f1be6-2021-04-18 12:58:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EiJxVHLTNKICScThg0PtXycT2YZayi9Cu71T9UoQ1CM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9884,39 +9656,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11773" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "cfe25823-6de8-4fde-8ed6-eac8b6756978" + "b1263313-9fd5-49b2-b086-372584bcd538" ], "x-ms-client-request-id": [ - "a6e6faf6-d1bf-406f-ac99-83877648cea8-2020-01-16 09:50:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11872" + "c6f0157c-4d95-4ecf-82be-32c85d1edff8" ], "x-ms-correlation-request-id": [ - "cfe25823-6de8-4fde-8ed6-eac8b6756978" + "b1263313-9fd5-49b2-b086-372584bcd538" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095031Z:cfe25823-6de8-4fde-8ed6-eac8b6756978" + "CENTRALUSEUAP:20210418T125806Z:b1263313-9fd5-49b2-b086-372584bcd538" ], "Date": [ - "Thu, 16 Jan 2020 09:50:31 GMT" + "Sun, 18 Apr 2021 12:58:06 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -9925,29 +9694,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa3f88f6-57e8-4d01-8ae0-f7c6592dfb46-2020-01-16 09:50:41Z-Ps" + "cb332172-f089-437c-9cac-7c233e8fd649" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164641606)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769441606)\\/\",\"ClientRequestId\":\"fa3f88f6-57e8-4d01-8ae0-f7c6592dfb46-2020-01-16 09:50:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xVLLPDBPnk6Db9vPmnI1Bawe8rmi3LNp2CmbnZoksnE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747096877)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351896877)\\/\",\"ClientRequestId\":\"0bc40104-9571-47ba-a348-f283c63dab2b-2021-04-18 12:58:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QBhurJ+w4gUaYLhg9QnZEYOeGdanbRcyVmZEMXoYk2M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9958,38 +9727,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" + "11771" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "04033761-73f7-4870-8601-523a32e03228" + "cc28a9a2-ba52-442f-9bd4-9434d2571ce6" ], "x-ms-client-request-id": [ - "fa3f88f6-57e8-4d01-8ae0-f7c6592dfb46-2020-01-16 09:50:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cb332172-f089-437c-9cac-7c233e8fd649" ], "x-ms-correlation-request-id": [ - "04033761-73f7-4870-8601-523a32e03228" + "cc28a9a2-ba52-442f-9bd4-9434d2571ce6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095043Z:04033761-73f7-4870-8601-523a32e03228" + "CENTRALUSEUAP:20210418T125817Z:cc28a9a2-ba52-442f-9bd4-9434d2571ce6" ], "Date": [ - "Thu, 16 Jan 2020 09:50:42 GMT" + "Sun, 18 Apr 2021 12:58:17 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -9998,29 +9764,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04b5879e-6c1c-40f2-abf4-9fcc9a9109d1-2020-01-16 09:50:53Z-Ps" + "e7f17d87-cd74-4ad0-8511-bf96a351578f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164653263)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769453263)\\/\",\"ClientRequestId\":\"04b5879e-6c1c-40f2-abf4-9fcc9a9109d1-2020-01-16 09:50:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rtIWJIb+H/qMm1LrORaeAf2wI7oCN/A3VPPvirxdDhk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747107227)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351907227)\\/\",\"ClientRequestId\":\"527879ce-e2eb-4d72-84ce-6366fb471c32-2021-04-18 12:58:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OSPTWJCckTR2WytT4LPnytt4kuhp0o5YLUsd0TYw5KQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10031,38 +9797,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11870" + "11769" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "89bcde18-cee8-489a-9537-c4dd45082a25" + "1dba5362-4220-4638-8929-22d006e08476" ], "x-ms-client-request-id": [ - "04b5879e-6c1c-40f2-abf4-9fcc9a9109d1-2020-01-16 09:50:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e7f17d87-cd74-4ad0-8511-bf96a351578f" ], "x-ms-correlation-request-id": [ - "89bcde18-cee8-489a-9537-c4dd45082a25" + "1dba5362-4220-4638-8929-22d006e08476" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095053Z:89bcde18-cee8-489a-9537-c4dd45082a25" + "CENTRALUSEUAP:20210418T125827Z:1dba5362-4220-4638-8929-22d006e08476" ], "Date": [ - "Thu, 16 Jan 2020 09:50:53 GMT" + "Sun, 18 Apr 2021 12:58:27 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -10071,29 +9834,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "903ca2f6-a45f-4d81-8429-81d50f6eaef9-2020-01-16 09:51:03Z-Ps" + "e0e4bd49-21e0-4149-bb8d-5498b87960cb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164663716)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769463716)\\/\",\"ClientRequestId\":\"903ca2f6-a45f-4d81-8429-81d50f6eaef9-2020-01-16 09:51:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7MN+o/emNcPpYT/bOiglAMG7vPVJTXU8eM5Lm0NjTAQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747117596)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351917596)\\/\",\"ClientRequestId\":\"d7fa98e9-7c66-4c9f-b34a-d03654499195-2021-04-18 12:58:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5gJGUoGOfliSr5w4XzLIBlrRJkX9V52Y7HqbdtllXqk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10104,38 +9867,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11869" + "11767" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6d6d6f2a-4ac9-4aa2-8a40-8cb82d8afb9f" + "fb9eaeae-5fdd-492c-ab09-f0f393463dfc" ], "x-ms-client-request-id": [ - "903ca2f6-a45f-4d81-8429-81d50f6eaef9-2020-01-16 09:51:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e0e4bd49-21e0-4149-bb8d-5498b87960cb" ], "x-ms-correlation-request-id": [ - "6d6d6f2a-4ac9-4aa2-8a40-8cb82d8afb9f" + "fb9eaeae-5fdd-492c-ab09-f0f393463dfc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095105Z:6d6d6f2a-4ac9-4aa2-8a40-8cb82d8afb9f" + "CENTRALUSEUAP:20210418T125837Z:fb9eaeae-5fdd-492c-ab09-f0f393463dfc" ], "Date": [ - "Thu, 16 Jan 2020 09:51:04 GMT" + "Sun, 18 Apr 2021 12:58:36 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -10144,29 +9904,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e5f94c0-4ade-47bf-80a8-a464fb057ba9-2020-01-16 09:51:15Z-Ps" + "0d9886ab-c2dc-4474-bdbb-341c2a3ade73" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164675401)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769475401)\\/\",\"ClientRequestId\":\"0e5f94c0-4ade-47bf-80a8-a464fb057ba9-2020-01-16 09:51:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6n/9cHJQ1OoKt/zsk2ZWS/cdXxfwN8dHqX5bd1RUZX8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747127961)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351927961)\\/\",\"ClientRequestId\":\"94526ad8-dfa7-4c95-bbda-06a0ccb1e9bf-2021-04-18 12:58:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rWbj9ID5Tqn/6ET+FX9lkP+4V+ym7QT9xn15dUK1GJI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10177,38 +9937,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11867" + "11765" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8d01d1f0-7044-47b4-af59-5e5bec2eb0dd" + "3e081f5c-84e6-4dcb-b30d-e3bd530d36eb" ], "x-ms-client-request-id": [ - "0e5f94c0-4ade-47bf-80a8-a464fb057ba9-2020-01-16 09:51:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0d9886ab-c2dc-4474-bdbb-341c2a3ade73" ], "x-ms-correlation-request-id": [ - "8d01d1f0-7044-47b4-af59-5e5bec2eb0dd" + "3e081f5c-84e6-4dcb-b30d-e3bd530d36eb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095115Z:8d01d1f0-7044-47b4-af59-5e5bec2eb0dd" + "CENTRALUSEUAP:20210418T125848Z:3e081f5c-84e6-4dcb-b30d-e3bd530d36eb" ], "Date": [ - "Thu, 16 Jan 2020 09:51:14 GMT" + "Sun, 18 Apr 2021 12:58:48 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -10217,29 +9974,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88a61d44-b946-4e51-be20-9f4f1b73bac1-2020-01-16 09:51:25Z-Ps" + "f17ca360-8d32-4fbf-aa69-a967ed1c8f0e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164685898)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769485898)\\/\",\"ClientRequestId\":\"88a61d44-b946-4e51-be20-9f4f1b73bac1-2020-01-16 09:51:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LJd5nZO2BNuJ0nz6sa4N+gyHhlYNCB2lemSMO4RxK6I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747138348)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351938348)\\/\",\"ClientRequestId\":\"b80b3898-c763-4999-aaef-1d79f12b4536-2021-04-18 12:58:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7xC2mM8kyl8B24Ey3uwyrrqOvqujzVuGEaonZ7lD8lA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10250,38 +10007,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11866" + "11763" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f42acc10-1c2c-4569-bb08-21ec80546764" + "9744b0bb-7b8d-4464-81e7-d4d96541f246" ], "x-ms-client-request-id": [ - "88a61d44-b946-4e51-be20-9f4f1b73bac1-2020-01-16 09:51:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f17ca360-8d32-4fbf-aa69-a967ed1c8f0e" ], "x-ms-correlation-request-id": [ - "f42acc10-1c2c-4569-bb08-21ec80546764" + "9744b0bb-7b8d-4464-81e7-d4d96541f246" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095126Z:f42acc10-1c2c-4569-bb08-21ec80546764" + "CENTRALUSEUAP:20210418T125858Z:9744b0bb-7b8d-4464-81e7-d4d96541f246" ], "Date": [ - "Thu, 16 Jan 2020 09:51:26 GMT" + "Sun, 18 Apr 2021 12:58:58 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -10290,29 +10044,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0140d8a1-5232-4250-806c-5604be952a40-2020-01-16 09:51:36Z-Ps" + "28ddf8c8-f917-4e86-b096-8f04af8350c5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164696322)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769496322)\\/\",\"ClientRequestId\":\"0140d8a1-5232-4250-806c-5604be952a40-2020-01-16 09:51:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iSBzU+ftqnOHSEuOB2/Ylbchc9P8RozJZg3uVSFcCzA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747148718)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351948718)\\/\",\"ClientRequestId\":\"9eda719c-ef13-4e18-a015-a67b1b61d21a-2021-04-18 12:59:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"h9BkXGBiLCuyGIY2J1Z+yBaW6wCbl0Bsq4XxOUGlt0w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10323,38 +10077,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" + "11761" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "236c6f8f-cfd6-413d-91eb-87f9a62ae894" + "5ac16b3e-a7be-47ef-bbaa-b11c27d67aff" ], "x-ms-client-request-id": [ - "0140d8a1-5232-4250-806c-5604be952a40-2020-01-16 09:51:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "28ddf8c8-f917-4e86-b096-8f04af8350c5" ], "x-ms-correlation-request-id": [ - "236c6f8f-cfd6-413d-91eb-87f9a62ae894" + "5ac16b3e-a7be-47ef-bbaa-b11c27d67aff" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095136Z:236c6f8f-cfd6-413d-91eb-87f9a62ae894" + "CENTRALUSEUAP:20210418T125908Z:5ac16b3e-a7be-47ef-bbaa-b11c27d67aff" ], "Date": [ - "Thu, 16 Jan 2020 09:51:36 GMT" + "Sun, 18 Apr 2021 12:59:08 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -10363,29 +10114,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc3f9022-dd52-47ab-b6b9-693e36191ad6-2020-01-16 09:51:46Z-Ps" + "0e0b0061-b669-404e-a518-cedfb9153614" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164706838)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769506838)\\/\",\"ClientRequestId\":\"fc3f9022-dd52-47ab-b6b9-693e36191ad6-2020-01-16 09:51:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VfSMNpEzB8zBXi6T/Ikivh0ZUEbyFWvqcb4qB2x5aZg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747159081)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351959081)\\/\",\"ClientRequestId\":\"a70cd30b-3e07-4254-b974-24691e8d802c-2021-04-18 12:59:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DDpBVWEDjUVK2oi089/sepVW7HMaoY5YCV5M7t1lOYs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10396,38 +10147,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11864" + "11759" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "09271ab8-0377-4cd9-a9d9-bd841a5960f6" + "187efe79-7cdd-4ef5-98d9-dc764f8a4fba" ], "x-ms-client-request-id": [ - "fc3f9022-dd52-47ab-b6b9-693e36191ad6-2020-01-16 09:51:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0e0b0061-b669-404e-a518-cedfb9153614" ], "x-ms-correlation-request-id": [ - "09271ab8-0377-4cd9-a9d9-bd841a5960f6" + "187efe79-7cdd-4ef5-98d9-dc764f8a4fba" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095147Z:09271ab8-0377-4cd9-a9d9-bd841a5960f6" + "CENTRALUSEUAP:20210418T125919Z:187efe79-7cdd-4ef5-98d9-dc764f8a4fba" ], "Date": [ - "Thu, 16 Jan 2020 09:51:46 GMT" + "Sun, 18 Apr 2021 12:59:19 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -10436,29 +10184,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c42ea24f-12fa-412a-8227-cb0fc9b546ef-2020-01-16 09:51:57Z-Ps" + "a41524f4-ba83-405c-a8c9-d03f8339c3ad" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164717269)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769517269)\\/\",\"ClientRequestId\":\"c42ea24f-12fa-412a-8227-cb0fc9b546ef-2020-01-16 09:51:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EiOnoxQxzM8sEmsnNQUBxCmmEohBsovEiug/vpTrZfo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747169435)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351969435)\\/\",\"ClientRequestId\":\"0a9ee95a-5d8f-4cd1-bda9-a776b9078f1d-2021-04-18 12:59:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jIuv2ntwkc53SgaR/20MXoXKD3wCNNwBsd4Ul/j5w38=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10469,38 +10217,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11863" + "11757" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b5bc1edc-c575-4f46-a430-5dda44f5b142" + "f78ea920-8645-4b01-b0e4-8a0b2b876e0c" ], "x-ms-client-request-id": [ - "c42ea24f-12fa-412a-8227-cb0fc9b546ef-2020-01-16 09:51:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a41524f4-ba83-405c-a8c9-d03f8339c3ad" ], "x-ms-correlation-request-id": [ - "b5bc1edc-c575-4f46-a430-5dda44f5b142" + "f78ea920-8645-4b01-b0e4-8a0b2b876e0c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095157Z:b5bc1edc-c575-4f46-a430-5dda44f5b142" + "CENTRALUSEUAP:20210418T125929Z:f78ea920-8645-4b01-b0e4-8a0b2b876e0c" ], "Date": [ - "Thu, 16 Jan 2020 09:51:57 GMT" + "Sun, 18 Apr 2021 12:59:29 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -10509,29 +10254,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0deca7f8-2636-469e-9327-3a3e664ed2e9-2020-01-16 09:52:07Z-Ps" + "be38490a-1394-4b54-b31f-59b964eb740d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164727726)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769527726)\\/\",\"ClientRequestId\":\"0deca7f8-2636-469e-9327-3a3e664ed2e9-2020-01-16 09:52:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TrU8iIBXct3daqXOo71TVZ/cyq19q21Vn3Ch2/tizdc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747179801)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351979801)\\/\",\"ClientRequestId\":\"fd7e3c1b-98fc-4f0d-b365-d8590bfce80a-2021-04-18 12:59:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FVJY64VHUqvc/YH2dL2t0eGcSPllXjUWjZQ0wxHqOLs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10542,38 +10287,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11861" + "11755" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c704913e-187a-44e1-b97b-b89cc38cf586" + "fde90f48-1dd2-4a70-8324-f842a2c2a11a" ], "x-ms-client-request-id": [ - "0deca7f8-2636-469e-9327-3a3e664ed2e9-2020-01-16 09:52:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "be38490a-1394-4b54-b31f-59b964eb740d" ], "x-ms-correlation-request-id": [ - "c704913e-187a-44e1-b97b-b89cc38cf586" + "fde90f48-1dd2-4a70-8324-f842a2c2a11a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095208Z:c704913e-187a-44e1-b97b-b89cc38cf586" + "CENTRALUSEUAP:20210418T125939Z:fde90f48-1dd2-4a70-8324-f842a2c2a11a" ], "Date": [ - "Thu, 16 Jan 2020 09:52:07 GMT" + "Sun, 18 Apr 2021 12:59:39 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -10582,29 +10324,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28116898-0141-456b-b9d9-7d74fd4935c8-2020-01-16 09:52:18Z-Ps" + "9f25008d-db26-484a-9044-6c72ee557462" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164738186)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769538186)\\/\",\"ClientRequestId\":\"28116898-0141-456b-b9d9-7d74fd4935c8-2020-01-16 09:52:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ljbAN1iYUEkKro8OUlfoW7o3O2R2MqR3HPRI/geBKro=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747190166)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619351990166)\\/\",\"ClientRequestId\":\"636a8fed-e0eb-49cc-9c01-f86c7ad82e8a-2021-04-18 12:59:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GmDE82x1VbqXW/EI3REehBM8rLzPRyUXj81JVgFd+fs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10615,38 +10357,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11860" + "11753" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7bcd360e-f425-4fd7-9132-663bb8292b4e" + "3b6371ec-17c2-4fc2-b905-ffe1f39a9bb5" ], "x-ms-client-request-id": [ - "28116898-0141-456b-b9d9-7d74fd4935c8-2020-01-16 09:52:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9f25008d-db26-484a-9044-6c72ee557462" ], "x-ms-correlation-request-id": [ - "7bcd360e-f425-4fd7-9132-663bb8292b4e" + "3b6371ec-17c2-4fc2-b905-ffe1f39a9bb5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095218Z:7bcd360e-f425-4fd7-9132-663bb8292b4e" + "CENTRALUSEUAP:20210418T125950Z:3b6371ec-17c2-4fc2-b905-ffe1f39a9bb5" ], "Date": [ - "Thu, 16 Jan 2020 09:52:17 GMT" + "Sun, 18 Apr 2021 12:59:49 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -10655,29 +10394,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2848aa50-3093-46ef-8a40-d9a33249749b-2020-01-16 09:52:28Z-Ps" + "87163289-4046-45a1-9f2f-7ffc52fd2a63" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164748679)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769548679)\\/\",\"ClientRequestId\":\"2848aa50-3093-46ef-8a40-d9a33249749b-2020-01-16 09:52:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fgITLwxZiwHda7+Po+1nN3APvOYnZweA1AnFbjoop3A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747200535)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352000535)\\/\",\"ClientRequestId\":\"ce7678d6-19fb-4fc0-bd84-8ae7766c8f86-2021-04-18 13:00:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7CcoQRXRewQt2pub9FpNFxpEfvdGR1DVYwy029Pwbak=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10687,39 +10426,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11751" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ea6b7d05-7c2e-4989-8b27-80c95e1fa159" + "354914ba-6fc6-44ae-a8bc-91c79ca8db2e" ], "x-ms-client-request-id": [ - "2848aa50-3093-46ef-8a40-d9a33249749b-2020-01-16 09:52:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11859" + "87163289-4046-45a1-9f2f-7ffc52fd2a63" ], "x-ms-correlation-request-id": [ - "ea6b7d05-7c2e-4989-8b27-80c95e1fa159" + "354914ba-6fc6-44ae-a8bc-91c79ca8db2e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095229Z:ea6b7d05-7c2e-4989-8b27-80c95e1fa159" + "CENTRALUSEUAP:20210418T130000Z:354914ba-6fc6-44ae-a8bc-91c79ca8db2e" ], "Date": [ - "Thu, 16 Jan 2020 09:52:28 GMT" + "Sun, 18 Apr 2021 13:00:00 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -10728,29 +10464,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ce027cb-bdc8-45d2-b386-06741fd57871-2020-01-16 09:52:39Z-Ps" + "1e6fe39d-ff52-48ba-b0b8-26eef141b5b9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164759172)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769559172)\\/\",\"ClientRequestId\":\"7ce027cb-bdc8-45d2-b386-06741fd57871-2020-01-16 09:52:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5qJ1tdiAWVGUXvNn4V2P5mX8f7IeT+euhDJf0nE6n1Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747210898)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352010898)\\/\",\"ClientRequestId\":\"d4403556-fceb-40c0-927f-e87068d1b6e4-2021-04-18 13:00:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mgV5Syt4S009MQSr3c8XKEvtzPPd75VbDMdEVEV7Ysg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10761,38 +10497,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11858" + "11749" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2ef6dd33-1c5f-455f-9f3d-91ce76db5903" + "230823e1-7924-451b-bfbe-d9c83944e0ed" ], "x-ms-client-request-id": [ - "7ce027cb-bdc8-45d2-b386-06741fd57871-2020-01-16 09:52:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1e6fe39d-ff52-48ba-b0b8-26eef141b5b9" ], "x-ms-correlation-request-id": [ - "2ef6dd33-1c5f-455f-9f3d-91ce76db5903" + "230823e1-7924-451b-bfbe-d9c83944e0ed" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095240Z:2ef6dd33-1c5f-455f-9f3d-91ce76db5903" + "CENTRALUSEUAP:20210418T130011Z:230823e1-7924-451b-bfbe-d9c83944e0ed" ], "Date": [ - "Thu, 16 Jan 2020 09:52:39 GMT" + "Sun, 18 Apr 2021 13:00:10 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -10801,29 +10534,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbdb94e5-532e-401c-b2d0-02ff75475728-2020-01-16 09:52:50Z-Ps" + "fc423ed9-5b9a-4b2b-a7bd-7b265752e788" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164770491)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769570491)\\/\",\"ClientRequestId\":\"bbdb94e5-532e-401c-b2d0-02ff75475728-2020-01-16 09:52:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hr1WBW3qjCKkG6MdNE3pPtPdCExVaS9iuPhNEhCTCxM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747221304)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352021304)\\/\",\"ClientRequestId\":\"5206285f-da92-4ea2-aa88-9cd715993cca-2021-04-18 13:00:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BmB7wmoS6C3eM8opZjAXpmlN5Qxkug4ACdSU7nT35gc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10834,38 +10567,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11857" + "11747" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7793ebeb-c907-4647-ab1e-f4a0a23b7a6f" + "d3023db7-f227-49b4-b929-9d519c9f0446" ], "x-ms-client-request-id": [ - "bbdb94e5-532e-401c-b2d0-02ff75475728-2020-01-16 09:52:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "fc423ed9-5b9a-4b2b-a7bd-7b265752e788" ], "x-ms-correlation-request-id": [ - "7793ebeb-c907-4647-ab1e-f4a0a23b7a6f" + "d3023db7-f227-49b4-b929-9d519c9f0446" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095250Z:7793ebeb-c907-4647-ab1e-f4a0a23b7a6f" + "CENTRALUSEUAP:20210418T130021Z:d3023db7-f227-49b4-b929-9d519c9f0446" ], "Date": [ - "Thu, 16 Jan 2020 09:52:50 GMT" + "Sun, 18 Apr 2021 13:00:21 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -10874,29 +10604,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26e229ff-9273-45b6-abc4-395bcce29583-2020-01-16 09:53:00Z-Ps" + "e6a4930c-39a8-4381-b1e9-53e540b78f7b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164780927)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769580927)\\/\",\"ClientRequestId\":\"26e229ff-9273-45b6-abc4-395bcce29583-2020-01-16 09:53:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cerMQuEgAEzpn8uSqVtowOcT5kQOFSg+bgme9tjrG4I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747231676)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352031676)\\/\",\"ClientRequestId\":\"308048fc-fed7-49cb-a234-9373fce967f5-2021-04-18 13:00:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"doVYEOomdPUqsDcMDAdEeItxZ9LvanFv5W72rNkgGU0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10907,38 +10637,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11856" + "11745" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8b2e07c6-9456-4c8b-bc13-aa3cf470a8f1" + "58500f95-adae-4792-9117-838eed18405c" ], "x-ms-client-request-id": [ - "26e229ff-9273-45b6-abc4-395bcce29583-2020-01-16 09:53:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e6a4930c-39a8-4381-b1e9-53e540b78f7b" ], "x-ms-correlation-request-id": [ - "8b2e07c6-9456-4c8b-bc13-aa3cf470a8f1" + "58500f95-adae-4792-9117-838eed18405c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095301Z:8b2e07c6-9456-4c8b-bc13-aa3cf470a8f1" + "CENTRALUSEUAP:20210418T130031Z:58500f95-adae-4792-9117-838eed18405c" ], "Date": [ - "Thu, 16 Jan 2020 09:53:01 GMT" + "Sun, 18 Apr 2021 13:00:31 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -10947,29 +10674,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cf73d38-048e-4625-bce1-7c6d8b673ad3-2020-01-16 09:53:11Z-Ps" + "ac5fb15f-fd92-4897-9c5b-d359249c32af" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164791428)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769591428)\\/\",\"ClientRequestId\":\"2cf73d38-048e-4625-bce1-7c6d8b673ad3-2020-01-16 09:53:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oqC3vySQ9ktvbGTTY3HcIqUzro5r9EHzHhn4jyDgiwo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747242052)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352042052)\\/\",\"ClientRequestId\":\"6f373666-7937-4bbb-bd63-9f60ce0ba189-2021-04-18 13:00:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QaoewpwzCqz8oodFX5dg4u2xMcNIN3A/WMgUSJrNzkU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10980,38 +10707,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11854" + "11743" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ecfc98cb-e779-492b-ab97-ec1e030cff2e" + "9cd80788-f7c5-45de-9e80-8750b1b84ff1" ], "x-ms-client-request-id": [ - "2cf73d38-048e-4625-bce1-7c6d8b673ad3-2020-01-16 09:53:11Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ac5fb15f-fd92-4897-9c5b-d359249c32af" ], "x-ms-correlation-request-id": [ - "ecfc98cb-e779-492b-ab97-ec1e030cff2e" + "9cd80788-f7c5-45de-9e80-8750b1b84ff1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095311Z:ecfc98cb-e779-492b-ab97-ec1e030cff2e" + "CENTRALUSEUAP:20210418T130042Z:9cd80788-f7c5-45de-9e80-8750b1b84ff1" ], "Date": [ - "Thu, 16 Jan 2020 09:53:11 GMT" + "Sun, 18 Apr 2021 13:00:41 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -11020,29 +10744,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08637c49-399d-4cdb-bfc5-3157005a364a-2020-01-16 09:53:21Z-Ps" + "4a7c7ebc-cc9b-4e6d-994e-687d5dfae322" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164801874)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769601874)\\/\",\"ClientRequestId\":\"08637c49-399d-4cdb-bfc5-3157005a364a-2020-01-16 09:53:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5nI1nDmNijZeDlvitgkvATzfY6MP/weDXXW3az8v+Ug=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747252420)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352052420)\\/\",\"ClientRequestId\":\"15b40430-94b2-401c-bc2b-02886e0eda1d-2021-04-18 13:00:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xC6BBB6n3R/9bwEl680wZULGlA6cqlnFw3bl6iUHQ14=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11053,38 +10777,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11853" + "11741" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "87c19922-dcf0-43d9-a3ca-c7e9ea19f676" + "621ce61c-581f-4444-b1e4-7a901012f923" ], "x-ms-client-request-id": [ - "08637c49-399d-4cdb-bfc5-3157005a364a-2020-01-16 09:53:21Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4a7c7ebc-cc9b-4e6d-994e-687d5dfae322" ], "x-ms-correlation-request-id": [ - "87c19922-dcf0-43d9-a3ca-c7e9ea19f676" + "621ce61c-581f-4444-b1e4-7a901012f923" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095322Z:87c19922-dcf0-43d9-a3ca-c7e9ea19f676" + "CENTRALUSEUAP:20210418T130052Z:621ce61c-581f-4444-b1e4-7a901012f923" ], "Date": [ - "Thu, 16 Jan 2020 09:53:21 GMT" + "Sun, 18 Apr 2021 13:00:52 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -11093,29 +10814,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1ee0e15-ce8b-4695-9eae-9ebcdb39a01b-2020-01-16 09:53:32Z-Ps" + "e26b5635-690c-4aae-bfde-d805112ca16c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164812356)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769612356)\\/\",\"ClientRequestId\":\"a1ee0e15-ce8b-4695-9eae-9ebcdb39a01b-2020-01-16 09:53:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kwgSbovhgZLRH3aew6v8wk3+xZzGNeuxxLLt5MumR40=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747262796)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352062796)\\/\",\"ClientRequestId\":\"0bd233fc-897d-49b1-ba13-92a40ce5d2e1-2021-04-18 13:01:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iXJThuMVKI1puWL7GBe8jIsDK2aGArnqM3tQ72VZZ/s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11126,38 +10847,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11852" + "11739" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "548e8824-973f-4cea-8e12-2bb6e02e20f4" + "2d1e6252-95e2-413a-97e9-2b41f8943b8b" ], "x-ms-client-request-id": [ - "a1ee0e15-ce8b-4695-9eae-9ebcdb39a01b-2020-01-16 09:53:32Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e26b5635-690c-4aae-bfde-d805112ca16c" ], "x-ms-correlation-request-id": [ - "548e8824-973f-4cea-8e12-2bb6e02e20f4" + "2d1e6252-95e2-413a-97e9-2b41f8943b8b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095332Z:548e8824-973f-4cea-8e12-2bb6e02e20f4" + "CENTRALUSEUAP:20210418T130102Z:2d1e6252-95e2-413a-97e9-2b41f8943b8b" ], "Date": [ - "Thu, 16 Jan 2020 09:53:32 GMT" + "Sun, 18 Apr 2021 13:01:02 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -11166,29 +10884,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3706f50b-a073-4cc1-aa49-c440c306f7c0-2020-01-16 09:53:42Z-Ps" + "31715833-f059-4f20-ba3b-ee339845cdf5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164822774)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769622774)\\/\",\"ClientRequestId\":\"3706f50b-a073-4cc1-aa49-c440c306f7c0-2020-01-16 09:53:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"z72ZSyEY9SUcIy9wJN/+TNhUlkf2gtDHUZwyL5bSz9k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747273158)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352073158)\\/\",\"ClientRequestId\":\"d5d17746-ffb7-4623-a9e3-8a5077ee14de-2021-04-18 13:01:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Kn6Jg0ryid+/Wb9CFkGJ8oGR9kUrXYuQRD3vTC1D9bk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11199,38 +10917,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11851" + "11737" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "61d8013e-7e61-460f-b32a-3c2125d586d7" + "112eec10-4b1a-42e5-819d-dbf25f057572" ], "x-ms-client-request-id": [ - "3706f50b-a073-4cc1-aa49-c440c306f7c0-2020-01-16 09:53:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "31715833-f059-4f20-ba3b-ee339845cdf5" ], "x-ms-correlation-request-id": [ - "61d8013e-7e61-460f-b32a-3c2125d586d7" + "112eec10-4b1a-42e5-819d-dbf25f057572" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095343Z:61d8013e-7e61-460f-b32a-3c2125d586d7" + "CENTRALUSEUAP:20210418T130113Z:112eec10-4b1a-42e5-819d-dbf25f057572" ], "Date": [ - "Thu, 16 Jan 2020 09:53:42 GMT" + "Sun, 18 Apr 2021 13:01:13 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -11239,29 +10954,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9da48618-7764-4637-ba3e-3fd54e8a73fb-2020-01-16 09:53:53Z-Ps" + "c8c92971-1582-4487-8e6d-2e74d3f3997a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164833226)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769633226)\\/\",\"ClientRequestId\":\"9da48618-7764-4637-ba3e-3fd54e8a73fb-2020-01-16 09:53:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"42JILHRBiIzXt8ftiFntnbwiu1rPVHIvmj4thQf2UXE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747283528)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352083528)\\/\",\"ClientRequestId\":\"22fb10df-2000-4e87-b35e-cd984b9f4823-2021-04-18 13:01:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kQhX3QAT8XgkauGVrjGXc/6ipre91764asdzSSMoSD0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11272,38 +10987,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" + "11735" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f56c983b-5838-4725-8679-1e63800d184d" + "c1ca0335-9832-4dd8-9591-0525fca5d478" ], "x-ms-client-request-id": [ - "9da48618-7764-4637-ba3e-3fd54e8a73fb-2020-01-16 09:53:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c8c92971-1582-4487-8e6d-2e74d3f3997a" ], "x-ms-correlation-request-id": [ - "f56c983b-5838-4725-8679-1e63800d184d" + "c1ca0335-9832-4dd8-9591-0525fca5d478" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095353Z:f56c983b-5838-4725-8679-1e63800d184d" + "CENTRALUSEUAP:20210418T130123Z:c1ca0335-9832-4dd8-9591-0525fca5d478" ], "Date": [ - "Thu, 16 Jan 2020 09:53:52 GMT" + "Sun, 18 Apr 2021 13:01:23 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -11312,29 +11024,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "902da07c-13fa-49d7-9485-e08366164600-2020-01-16 09:54:03Z-Ps" + "d5a8deb5-5b46-4422-a54f-5bb743a8b215" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164843646)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769643646)\\/\",\"ClientRequestId\":\"902da07c-13fa-49d7-9485-e08366164600-2020-01-16 09:54:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bhyh8xx8mruCXIhdLWTgPbiIK9sXq4zmnad8e2HDRlI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747294857)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352094857)\\/\",\"ClientRequestId\":\"3cca09fd-cb45-4da6-a404-749693fba16d-2021-04-18 13:01:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yzafzR/qF9xxzls7NdCElj/LoiMHpspj/kw+EqB1Ois=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11344,39 +11056,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11733" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6cd5aa06-1f4f-4f27-b959-032739c36383" + "68a1bd4c-f099-4b9c-871f-5c18db88c7a4" ], "x-ms-client-request-id": [ - "902da07c-13fa-49d7-9485-e08366164600-2020-01-16 09:54:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11849" + "d5a8deb5-5b46-4422-a54f-5bb743a8b215" ], "x-ms-correlation-request-id": [ - "6cd5aa06-1f4f-4f27-b959-032739c36383" + "68a1bd4c-f099-4b9c-871f-5c18db88c7a4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095404Z:6cd5aa06-1f4f-4f27-b959-032739c36383" + "CENTRALUSEUAP:20210418T130135Z:68a1bd4c-f099-4b9c-871f-5c18db88c7a4" ], "Date": [ - "Thu, 16 Jan 2020 09:54:04 GMT" + "Sun, 18 Apr 2021 13:01:34 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -11385,29 +11094,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05bed5ec-22ec-4477-b2e1-3dd022d483d1-2020-01-16 09:54:14Z-Ps" + "fd93b890-df6c-4d29-afab-d6150e0a44fb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164854148)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769654148)\\/\",\"ClientRequestId\":\"05bed5ec-22ec-4477-b2e1-3dd022d483d1-2020-01-16 09:54:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zA5zllLZF6Qyq81cCXbQOyBkDAEF4XDKHsaP828iqL0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747305484)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352105484)\\/\",\"ClientRequestId\":\"a5b024db-8f56-48e6-91ff-8dc1d4df7772-2021-04-18 13:01:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HTM//fkD7kRghXxWTPIysHK4nRw+zivm3pB8dgalsQY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11418,38 +11127,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11848" + "11731" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "067d7f73-8a7e-4eed-a5c8-5abae48b08ac" + "f9f932a6-71ae-4ccd-8030-c92a34a0d09b" ], "x-ms-client-request-id": [ - "05bed5ec-22ec-4477-b2e1-3dd022d483d1-2020-01-16 09:54:14Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "fd93b890-df6c-4d29-afab-d6150e0a44fb" ], "x-ms-correlation-request-id": [ - "067d7f73-8a7e-4eed-a5c8-5abae48b08ac" + "f9f932a6-71ae-4ccd-8030-c92a34a0d09b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095415Z:067d7f73-8a7e-4eed-a5c8-5abae48b08ac" + "CENTRALUSEUAP:20210418T130145Z:f9f932a6-71ae-4ccd-8030-c92a34a0d09b" ], "Date": [ - "Thu, 16 Jan 2020 09:54:15 GMT" + "Sun, 18 Apr 2021 13:01:45 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -11458,29 +11164,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91a83dc1-5cbf-449a-b093-c97ecfd1437a-2020-01-16 09:54:25Z-Ps" + "80a4ed8e-b1b9-4b64-b1c2-c9658f57049b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164865830)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769665830)\\/\",\"ClientRequestId\":\"91a83dc1-5cbf-449a-b093-c97ecfd1437a-2020-01-16 09:54:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"px5K7c7T7KndjNgESDfh7fYBgw0zh7Nz1CORkvN01mk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747315848)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352115848)\\/\",\"ClientRequestId\":\"a2da21a5-53fd-4d9d-b5e1-be2116b54055-2021-04-18 13:01:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iPVXuJEjpfoODcrwBd6hVd+DaC/HmG5VdeVPzPwJF+E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11491,38 +11197,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11847" + "11729" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "54ab19af-b078-4d7b-9110-ae1b865c8d42" + "8675ead5-41c4-4a3d-9de3-dd742dfc9bcd" ], "x-ms-client-request-id": [ - "91a83dc1-5cbf-449a-b093-c97ecfd1437a-2020-01-16 09:54:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "80a4ed8e-b1b9-4b64-b1c2-c9658f57049b" ], "x-ms-correlation-request-id": [ - "54ab19af-b078-4d7b-9110-ae1b865c8d42" + "8675ead5-41c4-4a3d-9de3-dd742dfc9bcd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095426Z:54ab19af-b078-4d7b-9110-ae1b865c8d42" + "CENTRALUSEUAP:20210418T130156Z:8675ead5-41c4-4a3d-9de3-dd742dfc9bcd" ], "Date": [ - "Thu, 16 Jan 2020 09:54:25 GMT" + "Sun, 18 Apr 2021 13:01:55 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -11531,29 +11234,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e606dfd-10d5-4630-9030-eeaa9b2020e7-2020-01-16 09:54:36Z-Ps" + "77eb988d-962e-474b-90fc-d66352e6f1cf" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164876285)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769676285)\\/\",\"ClientRequestId\":\"5e606dfd-10d5-4630-9030-eeaa9b2020e7-2020-01-16 09:54:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/yxYsm/wK3oD48RT9zgjnv8tzVjKUclsWhsgtLKwVsE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747326208)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352126208)\\/\",\"ClientRequestId\":\"ae141aa6-e673-4bd8-86e8-4470f06fff51-2021-04-18 13:02:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8M0oE/AHP7Ajt2KULdVNEuEUVIBB+j0BOsN0eO+KOm4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11563,39 +11266,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11846" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8744df33-cb8a-42b3-bfdb-4e0fa82e8bb3" + "674d6cb3-cfc0-4c29-8f8b-a2f45b0482ab" ], "x-ms-client-request-id": [ - "5e606dfd-10d5-4630-9030-eeaa9b2020e7-2020-01-16 09:54:36Z-Ps" + "77eb988d-962e-474b-90fc-d66352e6f1cf" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11727" ], "x-ms-correlation-request-id": [ - "8744df33-cb8a-42b3-bfdb-4e0fa82e8bb3" + "674d6cb3-cfc0-4c29-8f8b-a2f45b0482ab" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095436Z:8744df33-cb8a-42b3-bfdb-4e0fa82e8bb3" + "CENTRALUSEUAP:20210418T130206Z:674d6cb3-cfc0-4c29-8f8b-a2f45b0482ab" ], "Date": [ - "Thu, 16 Jan 2020 09:54:36 GMT" + "Sun, 18 Apr 2021 13:02:06 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -11604,29 +11304,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1de8923e-6ba7-4bfd-a047-6ba544dc72ee-2020-01-16 09:54:46Z-Ps" + "5168dc87-b85f-4b5d-846a-cbc30ff2f570" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164886707)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769686707)\\/\",\"ClientRequestId\":\"1de8923e-6ba7-4bfd-a047-6ba544dc72ee-2020-01-16 09:54:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lfknd6FZv4RXkdNXYZ3QEaMmwxXYNci2EG/21OgS71o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747336575)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352136575)\\/\",\"ClientRequestId\":\"3049b9a6-90b4-45ec-b9ef-fd7a77dc5711-2021-04-18 13:02:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eF13+TBluCXhEhmekmCEoiez9SFQ78Q2aQW8TIL/rn8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11637,38 +11337,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11844" + "11725" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "49b01782-5459-4a45-9436-fe43041f1faa" + "39986abb-e030-4b98-8487-82540ac86909" ], "x-ms-client-request-id": [ - "1de8923e-6ba7-4bfd-a047-6ba544dc72ee-2020-01-16 09:54:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5168dc87-b85f-4b5d-846a-cbc30ff2f570" ], "x-ms-correlation-request-id": [ - "49b01782-5459-4a45-9436-fe43041f1faa" + "39986abb-e030-4b98-8487-82540ac86909" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095447Z:49b01782-5459-4a45-9436-fe43041f1faa" + "CENTRALUSEUAP:20210418T130216Z:39986abb-e030-4b98-8487-82540ac86909" ], "Date": [ - "Thu, 16 Jan 2020 09:54:46 GMT" + "Sun, 18 Apr 2021 13:02:16 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -11677,29 +11374,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34365477-e207-4c87-856b-3328d4b56fe9-2020-01-16 09:54:57Z-Ps" + "ed0d24a5-0dc7-4e47-b51b-82260af1ecbb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164897163)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769697163)\\/\",\"ClientRequestId\":\"34365477-e207-4c87-856b-3328d4b56fe9-2020-01-16 09:54:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3INVsXjM9TgZDaparW5K5UixawL7L+cM2R65//L9p8I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747346963)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352146963)\\/\",\"ClientRequestId\":\"9c8214c3-d78f-4fc3-bd03-76dd7ae5174d-2021-04-18 13:02:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7zPqR8x18Mspur2bHki1TBTht9nAKtUGUySb3it+rV4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11710,38 +11407,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11843" + "11723" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "78563955-40e4-4432-ba34-244d4c72de48" + "2a6ad51a-2fd3-47ef-a257-8a4f8d42cf42" ], "x-ms-client-request-id": [ - "34365477-e207-4c87-856b-3328d4b56fe9-2020-01-16 09:54:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ed0d24a5-0dc7-4e47-b51b-82260af1ecbb" ], "x-ms-correlation-request-id": [ - "78563955-40e4-4432-ba34-244d4c72de48" + "2a6ad51a-2fd3-47ef-a257-8a4f8d42cf42" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095457Z:78563955-40e4-4432-ba34-244d4c72de48" + "CENTRALUSEUAP:20210418T130227Z:2a6ad51a-2fd3-47ef-a257-8a4f8d42cf42" ], "Date": [ - "Thu, 16 Jan 2020 09:54:56 GMT" + "Sun, 18 Apr 2021 13:02:26 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -11750,29 +11444,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a531bcd-a9d5-4b05-8cd2-72e28382ee6f-2020-01-16 09:55:07Z-Ps" + "7f3990e5-fbe2-488c-a88e-6ea13fca10c6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164907594)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769707594)\\/\",\"ClientRequestId\":\"7a531bcd-a9d5-4b05-8cd2-72e28382ee6f-2020-01-16 09:55:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"skkbJB3GSQfbHoQUGfMSZ6hu8b8b2tnzTsJzIJ/9LQY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747357334)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352157334)\\/\",\"ClientRequestId\":\"017f1c20-1e92-4dc8-b1d6-36557cc45f29-2021-04-18 13:02:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pFXSrvJif0i8XnjYCJDtkD0VtndD1Q/x0nrWqAGd8VI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11783,38 +11477,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11845" + "11721" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "83a03e9f-3f4a-4f4e-80a0-f644932a62fa" + "df921196-b1ec-4a1c-aaf0-9df6a8833be9" ], "x-ms-client-request-id": [ - "7a531bcd-a9d5-4b05-8cd2-72e28382ee6f-2020-01-16 09:55:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7f3990e5-fbe2-488c-a88e-6ea13fca10c6" ], "x-ms-correlation-request-id": [ - "83a03e9f-3f4a-4f4e-80a0-f644932a62fa" + "df921196-b1ec-4a1c-aaf0-9df6a8833be9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095507Z:83a03e9f-3f4a-4f4e-80a0-f644932a62fa" + "CENTRALUSEUAP:20210418T130237Z:df921196-b1ec-4a1c-aaf0-9df6a8833be9" ], "Date": [ - "Thu, 16 Jan 2020 09:55:07 GMT" + "Sun, 18 Apr 2021 13:02:37 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -11823,29 +11514,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cbf516c0-30d1-4ebc-b96c-ca4162836e82-2020-01-16 09:55:18Z-Ps" + "93f35c09-e96d-429f-9b59-227404aeb683" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164918033)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769718033)\\/\",\"ClientRequestId\":\"cbf516c0-30d1-4ebc-b96c-ca4162836e82-2020-01-16 09:55:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"96hwPxlWXD9CxcYwy7iPAIKgMHPezEBrQKtZzYk8r0A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747367754)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352167754)\\/\",\"ClientRequestId\":\"e14406d9-502c-4931-9e94-4925095ea252-2021-04-18 13:02:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rmqSVTfGGOBrR1Izvb3JIeL8FFSMYPbifW4DModb+sc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11856,38 +11547,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11844" + "11719" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "dd62de56-bc62-4ed0-99be-20e264f30f45" + "85efb8ef-a00b-46d5-8657-7c72e28104a3" ], "x-ms-client-request-id": [ - "cbf516c0-30d1-4ebc-b96c-ca4162836e82-2020-01-16 09:55:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "93f35c09-e96d-429f-9b59-227404aeb683" ], "x-ms-correlation-request-id": [ - "dd62de56-bc62-4ed0-99be-20e264f30f45" + "85efb8ef-a00b-46d5-8657-7c72e28104a3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095518Z:dd62de56-bc62-4ed0-99be-20e264f30f45" + "CENTRALUSEUAP:20210418T130247Z:85efb8ef-a00b-46d5-8657-7c72e28104a3" ], "Date": [ - "Thu, 16 Jan 2020 09:55:18 GMT" + "Sun, 18 Apr 2021 13:02:47 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -11896,29 +11584,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26b3b3d7-b647-420e-ac34-c292dcb5d9e6-2020-01-16 09:55:28Z-Ps" + "92144645-c164-49da-89fe-7349d8858157" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164928536)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769728536)\\/\",\"ClientRequestId\":\"26b3b3d7-b647-420e-ac34-c292dcb5d9e6-2020-01-16 09:55:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oNrUNxR2N86IB2Vcv2p/N/ymJ47PEy3wOFK0kh1ecG8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747378132)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352178132)\\/\",\"ClientRequestId\":\"6afac9a1-0b76-4578-9a37-5f10e6f8773b-2021-04-18 13:02:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EaHb9mgh9BTVdtrdFh5K6QhWJ6nAqzKgI4iR0envEao=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11929,38 +11617,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11843" + "11717" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f5682fdb-fc8d-406e-9e0c-d5e09733b75e" + "ab49b1ba-206b-4f82-821f-47a74e69ded4" ], "x-ms-client-request-id": [ - "26b3b3d7-b647-420e-ac34-c292dcb5d9e6-2020-01-16 09:55:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "92144645-c164-49da-89fe-7349d8858157" ], "x-ms-correlation-request-id": [ - "f5682fdb-fc8d-406e-9e0c-d5e09733b75e" + "ab49b1ba-206b-4f82-821f-47a74e69ded4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095528Z:f5682fdb-fc8d-406e-9e0c-d5e09733b75e" + "CENTRALUSEUAP:20210418T130258Z:ab49b1ba-206b-4f82-821f-47a74e69ded4" ], "Date": [ - "Thu, 16 Jan 2020 09:55:28 GMT" + "Sun, 18 Apr 2021 13:02:57 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -11969,29 +11654,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5473bc96-d9a2-4831-a574-b73aeb40260c-2020-01-16 09:55:38Z-Ps" + "d2805cad-03cb-4769-a7ee-7a2636f12490" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164938985)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769738985)\\/\",\"ClientRequestId\":\"5473bc96-d9a2-4831-a574-b73aeb40260c-2020-01-16 09:55:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XqZMa4cfNu5dysI8CW3EvlO2qMyrVhdwQ5EjcKYtLDA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747388503)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352188503)\\/\",\"ClientRequestId\":\"ac8b6f0e-87fe-48db-89bd-292d00e47110-2021-04-18 13:03:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"i9tDr4T8gO6E0zc9KKdlPBT/FIm5oOkjhooSgw6ghfo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12001,39 +11686,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11715" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "efe7b228-ddc7-4de4-92e1-cfed8b45896f" + "123482ae-346a-4b3e-942c-10b3e9315527" ], "x-ms-client-request-id": [ - "5473bc96-d9a2-4831-a574-b73aeb40260c-2020-01-16 09:55:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11842" + "d2805cad-03cb-4769-a7ee-7a2636f12490" ], "x-ms-correlation-request-id": [ - "efe7b228-ddc7-4de4-92e1-cfed8b45896f" + "123482ae-346a-4b3e-942c-10b3e9315527" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095539Z:efe7b228-ddc7-4de4-92e1-cfed8b45896f" + "CENTRALUSEUAP:20210418T130308Z:123482ae-346a-4b3e-942c-10b3e9315527" ], "Date": [ - "Thu, 16 Jan 2020 09:55:38 GMT" + "Sun, 18 Apr 2021 13:03:07 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -12042,29 +11724,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf180311-d1f8-411c-a0b8-15f1a2a65f27-2020-01-16 09:55:49Z-Ps" + "4a46744a-649c-4259-be83-7199e5c057bf" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164949464)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769749464)\\/\",\"ClientRequestId\":\"cf180311-d1f8-411c-a0b8-15f1a2a65f27-2020-01-16 09:55:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IsB64oULjGk82FEL2qodduyiL99wMbguGlKWtVMU5IM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747399765)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352199765)\\/\",\"ClientRequestId\":\"b8c73b98-a154-4e1b-9a0b-c3e3e8b89b15-2021-04-18 13:03:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"t2iyKEPZgKiBVrCl5pw7Gto54RXgoYoOY4zWhoCLQdQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12075,38 +11757,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11841" + "11713" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b85d3566-16c4-49e7-9e27-10a7c712a515" + "8ed52c90-35b3-440c-b243-446691363bb4" ], "x-ms-client-request-id": [ - "cf180311-d1f8-411c-a0b8-15f1a2a65f27-2020-01-16 09:55:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4a46744a-649c-4259-be83-7199e5c057bf" ], "x-ms-correlation-request-id": [ - "b85d3566-16c4-49e7-9e27-10a7c712a515" + "8ed52c90-35b3-440c-b243-446691363bb4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095550Z:b85d3566-16c4-49e7-9e27-10a7c712a515" + "CENTRALUSEUAP:20210418T130319Z:8ed52c90-35b3-440c-b243-446691363bb4" ], "Date": [ - "Thu, 16 Jan 2020 09:55:50 GMT" + "Sun, 18 Apr 2021 13:03:19 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -12115,29 +11794,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b0584a5-2d14-48d3-be8a-b7c3f127fdbe-2020-01-16 09:56:01Z-Ps" + "655271e1-82a5-4964-b538-9b842acabcea" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164961025)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769761025)\\/\",\"ClientRequestId\":\"9b0584a5-2d14-48d3-be8a-b7c3f127fdbe-2020-01-16 09:56:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rhi+2YRP5TpvoROnG6MOFK9ZUBz5ZheKiF0u6AWsUdo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747410139)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352210139)\\/\",\"ClientRequestId\":\"12dae518-a0b6-4dbb-8a92-5fe176afa189-2021-04-18 13:03:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"z0X385DjwFAREQ4bd8fILtZFCmb4uwCKdwqU9bta9Jc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12148,38 +11827,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11839" + "11711" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "03ab2ee9-d32e-4707-b027-74c71bf62858" + "94be24e9-6dc2-47c3-8d61-ce3ccde0c32b" ], "x-ms-client-request-id": [ - "9b0584a5-2d14-48d3-be8a-b7c3f127fdbe-2020-01-16 09:56:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "655271e1-82a5-4964-b538-9b842acabcea" ], "x-ms-correlation-request-id": [ - "03ab2ee9-d32e-4707-b027-74c71bf62858" + "94be24e9-6dc2-47c3-8d61-ce3ccde0c32b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095602Z:03ab2ee9-d32e-4707-b027-74c71bf62858" + "CENTRALUSEUAP:20210418T130330Z:94be24e9-6dc2-47c3-8d61-ce3ccde0c32b" ], "Date": [ - "Thu, 16 Jan 2020 09:56:01 GMT" + "Sun, 18 Apr 2021 13:03:30 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -12188,29 +11864,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d118773-c634-4197-9367-5ddcc876103d-2020-01-16 09:56:12Z-Ps" + "29e54bf8-ccb3-4632-aae2-fab1bd44625f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164972574)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769772574)\\/\",\"ClientRequestId\":\"0d118773-c634-4197-9367-5ddcc876103d-2020-01-16 09:56:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xRt2yP4MYSzBBdYEqbvnhnxsUNgUFN9C7wRYfGz/eTs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747420514)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352220514)\\/\",\"ClientRequestId\":\"aa1c697c-e638-43a1-ba07-36e9e4265954-2021-04-18 13:03:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OM1A0WlkzHgTs6vXhG59zXfSblh+fKev/OCOxVnwKlo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12221,38 +11897,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11838" + "11709" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4aa23995-3869-47c6-ab36-85e40486f5be" + "52515ce6-f611-4e59-9def-1997ff663aaf" ], "x-ms-client-request-id": [ - "0d118773-c634-4197-9367-5ddcc876103d-2020-01-16 09:56:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "29e54bf8-ccb3-4632-aae2-fab1bd44625f" ], "x-ms-correlation-request-id": [ - "4aa23995-3869-47c6-ab36-85e40486f5be" + "52515ce6-f611-4e59-9def-1997ff663aaf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095614Z:4aa23995-3869-47c6-ab36-85e40486f5be" + "CENTRALUSEUAP:20210418T130340Z:52515ce6-f611-4e59-9def-1997ff663aaf" ], "Date": [ - "Thu, 16 Jan 2020 09:56:13 GMT" + "Sun, 18 Apr 2021 13:03:40 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -12261,29 +11934,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0d7cc13-da6e-47d2-acb5-514d17232032-2020-01-16 09:56:24Z-Ps" + "34aa72b3-0448-421f-9645-a2f9fbe243c5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164984124)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769784124)\\/\",\"ClientRequestId\":\"a0d7cc13-da6e-47d2-acb5-514d17232032-2020-01-16 09:56:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uu4uLaRCiHQW4L1ycUoArNFz/LGqlvfzqkRusIR1HRI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747430896)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352230896)\\/\",\"ClientRequestId\":\"cf20c7c5-2b5d-481c-be4d-6e125031a156-2021-04-18 13:03:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"x02eqjgWmsZRyVVdIF4cq2YMWkmpLi4NBGhTTAUnzis=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12294,38 +11967,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11836" + "11707" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9815dfe8-e73e-4e30-8195-c642da8f5bf4" + "1af044fc-7216-4a2a-89b5-6a98fab99a71" ], "x-ms-client-request-id": [ - "a0d7cc13-da6e-47d2-acb5-514d17232032-2020-01-16 09:56:24Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "34aa72b3-0448-421f-9645-a2f9fbe243c5" ], "x-ms-correlation-request-id": [ - "9815dfe8-e73e-4e30-8195-c642da8f5bf4" + "1af044fc-7216-4a2a-89b5-6a98fab99a71" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095624Z:9815dfe8-e73e-4e30-8195-c642da8f5bf4" + "CENTRALUSEUAP:20210418T130351Z:1af044fc-7216-4a2a-89b5-6a98fab99a71" ], "Date": [ - "Thu, 16 Jan 2020 09:56:24 GMT" + "Sun, 18 Apr 2021 13:03:51 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -12334,29 +12004,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c369b9f3-37fc-4b92-a913-55baf6588eb7-2020-01-16 09:56:34Z-Ps" + "25d61097-0953-44e0-8de3-7a3fb7c5acd4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579164994572)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769794572)\\/\",\"ClientRequestId\":\"c369b9f3-37fc-4b92-a913-55baf6588eb7-2020-01-16 09:56:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1lk0pNe391ncxwymBGapnkD9R1qLg3ed4glQ2AvHofI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747441315)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352241315)\\/\",\"ClientRequestId\":\"adc08ab8-72c6-4b1e-bd5e-4b34a027eba8-2021-04-18 13:04:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6QUx/6ICPUP0YpFjkp54gUtlAAHxGKiIaD2xhORWFQI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12367,38 +12037,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11835" + "11705" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ce59fac9-454d-4c86-899e-05763bd0086d" + "3aede84a-3b0f-48ba-8bc0-bec4103ad6df" ], "x-ms-client-request-id": [ - "c369b9f3-37fc-4b92-a913-55baf6588eb7-2020-01-16 09:56:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "25d61097-0953-44e0-8de3-7a3fb7c5acd4" ], "x-ms-correlation-request-id": [ - "ce59fac9-454d-4c86-899e-05763bd0086d" + "3aede84a-3b0f-48ba-8bc0-bec4103ad6df" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095634Z:ce59fac9-454d-4c86-899e-05763bd0086d" + "CENTRALUSEUAP:20210418T130401Z:3aede84a-3b0f-48ba-8bc0-bec4103ad6df" ], "Date": [ - "Thu, 16 Jan 2020 09:56:34 GMT" + "Sun, 18 Apr 2021 13:04:00 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -12407,29 +12074,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd4c68f5-60f9-4f2c-bc1f-1f16dbee9a11-2020-01-16 09:56:45Z-Ps" + "002b70af-a7cc-48ef-86ae-2e634b13acad" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165005027)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769805027)\\/\",\"ClientRequestId\":\"dd4c68f5-60f9-4f2c-bc1f-1f16dbee9a11-2020-01-16 09:56:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oZtPu/OE56AIzj80ovsftrFjYHnq4o1U70Cl5gcqwx8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747451702)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352251702)\\/\",\"ClientRequestId\":\"24e6ddbb-5303-4a7f-90dc-88add5ba70a4-2021-04-18 13:04:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gDgceP/9KJ4SU6KUKB+bXEBzETyUR8k6dQmLJjgl4xg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12440,38 +12107,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11834" + "11703" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "cc7b6664-6b79-4278-8c1f-dcf638e81656" + "8228e917-4e8f-467e-912c-3e4dbde3a2f4" ], "x-ms-client-request-id": [ - "dd4c68f5-60f9-4f2c-bc1f-1f16dbee9a11-2020-01-16 09:56:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "002b70af-a7cc-48ef-86ae-2e634b13acad" ], "x-ms-correlation-request-id": [ - "cc7b6664-6b79-4278-8c1f-dcf638e81656" + "8228e917-4e8f-467e-912c-3e4dbde3a2f4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095645Z:cc7b6664-6b79-4278-8c1f-dcf638e81656" + "CENTRALUSEUAP:20210418T130411Z:8228e917-4e8f-467e-912c-3e4dbde3a2f4" ], "Date": [ - "Thu, 16 Jan 2020 09:56:45 GMT" + "Sun, 18 Apr 2021 13:04:11 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -12480,29 +12144,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8df4d4f-f5f6-44ef-be2f-3dd92ecba27a-2020-01-16 09:56:55Z-Ps" + "08297877-8644-4c7a-9822-dd41f17cd40f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165015543)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769815543)\\/\",\"ClientRequestId\":\"e8df4d4f-f5f6-44ef-be2f-3dd92ecba27a-2020-01-16 09:56:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fUcBtcEqFGcuUUAsuYoByB/vGyAI80w5SLhn5dwbQhQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747462085)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352262085)\\/\",\"ClientRequestId\":\"cc0cb6cb-af6f-4140-9ce6-bd12daae9950-2021-04-18 13:04:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OBVsYsNQ90WOIWCkCw7lvb4w7yoPgOOoYSQhXNgIlHM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12513,38 +12177,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11833" + "11701" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "17c1fde3-32d4-4778-b9eb-f62f38f39904" + "66ec25fe-def9-4451-854e-1141a6806218" ], "x-ms-client-request-id": [ - "e8df4d4f-f5f6-44ef-be2f-3dd92ecba27a-2020-01-16 09:56:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "08297877-8644-4c7a-9822-dd41f17cd40f" ], "x-ms-correlation-request-id": [ - "17c1fde3-32d4-4778-b9eb-f62f38f39904" + "66ec25fe-def9-4451-854e-1141a6806218" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095655Z:17c1fde3-32d4-4778-b9eb-f62f38f39904" + "CENTRALUSEUAP:20210418T130422Z:66ec25fe-def9-4451-854e-1141a6806218" ], "Date": [ - "Thu, 16 Jan 2020 09:56:55 GMT" + "Sun, 18 Apr 2021 13:04:22 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -12553,29 +12214,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36027e76-c40f-48a0-80b6-058ad44eec95-2020-01-16 09:57:05Z-Ps" + "645a3aa9-db93-420c-90f3-5c2206376fcf" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165025994)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769825994)\\/\",\"ClientRequestId\":\"36027e76-c40f-48a0-80b6-058ad44eec95-2020-01-16 09:57:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9cWYHl9QO5AE2kiMlypgpuRwP4VvlTMvRayNLkJnyAc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747472483)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352272483)\\/\",\"ClientRequestId\":\"c7a73374-e2b6-4d47-8b35-af8b263d5e34-2021-04-18 13:04:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9AvPm4DudyURKz+5Pnk4TN+6b9SoIlGKO8HM2BRfn1o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12586,38 +12247,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11832" + "11699" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "605814f0-b3c8-400d-bad0-01a3557d543e" + "65ee8710-2b32-40a2-8daa-1667026fb7cc" ], "x-ms-client-request-id": [ - "36027e76-c40f-48a0-80b6-058ad44eec95-2020-01-16 09:57:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "645a3aa9-db93-420c-90f3-5c2206376fcf" ], "x-ms-correlation-request-id": [ - "605814f0-b3c8-400d-bad0-01a3557d543e" + "65ee8710-2b32-40a2-8daa-1667026fb7cc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095706Z:605814f0-b3c8-400d-bad0-01a3557d543e" + "CENTRALUSEUAP:20210418T130432Z:65ee8710-2b32-40a2-8daa-1667026fb7cc" ], "Date": [ - "Thu, 16 Jan 2020 09:57:05 GMT" + "Sun, 18 Apr 2021 13:04:31 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -12626,29 +12284,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3d62622-3af9-481c-b1b5-aff4ddecc600-2020-01-16 09:57:16Z-Ps" + "06a0497a-5b72-46f7-9a25-724ddf4b1ffd" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165036447)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769836447)\\/\",\"ClientRequestId\":\"c3d62622-3af9-481c-b1b5-aff4ddecc600-2020-01-16 09:57:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DwzrgMh1sdMwRBgEE71kp1UCWF6lb/898N2mq9RwuYk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747482863)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352282863)\\/\",\"ClientRequestId\":\"75f8c1fd-770b-48ed-8238-fd2a97c59af0-2021-04-18 13:04:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xL2DPLFXGRycz01v6YveLO862o1iK+HCoYehvcmUOqc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12659,38 +12317,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11831" + "11697" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c8daa063-f5bf-4b69-bfee-954e86e74cd0" + "75c848ff-5425-49b1-901a-6141bd5d47f1" ], "x-ms-client-request-id": [ - "c3d62622-3af9-481c-b1b5-aff4ddecc600-2020-01-16 09:57:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "06a0497a-5b72-46f7-9a25-724ddf4b1ffd" ], "x-ms-correlation-request-id": [ - "c8daa063-f5bf-4b69-bfee-954e86e74cd0" + "75c848ff-5425-49b1-901a-6141bd5d47f1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095716Z:c8daa063-f5bf-4b69-bfee-954e86e74cd0" + "CENTRALUSEUAP:20210418T130443Z:75c848ff-5425-49b1-901a-6141bd5d47f1" ], "Date": [ - "Thu, 16 Jan 2020 09:57:16 GMT" + "Sun, 18 Apr 2021 13:04:43 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -12699,29 +12354,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61a1c9b7-ff31-4d4d-9a9a-e684b3d07f8f-2020-01-16 09:57:26Z-Ps" + "b4077e35-6635-4e8e-bbe1-ff5599367901" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165046857)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769846857)\\/\",\"ClientRequestId\":\"61a1c9b7-ff31-4d4d-9a9a-e684b3d07f8f-2020-01-16 09:57:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1wt3Nms2He6rK8OgKtei3FzsqSH6DWcRiXrxSXfnyBc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747493248)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352293248)\\/\",\"ClientRequestId\":\"ec37fc5c-f1b8-498f-b009-39232506e0fd-2021-04-18 13:04:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dcVKgsAeauG7kN2nZaJFb5LY5FzGMrNKk9dJIZ7VcQ0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12732,38 +12387,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11830" + "11695" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c4db46ca-66f3-4999-ba91-49cc91364378" + "8ddc358c-6fb5-4718-8df6-ba178a7e154f" ], "x-ms-client-request-id": [ - "61a1c9b7-ff31-4d4d-9a9a-e684b3d07f8f-2020-01-16 09:57:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b4077e35-6635-4e8e-bbe1-ff5599367901" ], "x-ms-correlation-request-id": [ - "c4db46ca-66f3-4999-ba91-49cc91364378" + "8ddc358c-6fb5-4718-8df6-ba178a7e154f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095727Z:c4db46ca-66f3-4999-ba91-49cc91364378" + "CENTRALUSEUAP:20210418T130453Z:8ddc358c-6fb5-4718-8df6-ba178a7e154f" ], "Date": [ - "Thu, 16 Jan 2020 09:57:26 GMT" + "Sun, 18 Apr 2021 13:04:53 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -12772,29 +12424,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a190ff1-576b-445d-a7ce-7a44623f7d8b-2020-01-16 09:57:37Z-Ps" + "4fdc1926-d10a-46d2-abbe-4dde17168e1e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165057297)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769857297)\\/\",\"ClientRequestId\":\"1a190ff1-576b-445d-a7ce-7a44623f7d8b-2020-01-16 09:57:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tk5FxU+xPsoc5UzPpGgSmQPt6ihk0WqFhCse9gsidRw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747503633)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352303633)\\/\",\"ClientRequestId\":\"e4d3f722-1f4b-4ed5-94be-879e7d726609-2021-04-18 13:05:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hKiyYZYu7IN+MlSFLhl+jpMEh1E2xDssmplkogz7nxw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12804,39 +12456,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11704" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c18f269d-b828-43df-9473-0fa98445fe8f" + "a1788e95-00a5-429c-a757-04957e156327" ], "x-ms-client-request-id": [ - "1a190ff1-576b-445d-a7ce-7a44623f7d8b-2020-01-16 09:57:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11829" + "4fdc1926-d10a-46d2-abbe-4dde17168e1e" ], "x-ms-correlation-request-id": [ - "c18f269d-b828-43df-9473-0fa98445fe8f" + "a1788e95-00a5-429c-a757-04957e156327" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095737Z:c18f269d-b828-43df-9473-0fa98445fe8f" + "CENTRALUSEUAP:20210418T130503Z:a1788e95-00a5-429c-a757-04957e156327" ], "Date": [ - "Thu, 16 Jan 2020 09:57:36 GMT" + "Sun, 18 Apr 2021 13:05:03 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -12845,29 +12494,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e55d2ccb-0805-41a1-bfcb-4e8032f468e8-2020-01-16 09:57:47Z-Ps" + "9d8b804a-65b0-48a8-b3dc-2848dbfe847e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165067778)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769867778)\\/\",\"ClientRequestId\":\"e55d2ccb-0805-41a1-bfcb-4e8032f468e8-2020-01-16 09:57:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Z0wVwz1KtYiBEbSMBykkHF3lyL8+7cmdXrC/bZRhOz0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747514016)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352314016)\\/\",\"ClientRequestId\":\"aebe96e4-7aa7-4597-a1a6-edc830cfc067-2021-04-18 13:05:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"E92FmSqlF/yhSIpAGsZdz/foHA0YnnVPOWiqkNwXKxQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12878,38 +12527,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11827" + "11702" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "26b5c009-2735-4981-8e27-e76f09719a36" + "df8fea1d-60f0-44fd-9662-c65fb36ebdda" ], "x-ms-client-request-id": [ - "e55d2ccb-0805-41a1-bfcb-4e8032f468e8-2020-01-16 09:57:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9d8b804a-65b0-48a8-b3dc-2848dbfe847e" ], "x-ms-correlation-request-id": [ - "26b5c009-2735-4981-8e27-e76f09719a36" + "df8fea1d-60f0-44fd-9662-c65fb36ebdda" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095748Z:26b5c009-2735-4981-8e27-e76f09719a36" + "CENTRALUSEUAP:20210418T130514Z:df8fea1d-60f0-44fd-9662-c65fb36ebdda" ], "Date": [ - "Thu, 16 Jan 2020 09:57:48 GMT" + "Sun, 18 Apr 2021 13:05:14 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -12918,29 +12564,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88d7ebc3-ce95-4777-ae07-5ea4e4f9a99b-2020-01-16 09:57:58Z-Ps" + "9e844171-2b16-4c17-bf79-fa633c79220f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165078228)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769878228)\\/\",\"ClientRequestId\":\"88d7ebc3-ce95-4777-ae07-5ea4e4f9a99b-2020-01-16 09:57:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UUiRWNk9gEzXp5ZG0/xV1zNcRsGT/UyiRveCb/MXKbg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747524408)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352324408)\\/\",\"ClientRequestId\":\"e60c0437-7324-4e4d-9c07-8360970a8f20-2021-04-18 13:05:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RUKkmKgf4dlU8LPcJSUhoUdNQU6RdWFhtDPAX9Tj2/I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12951,38 +12597,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11825" + "11700" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3d2f027a-a059-4e56-8c7d-52a3cd6ffff8" + "0b78294c-a729-41d2-88e7-41187aa7f6e4" ], "x-ms-client-request-id": [ - "88d7ebc3-ce95-4777-ae07-5ea4e4f9a99b-2020-01-16 09:57:58Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9e844171-2b16-4c17-bf79-fa633c79220f" ], "x-ms-correlation-request-id": [ - "3d2f027a-a059-4e56-8c7d-52a3cd6ffff8" + "0b78294c-a729-41d2-88e7-41187aa7f6e4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095758Z:3d2f027a-a059-4e56-8c7d-52a3cd6ffff8" + "CENTRALUSEUAP:20210418T130524Z:0b78294c-a729-41d2-88e7-41187aa7f6e4" ], "Date": [ - "Thu, 16 Jan 2020 09:57:58 GMT" + "Sun, 18 Apr 2021 13:05:24 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -12991,29 +12634,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffbd95ad-d325-42b0-aee8-712363646653-2020-01-16 09:58:08Z-Ps" + "6cde1fcc-d297-4a9c-979c-4fc4e8d9aac4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165088674)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769888674)\\/\",\"ClientRequestId\":\"ffbd95ad-d325-42b0-aee8-712363646653-2020-01-16 09:58:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3guOeiifldOz+HKHgdwPtoq34d6dKdsYUMdXdsESxKY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747534801)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352334801)\\/\",\"ClientRequestId\":\"e204ca0e-819d-4998-b20e-f7dbe4c6887a-2021-04-18 13:05:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"33wPfcqSORgo59Y+MZDdALx3bSIFW4Odbkl8+vP4mIs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13024,38 +12667,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11824" + "11698" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "40ba4029-d0db-4b11-bf9a-199db83b262b" + "82be0058-f3e2-454c-ab61-ee16d0c2820d" ], "x-ms-client-request-id": [ - "ffbd95ad-d325-42b0-aee8-712363646653-2020-01-16 09:58:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6cde1fcc-d297-4a9c-979c-4fc4e8d9aac4" ], "x-ms-correlation-request-id": [ - "40ba4029-d0db-4b11-bf9a-199db83b262b" + "82be0058-f3e2-454c-ab61-ee16d0c2820d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095809Z:40ba4029-d0db-4b11-bf9a-199db83b262b" + "CENTRALUSEUAP:20210418T130535Z:82be0058-f3e2-454c-ab61-ee16d0c2820d" ], "Date": [ - "Thu, 16 Jan 2020 09:58:08 GMT" + "Sun, 18 Apr 2021 13:05:34 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -13064,29 +12704,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae0d637d-8c3c-417c-9ffb-4d99471234cf-2020-01-16 09:58:19Z-Ps" + "594f6f94-f25a-4244-b7aa-f0f078292ff0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165099223)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769899223)\\/\",\"ClientRequestId\":\"ae0d637d-8c3c-417c-9ffb-4d99471234cf-2020-01-16 09:58:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9e51I/ItIHj1D/wgzHpkXZXOTkTN272F/nY++QXpVFc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747545228)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352345228)\\/\",\"ClientRequestId\":\"eaaee25f-9036-4412-a524-d0192ce40edf-2021-04-18 13:05:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Z3RwXB2LFffxZPWBOq3ARlx4OO3qoL3HC4ofjg5saOw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13097,38 +12737,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11823" + "11696" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c5ca00f1-a105-4292-a342-a8db15500d46" + "c0d9ee46-aef2-4df3-87bd-8f24dbdfbb1b" ], "x-ms-client-request-id": [ - "ae0d637d-8c3c-417c-9ffb-4d99471234cf-2020-01-16 09:58:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "594f6f94-f25a-4244-b7aa-f0f078292ff0" ], "x-ms-correlation-request-id": [ - "c5ca00f1-a105-4292-a342-a8db15500d46" + "c0d9ee46-aef2-4df3-87bd-8f24dbdfbb1b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095819Z:c5ca00f1-a105-4292-a342-a8db15500d46" + "CENTRALUSEUAP:20210418T130545Z:c0d9ee46-aef2-4df3-87bd-8f24dbdfbb1b" ], "Date": [ - "Thu, 16 Jan 2020 09:58:19 GMT" + "Sun, 18 Apr 2021 13:05:45 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -13137,29 +12774,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0ee8a90-5e65-4c13-9b82-fe6b210a3d5a-2020-01-16 09:58:29Z-Ps" + "5e1d73a1-b2f9-4399-927e-16842f820b86" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165109766)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769909766)\\/\",\"ClientRequestId\":\"b0ee8a90-5e65-4c13-9b82-fe6b210a3d5a-2020-01-16 09:58:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8Hl3nsJTE8/oEdHS8jR9RuKFmM8zMfu5MLsIGCYdJdQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747555617)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352355617)\\/\",\"ClientRequestId\":\"cfd9746b-31c0-4bad-a3fe-f5fcf5b896bd-2021-04-18 13:05:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"I8+fB5bSsvJacLqIu5PsHFuzAsVN6MOt7oB6XzRfa7g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13169,39 +12806,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11694" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9298e1b1-71a2-4106-a4d5-263b10ada875" + "28490e67-6cef-493c-ae96-70794343b88d" ], "x-ms-client-request-id": [ - "b0ee8a90-5e65-4c13-9b82-fe6b210a3d5a-2020-01-16 09:58:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11822" + "5e1d73a1-b2f9-4399-927e-16842f820b86" ], "x-ms-correlation-request-id": [ - "9298e1b1-71a2-4106-a4d5-263b10ada875" + "28490e67-6cef-493c-ae96-70794343b88d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095830Z:9298e1b1-71a2-4106-a4d5-263b10ada875" + "CENTRALUSEUAP:20210418T130555Z:28490e67-6cef-493c-ae96-70794343b88d" ], "Date": [ - "Thu, 16 Jan 2020 09:58:29 GMT" + "Sun, 18 Apr 2021 13:05:55 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -13210,29 +12844,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43c20c71-4caa-4e80-9308-15fbd743323e-2020-01-16 09:58:40Z-Ps" + "d386ab89-ce76-4f0d-af34-fb4489cf8e6e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165120273)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769920273)\\/\",\"ClientRequestId\":\"43c20c71-4caa-4e80-9308-15fbd743323e-2020-01-16 09:58:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Gc9cpXgckSjIIiMDEU2VupBAJdD/vGYY6OAZAPDYpzA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747566021)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352366021)\\/\",\"ClientRequestId\":\"bcda7f65-7c05-4bff-adbd-4e13ae12c76d-2021-04-18 13:06:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ecCI+9/bZkBzQGrhibXP+UD9OnwOp5vj1MFXYMtNCIE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13243,38 +12877,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11821" + "11692" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5e63a72f-67e0-49c9-ad0f-38a5ddf2b631" + "745dc75b-681c-4197-98c2-53300dac1a88" ], "x-ms-client-request-id": [ - "43c20c71-4caa-4e80-9308-15fbd743323e-2020-01-16 09:58:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d386ab89-ce76-4f0d-af34-fb4489cf8e6e" ], "x-ms-correlation-request-id": [ - "5e63a72f-67e0-49c9-ad0f-38a5ddf2b631" + "745dc75b-681c-4197-98c2-53300dac1a88" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095840Z:5e63a72f-67e0-49c9-ad0f-38a5ddf2b631" + "CENTRALUSEUAP:20210418T130606Z:745dc75b-681c-4197-98c2-53300dac1a88" ], "Date": [ - "Thu, 16 Jan 2020 09:58:39 GMT" + "Sun, 18 Apr 2021 13:06:06 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -13283,29 +12914,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee7e29b0-582a-4160-b55d-11b831067693-2020-01-16 09:58:50Z-Ps" + "1cd370c1-762e-4af2-af00-5d3f47d1b89f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165130772)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769930772)\\/\",\"ClientRequestId\":\"ee7e29b0-582a-4160-b55d-11b831067693-2020-01-16 09:58:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rDAIn07QG9AIvaJdVtzdN4bqTuEVGVgcFj0dfD4DYNM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747576416)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352376416)\\/\",\"ClientRequestId\":\"74a2805f-72cd-4091-ae33-25ae313288c2-2021-04-18 13:06:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"27cC+dahTPNP2sfyYimFnfaTIB+kFbZTFiV4sXBaBpM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13316,38 +12947,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11820" + "11690" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "eff0e65f-ec0d-4506-88ac-dda831312b45" + "2a7716a5-02d7-4a03-b6ab-3c6ee50e2c29" ], "x-ms-client-request-id": [ - "ee7e29b0-582a-4160-b55d-11b831067693-2020-01-16 09:58:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1cd370c1-762e-4af2-af00-5d3f47d1b89f" ], "x-ms-correlation-request-id": [ - "eff0e65f-ec0d-4506-88ac-dda831312b45" + "2a7716a5-02d7-4a03-b6ab-3c6ee50e2c29" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095851Z:eff0e65f-ec0d-4506-88ac-dda831312b45" + "CENTRALUSEUAP:20210418T130616Z:2a7716a5-02d7-4a03-b6ab-3c6ee50e2c29" ], "Date": [ - "Thu, 16 Jan 2020 09:58:50 GMT" + "Sun, 18 Apr 2021 13:06:16 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -13356,29 +12984,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1946fce7-af2f-4fcc-a946-17fbc7512733-2020-01-16 09:59:01Z-Ps" + "7c9c26ed-3954-4c29-8027-8e2251b9f637" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165141236)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769941236)\\/\",\"ClientRequestId\":\"1946fce7-af2f-4fcc-a946-17fbc7512733-2020-01-16 09:59:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PIJosYpfoPeAD3ZChrVpWWsekjfEXSfeWQeorcLDUN4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747586809)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352386809)\\/\",\"ClientRequestId\":\"54cd4387-881a-4b48-816d-b93431af8362-2021-04-18 13:06:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"irE9ssXsHtjjuFEgFny9eHzn5/4SYlyrdVtj5n71uQg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13389,38 +13017,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11819" + "11688" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9e8ccb0c-a9f7-4b91-ad52-0b07f9736325" + "5ad696aa-6bce-4211-abaf-7bbb6ba18afe" ], "x-ms-client-request-id": [ - "1946fce7-af2f-4fcc-a946-17fbc7512733-2020-01-16 09:59:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7c9c26ed-3954-4c29-8027-8e2251b9f637" ], "x-ms-correlation-request-id": [ - "9e8ccb0c-a9f7-4b91-ad52-0b07f9736325" + "5ad696aa-6bce-4211-abaf-7bbb6ba18afe" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095901Z:9e8ccb0c-a9f7-4b91-ad52-0b07f9736325" + "CENTRALUSEUAP:20210418T130627Z:5ad696aa-6bce-4211-abaf-7bbb6ba18afe" ], "Date": [ - "Thu, 16 Jan 2020 09:59:01 GMT" + "Sun, 18 Apr 2021 13:06:26 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -13429,29 +13054,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f6792c2-f9d1-41f7-8eec-3502198d4b02-2020-01-16 09:59:11Z-Ps" + "0a042888-c75e-4da9-aa3c-0edb6027c0d8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165151689)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769951689)\\/\",\"ClientRequestId\":\"5f6792c2-f9d1-41f7-8eec-3502198d4b02-2020-01-16 09:59:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WwStTtIgxPSa+pucWd9NWkL0Q/OsaYedK4nZtwogdbc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747597199)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352397199)\\/\",\"ClientRequestId\":\"e0262b72-269e-446f-b539-9ed334f1ad7b-2021-04-18 13:06:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fd1VnQPXSbbpwcLITqKyymjGNIZ7m+v+rYUMPezR3Ow=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13462,38 +13087,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11818" + "11686" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7d506057-6d2e-41e7-a404-7ea8dc5bb8d7" + "ff59ce7b-7d31-473f-a9e6-bf5c4a7c1274" ], "x-ms-client-request-id": [ - "5f6792c2-f9d1-41f7-8eec-3502198d4b02-2020-01-16 09:59:11Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0a042888-c75e-4da9-aa3c-0edb6027c0d8" ], "x-ms-correlation-request-id": [ - "7d506057-6d2e-41e7-a404-7ea8dc5bb8d7" + "ff59ce7b-7d31-473f-a9e6-bf5c4a7c1274" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095916Z:7d506057-6d2e-41e7-a404-7ea8dc5bb8d7" + "CENTRALUSEUAP:20210418T130637Z:ff59ce7b-7d31-473f-a9e6-bf5c4a7c1274" ], "Date": [ - "Thu, 16 Jan 2020 09:59:15 GMT" + "Sun, 18 Apr 2021 13:06:37 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -13502,29 +13124,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99d3d475-dbdf-42bc-a2bd-a24a0079d7c1-2020-01-16 09:59:26Z-Ps" + "0e48f056-ca4f-4a89-9585-e765c4b265b4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165166280)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769966280)\\/\",\"ClientRequestId\":\"99d3d475-dbdf-42bc-a2bd-a24a0079d7c1-2020-01-16 09:59:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Jn6Qx0Zd2yGOciPR4woWIi7mH6fZZwklL/CsgK4oK14=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747607739)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352407739)\\/\",\"ClientRequestId\":\"f5ce2d9b-517c-4bf4-8ce4-15028982ca58-2021-04-18 13:06:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MA27zcyxi9Qim9Ej4RN7eKpt+X5fFZEicfs0aGzx42I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13535,38 +13157,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11817" + "11684" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "fe42e569-000e-4222-a3ce-1a13f6ffff94" + "6bb8d0e5-6d60-4b10-950b-40a62ddd7fa3" ], "x-ms-client-request-id": [ - "99d3d475-dbdf-42bc-a2bd-a24a0079d7c1-2020-01-16 09:59:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0e48f056-ca4f-4a89-9585-e765c4b265b4" ], "x-ms-correlation-request-id": [ - "fe42e569-000e-4222-a3ce-1a13f6ffff94" + "6bb8d0e5-6d60-4b10-950b-40a62ddd7fa3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095926Z:fe42e569-000e-4222-a3ce-1a13f6ffff94" + "CENTRALUSEUAP:20210418T130647Z:6bb8d0e5-6d60-4b10-950b-40a62ddd7fa3" ], "Date": [ - "Thu, 16 Jan 2020 09:59:26 GMT" + "Sun, 18 Apr 2021 13:06:47 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -13575,29 +13194,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6a002dc-b9a2-46d5-8444-915934bc5d63-2020-01-16 09:59:36Z-Ps" + "e6a76317-2b8d-4585-af9b-d87287634443" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165176777)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769976777)\\/\",\"ClientRequestId\":\"c6a002dc-b9a2-46d5-8444-915934bc5d63-2020-01-16 09:59:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"C1ZiDrw5lWAc8eNhek2/AlDrA/sJ+E+csyy4EoCF1RQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747618161)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352418161)\\/\",\"ClientRequestId\":\"c35bdb0b-c42c-462e-a5f6-eb085bdfa161-2021-04-18 13:06:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9cPT99B9LSKBYwXUYA36JF+iiQae1gvlXC4wUA2OQz0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13608,38 +13227,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11816" + "11682" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "064167b7-6519-4768-9846-007694e82e12" + "18321511-0825-4bbd-8280-f911ed73e718" ], "x-ms-client-request-id": [ - "c6a002dc-b9a2-46d5-8444-915934bc5d63-2020-01-16 09:59:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e6a76317-2b8d-4585-af9b-d87287634443" ], "x-ms-correlation-request-id": [ - "064167b7-6519-4768-9846-007694e82e12" + "18321511-0825-4bbd-8280-f911ed73e718" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095937Z:064167b7-6519-4768-9846-007694e82e12" + "CENTRALUSEUAP:20210418T130658Z:18321511-0825-4bbd-8280-f911ed73e718" ], "Date": [ - "Thu, 16 Jan 2020 09:59:36 GMT" + "Sun, 18 Apr 2021 13:06:58 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -13648,29 +13264,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d0b1bc0-f459-4d7e-b9c8-553c0b36f568-2020-01-16 09:59:47Z-Ps" + "f8f49c2c-7fdb-40c6-bbc4-627610d49628" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165187213)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769987213)\\/\",\"ClientRequestId\":\"1d0b1bc0-f459-4d7e-b9c8-553c0b36f568-2020-01-16 09:59:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dJNZipoS48FFKZI7Ch3N86gl6JAhJAiVkc4j1dF/Cb0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747628551)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352428551)\\/\",\"ClientRequestId\":\"71f7c55b-7552-47e3-a04e-981cfe9e6c87-2021-04-18 13:07:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"n8QnlA+rqmlnZZs3ipx0VA6qJforwWI8NC5qSWcu3DI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13681,38 +13297,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11815" + "11680" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5777ff5c-de35-4ab2-9ae8-9eb56459e22d" + "24a5588d-8ac2-4ecc-88d7-0bf7a81e4fbf" ], "x-ms-client-request-id": [ - "1d0b1bc0-f459-4d7e-b9c8-553c0b36f568-2020-01-16 09:59:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f8f49c2c-7fdb-40c6-bbc4-627610d49628" ], "x-ms-correlation-request-id": [ - "5777ff5c-de35-4ab2-9ae8-9eb56459e22d" + "24a5588d-8ac2-4ecc-88d7-0bf7a81e4fbf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095947Z:5777ff5c-de35-4ab2-9ae8-9eb56459e22d" + "CENTRALUSEUAP:20210418T130708Z:24a5588d-8ac2-4ecc-88d7-0bf7a81e4fbf" ], "Date": [ - "Thu, 16 Jan 2020 09:59:46 GMT" + "Sun, 18 Apr 2021 13:07:08 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -13721,29 +13334,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c34238b4-bab8-49f1-923a-ab822d12da48-2020-01-16 09:59:57Z-Ps" + "f1d54096-5fd4-4538-966e-b0b1cbac0e37" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165197680)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579769997680)\\/\",\"ClientRequestId\":\"c34238b4-bab8-49f1-923a-ab822d12da48-2020-01-16 09:59:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rAo/OinNW/wNLsvs3fEx5orcRHBfC9M8S3fc4q6YDOk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747638955)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352438955)\\/\",\"ClientRequestId\":\"a934035e-e86e-429c-885c-0fc3535743e2-2021-04-18 13:07:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BVoI4OXxw91CdyTF9UEJF1+/CnPLExo9XM+POo/ZDz4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13753,39 +13366,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11678" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5f960f6a-9af6-49ff-9c0c-d0ea1e6ff53e" + "28134d46-0eb3-44f7-a6ae-3b0720a86aa9" ], "x-ms-client-request-id": [ - "c34238b4-bab8-49f1-923a-ab822d12da48-2020-01-16 09:59:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11814" + "f1d54096-5fd4-4538-966e-b0b1cbac0e37" ], "x-ms-correlation-request-id": [ - "5f960f6a-9af6-49ff-9c0c-d0ea1e6ff53e" + "28134d46-0eb3-44f7-a6ae-3b0720a86aa9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T095958Z:5f960f6a-9af6-49ff-9c0c-d0ea1e6ff53e" + "CENTRALUSEUAP:20210418T130719Z:28134d46-0eb3-44f7-a6ae-3b0720a86aa9" ], "Date": [ - "Thu, 16 Jan 2020 09:59:57 GMT" + "Sun, 18 Apr 2021 13:07:19 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -13794,29 +13404,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec141420-4ad1-4259-81c2-68d0def3f6f7-2020-01-16 10:00:08Z-Ps" + "d0840243-7b0c-4ae5-a89d-77a5c8d8f435" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165208132)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770008132)\\/\",\"ClientRequestId\":\"ec141420-4ad1-4259-81c2-68d0def3f6f7-2020-01-16 10:00:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5gBvkLe8zqH9ff7o2bVAtdLHkx1ACa8Bb0x6/XtnBL8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747649362)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352449362)\\/\",\"ClientRequestId\":\"c06d11ea-2655-4d2d-a622-08fa9fc68aba-2021-04-18 13:07:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"p6dUiRyme3qicWok32sIos/LKKhiGLkR3xBeLqpXmPA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13827,38 +13437,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11817" + "11676" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "64b0052e-a17a-446b-a4ff-264beec91572" + "3db3ea20-bc82-4fa3-85d1-a152224d7d95" ], "x-ms-client-request-id": [ - "ec141420-4ad1-4259-81c2-68d0def3f6f7-2020-01-16 10:00:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d0840243-7b0c-4ae5-a89d-77a5c8d8f435" ], "x-ms-correlation-request-id": [ - "64b0052e-a17a-446b-a4ff-264beec91572" + "3db3ea20-bc82-4fa3-85d1-a152224d7d95" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100009Z:64b0052e-a17a-446b-a4ff-264beec91572" + "CENTRALUSEUAP:20210418T130729Z:3db3ea20-bc82-4fa3-85d1-a152224d7d95" ], "Date": [ - "Thu, 16 Jan 2020 10:00:09 GMT" + "Sun, 18 Apr 2021 13:07:29 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -13867,29 +13474,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d916bf89-43a5-455f-9248-d0a12d7666de-2020-01-16 10:00:19Z-Ps" + "3b361e16-029c-46b2-ba59-4f947e97a589" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165219660)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770019660)\\/\",\"ClientRequestId\":\"d916bf89-43a5-455f-9248-d0a12d7666de-2020-01-16 10:00:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"o5WHnf5fqZnLz8s2Xd3eXfA/8bShCjE64VvOCHdffoU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747659737)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352459737)\\/\",\"ClientRequestId\":\"a6058031-7848-4219-9379-12671a66f169-2021-04-18 13:07:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oWKFsMp88mh3+bw2MPQPS1d7Fv0uj8u+KYinEDFM4Ko=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13900,38 +13507,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11816" + "11674" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "88a8b601-5b5e-4255-99cb-659530326ddf" + "8e35205c-92b6-4f53-8132-d1e4e0a09825" ], "x-ms-client-request-id": [ - "d916bf89-43a5-455f-9248-d0a12d7666de-2020-01-16 10:00:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3b361e16-029c-46b2-ba59-4f947e97a589" ], "x-ms-correlation-request-id": [ - "88a8b601-5b5e-4255-99cb-659530326ddf" + "8e35205c-92b6-4f53-8132-d1e4e0a09825" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100020Z:88a8b601-5b5e-4255-99cb-659530326ddf" + "CENTRALUSEUAP:20210418T130739Z:8e35205c-92b6-4f53-8132-d1e4e0a09825" ], "Date": [ - "Thu, 16 Jan 2020 10:00:19 GMT" + "Sun, 18 Apr 2021 13:07:39 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -13940,29 +13544,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92dbf9ee-2fc7-4d6e-8970-2e50b2046b22-2020-01-16 10:00:30Z-Ps" + "ca99a274-4047-4174-8108-4e2d375e4ff5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165230127)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770030127)\\/\",\"ClientRequestId\":\"92dbf9ee-2fc7-4d6e-8970-2e50b2046b22-2020-01-16 10:00:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iqQc2b2uAR44uRP5Yxvi0jISCUvfC1OhKq/a7nxUqUE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747670111)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352470111)\\/\",\"ClientRequestId\":\"63be4b61-aad2-4dc9-aa5b-b13db63ae780-2021-04-18 13:07:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GE0qWIY3FzbndkS3a1ExxpTK3KizNZUA1YisTkzTH4U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13973,38 +13577,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11815" + "11672" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "da3e5b29-f975-4290-9044-f22c9f63b106" + "2e235828-85f4-433c-b707-203efab99c84" ], "x-ms-client-request-id": [ - "92dbf9ee-2fc7-4d6e-8970-2e50b2046b22-2020-01-16 10:00:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ca99a274-4047-4174-8108-4e2d375e4ff5" ], "x-ms-correlation-request-id": [ - "da3e5b29-f975-4290-9044-f22c9f63b106" + "2e235828-85f4-433c-b707-203efab99c84" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100030Z:da3e5b29-f975-4290-9044-f22c9f63b106" + "CENTRALUSEUAP:20210418T130750Z:2e235828-85f4-433c-b707-203efab99c84" ], "Date": [ - "Thu, 16 Jan 2020 10:00:30 GMT" + "Sun, 18 Apr 2021 13:07:49 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -14013,29 +13614,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "241deeef-498f-4599-aa4c-7f974c933b59-2020-01-16 10:00:40Z-Ps" + "d04792c2-9bf3-4d87-a9de-24ce29c673c2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165240577)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770040577)\\/\",\"ClientRequestId\":\"241deeef-498f-4599-aa4c-7f974c933b59-2020-01-16 10:00:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"N6ZDeKyAU9WGam1tRWC0q7rZxcVS8z40M0XcnBC9d+Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747680474)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352480474)\\/\",\"ClientRequestId\":\"79e4a978-2de2-4fba-9fe9-d0cdb19c1daf-2021-04-18 13:08:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dwmtCNlN3+j39iR/pJhUwvJb96+7D0L6BNz/TkoULdk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14046,38 +13647,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11814" + "11670" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1e029b06-3e36-4676-9cb4-94ed29850ee6" + "25631361-7e2a-49bc-82c0-715b9844acaa" ], "x-ms-client-request-id": [ - "241deeef-498f-4599-aa4c-7f974c933b59-2020-01-16 10:00:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d04792c2-9bf3-4d87-a9de-24ce29c673c2" ], "x-ms-correlation-request-id": [ - "1e029b06-3e36-4676-9cb4-94ed29850ee6" + "25631361-7e2a-49bc-82c0-715b9844acaa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100040Z:1e029b06-3e36-4676-9cb4-94ed29850ee6" + "CENTRALUSEUAP:20210418T130800Z:25631361-7e2a-49bc-82c0-715b9844acaa" ], "Date": [ - "Thu, 16 Jan 2020 10:00:40 GMT" + "Sun, 18 Apr 2021 13:08:00 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -14086,29 +13684,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "52634b69-9172-4695-a4cb-6ac4adc8071b-2020-01-16 10:00:51Z-Ps" + "bbf1f744-c99e-4ad8-aff1-e6692e26459c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165251012)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770051012)\\/\",\"ClientRequestId\":\"52634b69-9172-4695-a4cb-6ac4adc8071b-2020-01-16 10:00:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3gYFP3VQxXsPWm7fVeZ+T/N4Yv7m6g8cnEzmNZdAkpU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747690852)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352490852)\\/\",\"ClientRequestId\":\"c941376c-b605-4673-8d2f-f30a89ed8375-2021-04-18 13:08:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"G3UTAJMjeymHCgVt0I/JmitspcT1yqGomR3HJb4UiKg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14119,38 +13717,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11813" + "11668" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ef849400-ff49-4a5e-9a8c-4d1d00b06016" + "befbce23-ff67-45ae-a669-5448a436e659" ], "x-ms-client-request-id": [ - "52634b69-9172-4695-a4cb-6ac4adc8071b-2020-01-16 10:00:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bbf1f744-c99e-4ad8-aff1-e6692e26459c" ], "x-ms-correlation-request-id": [ - "ef849400-ff49-4a5e-9a8c-4d1d00b06016" + "befbce23-ff67-45ae-a669-5448a436e659" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100051Z:ef849400-ff49-4a5e-9a8c-4d1d00b06016" + "CENTRALUSEUAP:20210418T130811Z:befbce23-ff67-45ae-a669-5448a436e659" ], "Date": [ - "Thu, 16 Jan 2020 10:00:50 GMT" + "Sun, 18 Apr 2021 13:08:10 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -14159,29 +13754,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4519f9c-01d9-458d-b880-ff5971d0a190-2020-01-16 10:01:01Z-Ps" + "fddbdb0c-c6dd-45be-b88d-f489e93eeb7f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165261458)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770061458)\\/\",\"ClientRequestId\":\"f4519f9c-01d9-458d-b880-ff5971d0a190-2020-01-16 10:01:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"n3psSOslsXmMB8dyOlLEMHmP9PgOPq2F1zM0vUd2gPY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747701225)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352501225)\\/\",\"ClientRequestId\":\"5eb2386e-4303-4c96-b197-721ee8dde0e4-2021-04-18 13:08:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NUYK/voK3WKEACBN/HIQmyJFR0sH+goes+GQn5gjjf8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14192,38 +13787,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11812" + "11666" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6ba2a161-7bad-41ea-b4e4-9c03a1df07a4" + "417713f3-b680-4e60-bf0a-8b85d3d345c0" ], "x-ms-client-request-id": [ - "f4519f9c-01d9-458d-b880-ff5971d0a190-2020-01-16 10:01:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "fddbdb0c-c6dd-45be-b88d-f489e93eeb7f" ], "x-ms-correlation-request-id": [ - "6ba2a161-7bad-41ea-b4e4-9c03a1df07a4" + "417713f3-b680-4e60-bf0a-8b85d3d345c0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100103Z:6ba2a161-7bad-41ea-b4e4-9c03a1df07a4" + "CENTRALUSEUAP:20210418T130821Z:417713f3-b680-4e60-bf0a-8b85d3d345c0" ], "Date": [ - "Thu, 16 Jan 2020 10:01:02 GMT" + "Sun, 18 Apr 2021 13:08:21 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -14232,29 +13824,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac54d76c-f3d9-4f8c-b8c0-05a88a7436a8-2020-01-16 10:01:13Z-Ps" + "8a9041c1-18f2-4fd0-b3d7-6a1615cbd3cc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165273967)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770073967)\\/\",\"ClientRequestId\":\"ac54d76c-f3d9-4f8c-b8c0-05a88a7436a8-2020-01-16 10:01:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eeT0WndD9lDTEyeBOdGRsOM18+ELq0fHyjzjZyaeW08=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747711591)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352511591)\\/\",\"ClientRequestId\":\"85363b9f-36d8-490b-90a1-8cd1e016d596-2021-04-18 13:08:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TTNiqklMM30nh9GHx0XvyH33kYCZa7WXaivKc1tylKU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14265,38 +13857,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11810" + "11664" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "78649368-865e-48a3-b6d4-2f59bf7109b0" + "78622609-f45a-454d-a310-e80dff6cb97a" ], "x-ms-client-request-id": [ - "ac54d76c-f3d9-4f8c-b8c0-05a88a7436a8-2020-01-16 10:01:13Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8a9041c1-18f2-4fd0-b3d7-6a1615cbd3cc" ], "x-ms-correlation-request-id": [ - "78649368-865e-48a3-b6d4-2f59bf7109b0" + "78622609-f45a-454d-a310-e80dff6cb97a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100115Z:78649368-865e-48a3-b6d4-2f59bf7109b0" + "CENTRALUSEUAP:20210418T130831Z:78622609-f45a-454d-a310-e80dff6cb97a" ], "Date": [ - "Thu, 16 Jan 2020 10:01:14 GMT" + "Sun, 18 Apr 2021 13:08:31 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -14305,29 +13894,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4a8d4c3-3324-4fdf-8f96-22799d7eb105-2020-01-16 10:01:25Z-Ps" + "b9071ecb-01d3-421c-86d9-f4c8595feee8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165285491)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770085491)\\/\",\"ClientRequestId\":\"d4a8d4c3-3324-4fdf-8f96-22799d7eb105-2020-01-16 10:01:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AXQTbL+bVqho9aWbhFTzo7JY+Oz+hrbMoqkNzmLpaAI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747721988)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352521988)\\/\",\"ClientRequestId\":\"3845afdf-89c4-45e6-a030-cb9f78c04ef4-2021-04-18 13:08:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/PQaWHYucK5H1WXcnUxxL9w+ddqzb7i6zWAOolrF/9A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14338,38 +13927,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11809" + "11662" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1be382be-85b2-4654-925b-470dcd88f16b" + "fe84c685-833e-49ce-bc8d-1432266dd160" ], "x-ms-client-request-id": [ - "d4a8d4c3-3324-4fdf-8f96-22799d7eb105-2020-01-16 10:01:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b9071ecb-01d3-421c-86d9-f4c8595feee8" ], "x-ms-correlation-request-id": [ - "1be382be-85b2-4654-925b-470dcd88f16b" + "fe84c685-833e-49ce-bc8d-1432266dd160" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100126Z:1be382be-85b2-4654-925b-470dcd88f16b" + "CENTRALUSEUAP:20210418T130842Z:fe84c685-833e-49ce-bc8d-1432266dd160" ], "Date": [ - "Thu, 16 Jan 2020 10:01:26 GMT" + "Sun, 18 Apr 2021 13:08:42 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -14378,29 +13964,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22915792-2a1d-4716-9419-8e85c0ac6a75-2020-01-16 10:01:36Z-Ps" + "3dde904f-d6bf-41e0-bb9a-f7ff80639c6d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165296803)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770096803)\\/\",\"ClientRequestId\":\"22915792-2a1d-4716-9419-8e85c0ac6a75-2020-01-16 10:01:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jYa4y8Dv5DQGje3rrIzMXpZgHyCtnNMBQldaqZbX4iM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747732355)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352532355)\\/\",\"ClientRequestId\":\"0569bb83-f045-42e8-b575-1adcc59ff64a-2021-04-18 13:08:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VC5ZIr5xj1n9vOTc9Fi8//Wo7Z3RW15RryBSS5QqTO0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14411,38 +13997,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11808" + "11660" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "55b6fca2-dd09-4fdf-af57-fa464042e291" + "7c0ea8a9-1dac-4a24-9868-6a128a47d73b" ], "x-ms-client-request-id": [ - "22915792-2a1d-4716-9419-8e85c0ac6a75-2020-01-16 10:01:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3dde904f-d6bf-41e0-bb9a-f7ff80639c6d" ], "x-ms-correlation-request-id": [ - "55b6fca2-dd09-4fdf-af57-fa464042e291" + "7c0ea8a9-1dac-4a24-9868-6a128a47d73b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100137Z:55b6fca2-dd09-4fdf-af57-fa464042e291" + "CENTRALUSEUAP:20210418T130852Z:7c0ea8a9-1dac-4a24-9868-6a128a47d73b" ], "Date": [ - "Thu, 16 Jan 2020 10:01:36 GMT" + "Sun, 18 Apr 2021 13:08:51 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -14451,29 +14034,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e40a21d-71eb-4f26-b700-fbffabc53609-2020-01-16 10:01:47Z-Ps" + "cc936ae6-ad4a-49b6-8779-27a0da171568" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165307314)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770107314)\\/\",\"ClientRequestId\":\"6e40a21d-71eb-4f26-b700-fbffabc53609-2020-01-16 10:01:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"s6asF5kR+UkbUbTekOj6PpqYYIFiTH16iccn+u4LK2o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747742761)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352542761)\\/\",\"ClientRequestId\":\"8e99b819-54e9-4b36-a055-2cac3988084e-2021-04-18 13:09:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FKus+oQuS1SZyedDqCFgarImw3Rg9YFL4pWMrfNN/D8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14484,38 +14067,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11807" + "11658" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d1e72444-1181-40e4-a095-e39219bf84e8" + "7fd8c80e-1ba8-4878-989e-dbe4963dba7b" ], "x-ms-client-request-id": [ - "6e40a21d-71eb-4f26-b700-fbffabc53609-2020-01-16 10:01:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cc936ae6-ad4a-49b6-8779-27a0da171568" ], "x-ms-correlation-request-id": [ - "d1e72444-1181-40e4-a095-e39219bf84e8" + "7fd8c80e-1ba8-4878-989e-dbe4963dba7b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100147Z:d1e72444-1181-40e4-a095-e39219bf84e8" + "CENTRALUSEUAP:20210418T130902Z:7fd8c80e-1ba8-4878-989e-dbe4963dba7b" ], "Date": [ - "Thu, 16 Jan 2020 10:01:47 GMT" + "Sun, 18 Apr 2021 13:09:02 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -14524,29 +14104,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b5d070a-ebbf-4478-8ed5-3f6e6a5aae93-2020-01-16 10:01:57Z-Ps" + "66f4f734-e788-4cac-9937-7b9724b4ce1f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165317757)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770117757)\\/\",\"ClientRequestId\":\"4b5d070a-ebbf-4478-8ed5-3f6e6a5aae93-2020-01-16 10:01:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oyGFG7hNmY1JIqhyJzSoT0193XZY7khOUbaWbn2s8PY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747753144)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352553144)\\/\",\"ClientRequestId\":\"4d0e0420-fbd1-4b4f-bfb3-8aad46a8f640-2021-04-18 13:09:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8rCZPU2BPgLRwbxH3hEBk4ndis/61f2W6SCpbA2+fv0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14557,38 +14137,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11806" + "11656" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d802ad87-1c03-493b-b041-601568bec30e" + "500a374e-c59a-4588-8d49-16c44b200c7e" ], "x-ms-client-request-id": [ - "4b5d070a-ebbf-4478-8ed5-3f6e6a5aae93-2020-01-16 10:01:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "66f4f734-e788-4cac-9937-7b9724b4ce1f" ], "x-ms-correlation-request-id": [ - "d802ad87-1c03-493b-b041-601568bec30e" + "500a374e-c59a-4588-8d49-16c44b200c7e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100158Z:d802ad87-1c03-493b-b041-601568bec30e" + "CENTRALUSEUAP:20210418T130913Z:500a374e-c59a-4588-8d49-16c44b200c7e" ], "Date": [ - "Thu, 16 Jan 2020 10:01:57 GMT" + "Sun, 18 Apr 2021 13:09:13 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -14597,29 +14174,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "230e6c4b-ebaa-441d-8a2d-62e4bab78433-2020-01-16 10:02:08Z-Ps" + "ffd9bb82-8a4b-473b-88f8-7ca243462836" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165328217)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770128217)\\/\",\"ClientRequestId\":\"230e6c4b-ebaa-441d-8a2d-62e4bab78433-2020-01-16 10:02:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yiM5wLIV2QDOXsZELN1OEsS8nE7E9ohozEVIsZ5m/B4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747763520)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352563520)\\/\",\"ClientRequestId\":\"5fd0c73a-2d2d-4ea0-addb-6c8e623f1f01-2021-04-18 13:09:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tmdDNoxHqorV5Aokv4xBV0j0pKtYhtppasSJVUUV424=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14630,38 +14207,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11805" + "11654" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "913db9b7-7f8d-4a30-bb2b-f9ecae2d97e7" + "f7c8cdc3-d5b5-45b7-94b7-f92414c89a51" ], "x-ms-client-request-id": [ - "230e6c4b-ebaa-441d-8a2d-62e4bab78433-2020-01-16 10:02:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ffd9bb82-8a4b-473b-88f8-7ca243462836" ], "x-ms-correlation-request-id": [ - "913db9b7-7f8d-4a30-bb2b-f9ecae2d97e7" + "f7c8cdc3-d5b5-45b7-94b7-f92414c89a51" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100208Z:913db9b7-7f8d-4a30-bb2b-f9ecae2d97e7" + "CENTRALUSEUAP:20210418T130923Z:f7c8cdc3-d5b5-45b7-94b7-f92414c89a51" ], "Date": [ - "Thu, 16 Jan 2020 10:02:08 GMT" + "Sun, 18 Apr 2021 13:09:23 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -14670,29 +14244,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48bc8e9b-d5e1-482f-86b7-5314098144d9-2020-01-16 10:02:18Z-Ps" + "5d5c5cf0-5606-4615-b9cd-769864a25e55" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165338953)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770138953)\\/\",\"ClientRequestId\":\"48bc8e9b-d5e1-482f-86b7-5314098144d9-2020-01-16 10:02:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1eJLrw/qKPDKMFKD2OhVP50Xzi80PW26jhWlTDZhtDY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747773891)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352573891)\\/\",\"ClientRequestId\":\"ebd9d721-da7d-4ea0-9bdc-8b50209de55a-2021-04-18 13:09:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dq5uOiHZZbehYEtbhEdhcHR3cT5LiwT06Kput2mvwKw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14702,39 +14276,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11652" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8f03c285-35de-4073-adc3-f7333a07bb1d" + "382ab06e-917f-4bf5-8c20-a83fcef9d8b0" ], "x-ms-client-request-id": [ - "48bc8e9b-d5e1-482f-86b7-5314098144d9-2020-01-16 10:02:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11804" + "5d5c5cf0-5606-4615-b9cd-769864a25e55" ], "x-ms-correlation-request-id": [ - "8f03c285-35de-4073-adc3-f7333a07bb1d" + "382ab06e-917f-4bf5-8c20-a83fcef9d8b0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100219Z:8f03c285-35de-4073-adc3-f7333a07bb1d" + "CENTRALUSEUAP:20210418T130934Z:382ab06e-917f-4bf5-8c20-a83fcef9d8b0" ], "Date": [ - "Thu, 16 Jan 2020 10:02:18 GMT" + "Sun, 18 Apr 2021 13:09:33 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -14743,29 +14314,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9a8b16ec-cc05-4c2f-831e-b2e052df229a-2020-01-16 10:02:29Z-Ps" + "aad56006-af3e-42b2-a5f9-5dc1831e3e41" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165349445)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770149445)\\/\",\"ClientRequestId\":\"9a8b16ec-cc05-4c2f-831e-b2e052df229a-2020-01-16 10:02:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jeLtO2mAn0JNlnX/ScFR/nQYEOq1nVikIBdECjJ1VdM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747784274)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352584274)\\/\",\"ClientRequestId\":\"364943fa-d72f-4fee-acf1-5e8d0849aaf3-2021-04-18 13:09:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Acfvcc0g7N9LVoUatnTmpCfoAjU0uyS1yXS3MyfMugw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14775,39 +14346,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11650" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "11e2270a-9a73-47ca-9cb4-28aea6f9d3ed" + "83a67b3c-c077-423f-8194-b73a54d67126" ], "x-ms-client-request-id": [ - "9a8b16ec-cc05-4c2f-831e-b2e052df229a-2020-01-16 10:02:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11803" + "aad56006-af3e-42b2-a5f9-5dc1831e3e41" ], "x-ms-correlation-request-id": [ - "11e2270a-9a73-47ca-9cb4-28aea6f9d3ed" + "83a67b3c-c077-423f-8194-b73a54d67126" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100231Z:11e2270a-9a73-47ca-9cb4-28aea6f9d3ed" + "CENTRALUSEUAP:20210418T130944Z:83a67b3c-c077-423f-8194-b73a54d67126" ], "Date": [ - "Thu, 16 Jan 2020 10:02:30 GMT" + "Sun, 18 Apr 2021 13:09:44 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -14816,29 +14384,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80b0221d-da0d-44ea-b78f-739981a338b3-2020-01-16 10:02:41Z-Ps" + "9d0f0533-7c56-4a54-aa40-95692edb38c2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165361179)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770161179)\\/\",\"ClientRequestId\":\"80b0221d-da0d-44ea-b78f-739981a338b3-2020-01-16 10:02:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FNt2mj9lhfMNDSrqdD8kiWEbDtrH/7lZxivVMI3cTSQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747794653)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352594653)\\/\",\"ClientRequestId\":\"4c889bb6-1f58-4136-8c79-8dc2d8d68782-2021-04-18 13:09:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yCN6tkzhbmeG8PO3pQIA7B9bvNcvKJG9bHi0j1cWUws=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14849,38 +14417,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11802" + "11648" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "35baf35c-8194-4e00-8dd9-4102503b30e1" + "834e61d8-60c3-4ddf-998c-4cd1fd875f80" ], "x-ms-client-request-id": [ - "80b0221d-da0d-44ea-b78f-739981a338b3-2020-01-16 10:02:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9d0f0533-7c56-4a54-aa40-95692edb38c2" ], "x-ms-correlation-request-id": [ - "35baf35c-8194-4e00-8dd9-4102503b30e1" + "834e61d8-60c3-4ddf-998c-4cd1fd875f80" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100242Z:35baf35c-8194-4e00-8dd9-4102503b30e1" + "CENTRALUSEUAP:20210418T130954Z:834e61d8-60c3-4ddf-998c-4cd1fd875f80" ], "Date": [ - "Thu, 16 Jan 2020 10:02:42 GMT" + "Sun, 18 Apr 2021 13:09:54 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -14889,29 +14454,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3f71ff4-8f41-452a-a55a-00efa24c5652-2020-01-16 10:02:52Z-Ps" + "ac854f58-f7d2-4ed1-9293-be305ba6fba5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165372984)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770172984)\\/\",\"ClientRequestId\":\"a3f71ff4-8f41-452a-a55a-00efa24c5652-2020-01-16 10:02:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jo5zNj4brklYi1O7MN1OQsaDlpnDpmVbQxXiGYV/XRM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747805022)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352605022)\\/\",\"ClientRequestId\":\"cd18739c-c771-4722-8e03-0ff60e75e294-2021-04-18 13:10:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lqR3qlp2U/Axf6KoXcruW17WCq9z+kt+aPgoDnoFdbM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14922,38 +14487,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11801" + "11646" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "81facb92-4939-458c-9c1d-057b51136925" + "4eca75ff-8003-422d-9ecc-91e51a8708c6" ], "x-ms-client-request-id": [ - "a3f71ff4-8f41-452a-a55a-00efa24c5652-2020-01-16 10:02:52Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ac854f58-f7d2-4ed1-9293-be305ba6fba5" ], "x-ms-correlation-request-id": [ - "81facb92-4939-458c-9c1d-057b51136925" + "4eca75ff-8003-422d-9ecc-91e51a8708c6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100253Z:81facb92-4939-458c-9c1d-057b51136925" + "CENTRALUSEUAP:20210418T131005Z:4eca75ff-8003-422d-9ecc-91e51a8708c6" ], "Date": [ - "Thu, 16 Jan 2020 10:02:52 GMT" + "Sun, 18 Apr 2021 13:10:04 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -14962,29 +14524,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45621ae2-28ef-4127-8668-39a987919d02-2020-01-16 10:03:03Z-Ps" + "f7060f7b-14fa-43e8-81d1-342896f8044a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165383470)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770183470)\\/\",\"ClientRequestId\":\"45621ae2-28ef-4127-8668-39a987919d02-2020-01-16 10:03:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8pr9950lshlm6jQ1YeQMdTr8phl6SWqH8uGRBmFdau8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747815386)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352615386)\\/\",\"ClientRequestId\":\"1d5d435b-7c8e-415d-b291-234abf1713b4-2021-04-18 13:10:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OWD18llq3fNqicYE8y8k+vMZxSpN0rf/Asn99lWRLpg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14995,38 +14557,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11800" + "11644" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d5d0fc95-9cdb-4e0f-b2e6-da35881f4ec7" + "e33379bc-4767-4276-94ce-c4b2aaa6ca58" ], "x-ms-client-request-id": [ - "45621ae2-28ef-4127-8668-39a987919d02-2020-01-16 10:03:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f7060f7b-14fa-43e8-81d1-342896f8044a" ], "x-ms-correlation-request-id": [ - "d5d0fc95-9cdb-4e0f-b2e6-da35881f4ec7" + "e33379bc-4767-4276-94ce-c4b2aaa6ca58" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100304Z:d5d0fc95-9cdb-4e0f-b2e6-da35881f4ec7" + "CENTRALUSEUAP:20210418T131015Z:e33379bc-4767-4276-94ce-c4b2aaa6ca58" ], "Date": [ - "Thu, 16 Jan 2020 10:03:04 GMT" + "Sun, 18 Apr 2021 13:10:15 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -15035,29 +14594,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d9179b8-c079-46f5-b872-15d0277a7f77-2020-01-16 10:03:15Z-Ps" + "9a76227b-4265-49e2-b3d4-b1f8be0b7301" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165395069)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770195069)\\/\",\"ClientRequestId\":\"0d9179b8-c079-46f5-b872-15d0277a7f77-2020-01-16 10:03:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"U/FzK9IZ2vMDog6sdV0fnXuHzYLw3Mxv+F/MuhDPzzU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747825770)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352625770)\\/\",\"ClientRequestId\":\"238f06f9-9804-41a7-bc8f-9cd8a4c4fe43-2021-04-18 13:10:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IPgqUUX0N1waStMZhw0zu5liMbrQEhUlk7vj7ioeHJ4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15068,38 +14627,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11799" + "11642" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4247dcd0-cbed-4ab8-acb5-831c5d6f9dc2" + "6bb8ce61-eba2-44a5-bdd0-01ec3c1811f4" ], "x-ms-client-request-id": [ - "0d9179b8-c079-46f5-b872-15d0277a7f77-2020-01-16 10:03:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9a76227b-4265-49e2-b3d4-b1f8be0b7301" ], "x-ms-correlation-request-id": [ - "4247dcd0-cbed-4ab8-acb5-831c5d6f9dc2" + "6bb8ce61-eba2-44a5-bdd0-01ec3c1811f4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100315Z:4247dcd0-cbed-4ab8-acb5-831c5d6f9dc2" + "CENTRALUSEUAP:20210418T131025Z:6bb8ce61-eba2-44a5-bdd0-01ec3c1811f4" ], "Date": [ - "Thu, 16 Jan 2020 10:03:14 GMT" + "Sun, 18 Apr 2021 13:10:25 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -15108,29 +14664,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5ab5358-3121-42ee-8c12-d33cf73a4190-2020-01-16 10:03:25Z-Ps" + "0fe7b066-8ada-411b-9b7b-d34070de27e4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165405571)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770205571)\\/\",\"ClientRequestId\":\"e5ab5358-3121-42ee-8c12-d33cf73a4190-2020-01-16 10:03:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DyJBk8NnSR03DeUEa6o+qiZ8+RvZavhVrdgbmBbhakM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747836128)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352636128)\\/\",\"ClientRequestId\":\"e3999465-9131-4718-ba14-c0e5e2752c41-2021-04-18 13:10:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"v4lEqtdRtVkC3KI2KFYoRkBPzL6kDBGwKtMuDoBQAwY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15141,38 +14697,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11798" + "11640" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a6bdc3e0-88d9-44c1-805c-3042d239ee8e" + "ab9c9b2e-24ba-4894-b3df-85ec1da92d04" ], "x-ms-client-request-id": [ - "e5ab5358-3121-42ee-8c12-d33cf73a4190-2020-01-16 10:03:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0fe7b066-8ada-411b-9b7b-d34070de27e4" ], "x-ms-correlation-request-id": [ - "a6bdc3e0-88d9-44c1-805c-3042d239ee8e" + "ab9c9b2e-24ba-4894-b3df-85ec1da92d04" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100325Z:a6bdc3e0-88d9-44c1-805c-3042d239ee8e" + "CENTRALUSEUAP:20210418T131036Z:ab9c9b2e-24ba-4894-b3df-85ec1da92d04" ], "Date": [ - "Thu, 16 Jan 2020 10:03:25 GMT" + "Sun, 18 Apr 2021 13:10:36 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -15181,29 +14734,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27b2f2ad-dfa9-41a5-815c-57b4688c0906-2020-01-16 10:03:36Z-Ps" + "7a865a0a-1abd-4a36-9677-2796916c60b8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165416026)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770216026)\\/\",\"ClientRequestId\":\"27b2f2ad-dfa9-41a5-815c-57b4688c0906-2020-01-16 10:03:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LBRJJ0Iy85YshtI2jXz5ly/Fc4ufb8/UtsSMsxhpLx4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747846551)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352646551)\\/\",\"ClientRequestId\":\"8a6d7397-a1d2-4faa-bae9-89dd0083f8de-2021-04-18 13:10:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vbSeHR+Oe8x54EDiTP8z9ZPw7Q1jta9yUal/DdFrIQA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15214,38 +14767,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11797" + "11638" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6c68006a-4efe-4013-b959-e48f5976794d" + "b7b679a5-8021-43a8-b411-1dcc07b9178b" ], "x-ms-client-request-id": [ - "27b2f2ad-dfa9-41a5-815c-57b4688c0906-2020-01-16 10:03:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7a865a0a-1abd-4a36-9677-2796916c60b8" ], "x-ms-correlation-request-id": [ - "6c68006a-4efe-4013-b959-e48f5976794d" + "b7b679a5-8021-43a8-b411-1dcc07b9178b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100336Z:6c68006a-4efe-4013-b959-e48f5976794d" + "CENTRALUSEUAP:20210418T131046Z:b7b679a5-8021-43a8-b411-1dcc07b9178b" ], "Date": [ - "Thu, 16 Jan 2020 10:03:35 GMT" + "Sun, 18 Apr 2021 13:10:46 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -15254,29 +14804,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60700bdd-316b-49ef-a16d-fd457c7cd1da-2020-01-16 10:03:46Z-Ps" + "2ecec7d5-17f6-4f81-be93-a446972835dd" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165426514)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770226514)\\/\",\"ClientRequestId\":\"60700bdd-316b-49ef-a16d-fd457c7cd1da-2020-01-16 10:03:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"khYHfPz51tahBwiXNH93L0yvZH1xGLM0R31f78JLiuU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747856920)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352656920)\\/\",\"ClientRequestId\":\"0b236f41-0ec8-4ff9-b402-87e1e6a28b53-2021-04-18 13:10:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Y9GsNqzYK0vPwRNrp75x7N9Vve1FWJ/yYaIoY+uZljI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15286,39 +14836,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11796" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "11a4118a-fe78-45d1-999a-0d2deb0d2ef0" + "a01eb8b7-dead-45df-8af6-f6245035c2e2" ], "x-ms-client-request-id": [ - "60700bdd-316b-49ef-a16d-fd457c7cd1da-2020-01-16 10:03:46Z-Ps" + "2ecec7d5-17f6-4f81-be93-a446972835dd" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11636" ], "x-ms-correlation-request-id": [ - "11a4118a-fe78-45d1-999a-0d2deb0d2ef0" + "a01eb8b7-dead-45df-8af6-f6245035c2e2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100346Z:11a4118a-fe78-45d1-999a-0d2deb0d2ef0" + "CENTRALUSEUAP:20210418T131057Z:a01eb8b7-dead-45df-8af6-f6245035c2e2" ], "Date": [ - "Thu, 16 Jan 2020 10:03:46 GMT" + "Sun, 18 Apr 2021 13:10:56 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -15327,29 +14874,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adcf7961-5d15-4148-af64-14c065285c6c-2020-01-16 10:03:57Z-Ps" + "8834d947-d0f2-417b-b510-ff8bf7808bcb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165437008)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770237008)\\/\",\"ClientRequestId\":\"adcf7961-5d15-4148-af64-14c065285c6c-2020-01-16 10:03:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/PmOY6r/g3mmFjlnO01n/0u6Gc4xdgQO7dA10M8dnV4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747867284)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352667284)\\/\",\"ClientRequestId\":\"101eb144-933d-45f2-9d68-8c52c79385b7-2021-04-18 13:11:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tmFBY/aGiceUHQqI5VEgoRqp4ZdKPsBxsBE0vknEb6w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15359,39 +14906,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11634" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5601b63d-fc78-40d0-b2f4-dcb3e15e9e6d" + "61c885c9-c779-45e5-85f5-0f2f82fc95a7" ], "x-ms-client-request-id": [ - "adcf7961-5d15-4148-af64-14c065285c6c-2020-01-16 10:03:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11795" + "8834d947-d0f2-417b-b510-ff8bf7808bcb" ], "x-ms-correlation-request-id": [ - "5601b63d-fc78-40d0-b2f4-dcb3e15e9e6d" + "61c885c9-c779-45e5-85f5-0f2f82fc95a7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100357Z:5601b63d-fc78-40d0-b2f4-dcb3e15e9e6d" + "CENTRALUSEUAP:20210418T131107Z:61c885c9-c779-45e5-85f5-0f2f82fc95a7" ], "Date": [ - "Thu, 16 Jan 2020 10:03:57 GMT" + "Sun, 18 Apr 2021 13:11:07 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -15400,29 +14944,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b91e179-ad69-4eb1-8f93-efc51f3c3413-2020-01-16 10:04:07Z-Ps" + "f6b4a3ee-42d1-48ae-8d98-5888ea5af87f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165447483)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770247483)\\/\",\"ClientRequestId\":\"0b91e179-ad69-4eb1-8f93-efc51f3c3413-2020-01-16 10:04:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cblQekXGsnXd1AGbNPl7ON/vWwpyze2CEwfAm6H7caE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747877685)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352677685)\\/\",\"ClientRequestId\":\"82f77b61-2918-4d4e-81cd-3aa87934c4ea-2021-04-18 13:11:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tcF47ImK2CYxE3Bdugxcm1hBR3bDJfwqpHy4Nxnb6ec=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15433,38 +14977,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11794" + "11632" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5b2312b3-a276-4156-bb18-18f9ed29ef79" + "be99e0b3-5f9d-4581-b97b-62d5c5e46799" ], "x-ms-client-request-id": [ - "0b91e179-ad69-4eb1-8f93-efc51f3c3413-2020-01-16 10:04:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f6b4a3ee-42d1-48ae-8d98-5888ea5af87f" ], "x-ms-correlation-request-id": [ - "5b2312b3-a276-4156-bb18-18f9ed29ef79" + "be99e0b3-5f9d-4581-b97b-62d5c5e46799" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100409Z:5b2312b3-a276-4156-bb18-18f9ed29ef79" + "CENTRALUSEUAP:20210418T131117Z:be99e0b3-5f9d-4581-b97b-62d5c5e46799" ], "Date": [ - "Thu, 16 Jan 2020 10:04:08 GMT" + "Sun, 18 Apr 2021 13:11:17 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -15473,29 +15014,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b8100970-3e6f-426f-bbec-235d180abddb-2020-01-16 10:04:19Z-Ps" + "5ee380ca-1316-478f-970a-9065bfce2bca" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165459196)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770259196)\\/\",\"ClientRequestId\":\"b8100970-3e6f-426f-bbec-235d180abddb-2020-01-16 10:04:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NrQ0s99RhEfsFRq50JzVjjpxDS+X4eG5TR6Tsrj8yrw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747888050)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352688050)\\/\",\"ClientRequestId\":\"0c0b57bf-a389-4ea4-9f24-832718d95817-2021-04-18 13:11:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"plWtrI0u+kDykMD0KY+JlH4R7au5/YC8SERArsafHhI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15506,38 +15047,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11793" + "11630" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ad82dfb8-c3d6-4861-818c-2f8c7f2fa701" + "a03afef8-7dd5-46b2-9ef6-e137fa42bfc4" ], "x-ms-client-request-id": [ - "b8100970-3e6f-426f-bbec-235d180abddb-2020-01-16 10:04:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5ee380ca-1316-478f-970a-9065bfce2bca" ], "x-ms-correlation-request-id": [ - "ad82dfb8-c3d6-4861-818c-2f8c7f2fa701" + "a03afef8-7dd5-46b2-9ef6-e137fa42bfc4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100419Z:ad82dfb8-c3d6-4861-818c-2f8c7f2fa701" + "CENTRALUSEUAP:20210418T131128Z:a03afef8-7dd5-46b2-9ef6-e137fa42bfc4" ], "Date": [ - "Thu, 16 Jan 2020 10:04:18 GMT" + "Sun, 18 Apr 2021 13:11:27 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -15546,29 +15084,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f12427e-f4ac-4918-9746-c98720e63854-2020-01-16 10:04:29Z-Ps" + "d528ed3e-1042-4d33-8f73-68ac49558d75" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165469676)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770269676)\\/\",\"ClientRequestId\":\"0f12427e-f4ac-4918-9746-c98720e63854-2020-01-16 10:04:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qtIT+iUMyjHAINrdOJgyJJyP2oEw0O9OAsesX7hoPiI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747898433)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352698433)\\/\",\"ClientRequestId\":\"83f4e846-0d3e-498f-b241-5d572ded50e7-2021-04-18 13:11:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wCbwWHF6451gokV1X7/B3b1dx3mctQwc1g/G/lCza9I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15579,38 +15117,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11792" + "11628" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ea615302-4fab-4cb6-901d-0035aab2251d" + "2d2c3dcc-422e-400f-bc36-1c56f43d716b" ], "x-ms-client-request-id": [ - "0f12427e-f4ac-4918-9746-c98720e63854-2020-01-16 10:04:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d528ed3e-1042-4d33-8f73-68ac49558d75" ], "x-ms-correlation-request-id": [ - "ea615302-4fab-4cb6-901d-0035aab2251d" + "2d2c3dcc-422e-400f-bc36-1c56f43d716b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100430Z:ea615302-4fab-4cb6-901d-0035aab2251d" + "CENTRALUSEUAP:20210418T131138Z:2d2c3dcc-422e-400f-bc36-1c56f43d716b" ], "Date": [ - "Thu, 16 Jan 2020 10:04:29 GMT" + "Sun, 18 Apr 2021 13:11:38 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -15619,29 +15154,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36df3a51-334b-4487-94aa-bd890d6f1d25-2020-01-16 10:04:40Z-Ps" + "6a738bbc-62a4-4197-91eb-91930b5f93c3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165480146)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770280146)\\/\",\"ClientRequestId\":\"36df3a51-334b-4487-94aa-bd890d6f1d25-2020-01-16 10:04:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Gp6FnE8d1FSfaTOXcqxv4cHz6bx1BfA/KGwEQYpALMM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747908831)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352708831)\\/\",\"ClientRequestId\":\"e6c6346c-9ff9-44ce-9c36-6628aab8ab1b-2021-04-18 13:11:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bsYISQsQ5ACAKQUksxjZXZwHOLcLYxwe8nwdvWYe7rk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15652,38 +15187,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11791" + "11626" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b39e7032-4eec-4d1c-ac2a-f2d7d698eacb" + "078d24c7-1a60-4d6c-8972-916bd539e9f0" ], "x-ms-client-request-id": [ - "36df3a51-334b-4487-94aa-bd890d6f1d25-2020-01-16 10:04:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6a738bbc-62a4-4197-91eb-91930b5f93c3" ], "x-ms-correlation-request-id": [ - "b39e7032-4eec-4d1c-ac2a-f2d7d698eacb" + "078d24c7-1a60-4d6c-8972-916bd539e9f0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100440Z:b39e7032-4eec-4d1c-ac2a-f2d7d698eacb" + "CENTRALUSEUAP:20210418T131149Z:078d24c7-1a60-4d6c-8972-916bd539e9f0" ], "Date": [ - "Thu, 16 Jan 2020 10:04:39 GMT" + "Sun, 18 Apr 2021 13:11:49 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -15692,29 +15224,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35922edb-a5ce-4995-9409-1b8729bce6f3-2020-01-16 10:04:50Z-Ps" + "21a63850-7446-4e0a-92bf-354c56cd7c2d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165490648)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770290648)\\/\",\"ClientRequestId\":\"35922edb-a5ce-4995-9409-1b8729bce6f3-2020-01-16 10:04:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RQFSrpwJRHdWb14QcizRuqgDeSW3BX7lfOkbk2lpV2k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747919211)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352719211)\\/\",\"ClientRequestId\":\"015216f1-f38f-42f2-81f6-09cf251287be-2021-04-18 13:11:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kwNcisbDOOWVsMtCSfqMKZ6wXmltcFwxZER2mIEPxD4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15725,38 +15257,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11790" + "11624" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f5cd9436-7ce9-4572-81e2-aed50cb24c6b" + "44484d5c-0be5-4388-a3f1-1687404b7106" ], "x-ms-client-request-id": [ - "35922edb-a5ce-4995-9409-1b8729bce6f3-2020-01-16 10:04:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "21a63850-7446-4e0a-92bf-354c56cd7c2d" ], "x-ms-correlation-request-id": [ - "f5cd9436-7ce9-4572-81e2-aed50cb24c6b" + "44484d5c-0be5-4388-a3f1-1687404b7106" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100450Z:f5cd9436-7ce9-4572-81e2-aed50cb24c6b" + "CENTRALUSEUAP:20210418T131159Z:44484d5c-0be5-4388-a3f1-1687404b7106" ], "Date": [ - "Thu, 16 Jan 2020 10:04:50 GMT" + "Sun, 18 Apr 2021 13:11:58 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -15765,29 +15294,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16213295-0ec9-4b6e-90c8-d338286d83f4-2020-01-16 10:05:01Z-Ps" + "c8e0aacf-1238-4e08-8fc6-05022c0c39f8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165501109)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770301109)\\/\",\"ClientRequestId\":\"16213295-0ec9-4b6e-90c8-d338286d83f4-2020-01-16 10:05:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rdnL+rkxgfRQEiGPyK+SLcakVnpg6q11EUq9SlxepQ0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747929599)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352729599)\\/\",\"ClientRequestId\":\"918ecb6c-e2a0-4bbd-a481-7a072b2a4fb1-2021-04-18 13:12:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ia19JN6RFiKemBemmFjzG6GC0n5Qhd5TQPFiXVOytNM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15798,38 +15327,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11789" + "11622" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1f84cebc-284d-417f-b93d-45583305c714" + "c344fe0e-8611-4173-b971-f39b320e7c95" ], "x-ms-client-request-id": [ - "16213295-0ec9-4b6e-90c8-d338286d83f4-2020-01-16 10:05:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c8e0aacf-1238-4e08-8fc6-05022c0c39f8" ], "x-ms-correlation-request-id": [ - "1f84cebc-284d-417f-b93d-45583305c714" + "c344fe0e-8611-4173-b971-f39b320e7c95" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100501Z:1f84cebc-284d-417f-b93d-45583305c714" + "CENTRALUSEUAP:20210418T131209Z:c344fe0e-8611-4173-b971-f39b320e7c95" ], "Date": [ - "Thu, 16 Jan 2020 10:05:01 GMT" + "Sun, 18 Apr 2021 13:12:09 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -15838,29 +15364,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "617cb719-ebde-45c3-93c3-bddd773b9e76-2020-01-16 10:05:11Z-Ps" + "845f8900-2a3e-4639-addc-20e42da5c240" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165511638)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770311638)\\/\",\"ClientRequestId\":\"617cb719-ebde-45c3-93c3-bddd773b9e76-2020-01-16 10:05:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"aPdP9MqgKX+QmfNiHQyu/x5jNxcFIZvtHBAAAgPh3Dc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747939980)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352739980)\\/\",\"ClientRequestId\":\"6e284c92-d62a-4262-9ccc-80197f539089-2021-04-18 13:12:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xzDiuMhHrLrcs9jaaRIix6/AHXvOIiQw8K52iDykfb4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15871,38 +15397,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11788" + "11620" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1acb1420-afae-47c6-b07f-f86bd38eb499" + "c010b598-56c4-4153-ae30-75388caa16c2" ], "x-ms-client-request-id": [ - "617cb719-ebde-45c3-93c3-bddd773b9e76-2020-01-16 10:05:11Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "845f8900-2a3e-4639-addc-20e42da5c240" ], "x-ms-correlation-request-id": [ - "1acb1420-afae-47c6-b07f-f86bd38eb499" + "c010b598-56c4-4153-ae30-75388caa16c2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100511Z:1acb1420-afae-47c6-b07f-f86bd38eb499" + "CENTRALUSEUAP:20210418T131220Z:c010b598-56c4-4153-ae30-75388caa16c2" ], "Date": [ - "Thu, 16 Jan 2020 10:05:11 GMT" + "Sun, 18 Apr 2021 13:12:19 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -15911,29 +15434,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2003be4e-034a-4e32-844d-85acdacf7cbc-2020-01-16 10:05:22Z-Ps" + "43469b3c-d48a-4f0b-9d6e-3ced2b06f8f0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165522091)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770322091)\\/\",\"ClientRequestId\":\"2003be4e-034a-4e32-844d-85acdacf7cbc-2020-01-16 10:05:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"i+hgZc7TGbWjmhP0IOViyziWlFiY2+hJvVnX1plFqT4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747950394)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352750394)\\/\",\"ClientRequestId\":\"3508ac10-f8ef-46c5-a3b7-6ae8563c1437-2021-04-18 13:12:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NLvbnIplBoBMT/pn9Z+KqfN4OZ+NHW6o9aX72DNz72A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15944,38 +15467,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11786" + "11618" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a57f05ce-68e7-4e6e-ab13-f1217746e8bb" + "1ec3130e-130c-4912-9fcc-b297425a222c" ], "x-ms-client-request-id": [ - "2003be4e-034a-4e32-844d-85acdacf7cbc-2020-01-16 10:05:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "43469b3c-d48a-4f0b-9d6e-3ced2b06f8f0" ], "x-ms-correlation-request-id": [ - "a57f05ce-68e7-4e6e-ab13-f1217746e8bb" + "1ec3130e-130c-4912-9fcc-b297425a222c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100522Z:a57f05ce-68e7-4e6e-ab13-f1217746e8bb" + "CENTRALUSEUAP:20210418T131230Z:1ec3130e-130c-4912-9fcc-b297425a222c" ], "Date": [ - "Thu, 16 Jan 2020 10:05:21 GMT" + "Sun, 18 Apr 2021 13:12:30 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -15984,29 +15504,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af0b61a7-4c31-49a8-90c1-069821ef8945-2020-01-16 10:05:32Z-Ps" + "87e6e2ee-1d10-43ac-8cfa-1db6679938db" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165532581)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770332581)\\/\",\"ClientRequestId\":\"af0b61a7-4c31-49a8-90c1-069821ef8945-2020-01-16 10:05:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2Ylo5LFHhm2R1ym1nSfvMvpjEbKgsDXCGsLG4Le3A8Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747960764)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352760764)\\/\",\"ClientRequestId\":\"2bc47381-0a3c-4f0f-8663-3700160cec79-2021-04-18 13:12:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+VDUoaAK7bE5/L/W2ayeXCklDXr2lOT/j5P5wNbrWGU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16016,39 +15536,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11616" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "28b47847-3dfb-4546-9720-311db1741bed" + "dfb0c8a7-09f5-425b-8c1c-25e7534cd651" ], "x-ms-client-request-id": [ - "af0b61a7-4c31-49a8-90c1-069821ef8945-2020-01-16 10:05:32Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11785" + "87e6e2ee-1d10-43ac-8cfa-1db6679938db" ], "x-ms-correlation-request-id": [ - "28b47847-3dfb-4546-9720-311db1741bed" + "dfb0c8a7-09f5-425b-8c1c-25e7534cd651" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100532Z:28b47847-3dfb-4546-9720-311db1741bed" + "CENTRALUSEUAP:20210418T131240Z:dfb0c8a7-09f5-425b-8c1c-25e7534cd651" ], "Date": [ - "Thu, 16 Jan 2020 10:05:32 GMT" + "Sun, 18 Apr 2021 13:12:40 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -16057,29 +15574,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "edc18429-e5a4-4e4d-a356-6c03ba531663-2020-01-16 10:05:43Z-Ps" + "e3f4be2a-d7f1-4de1-b8d2-ad7ba98643b5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165543038)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770343038)\\/\",\"ClientRequestId\":\"edc18429-e5a4-4e4d-a356-6c03ba531663-2020-01-16 10:05:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9UBoLURFI/ozG0Djw1LBerzPlainoDaZVBx63IQLKmU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747971162)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352771162)\\/\",\"ClientRequestId\":\"3917edd9-abf1-4d21-b25d-ff0d0187eecb-2021-04-18 13:12:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"p0fRzkRANPNLJ/D5tNSuDoTq4E4MYUz5biMojWOvtrc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16090,38 +15607,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11783" + "11614" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c11eda81-6e91-4881-bc54-d76f6a1f48dd" + "fcaa6773-b50f-4c0c-8b5d-0bf9f0b570cc" ], "x-ms-client-request-id": [ - "edc18429-e5a4-4e4d-a356-6c03ba531663-2020-01-16 10:05:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e3f4be2a-d7f1-4de1-b8d2-ad7ba98643b5" ], "x-ms-correlation-request-id": [ - "c11eda81-6e91-4881-bc54-d76f6a1f48dd" + "fcaa6773-b50f-4c0c-8b5d-0bf9f0b570cc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100544Z:c11eda81-6e91-4881-bc54-d76f6a1f48dd" + "CENTRALUSEUAP:20210418T131251Z:fcaa6773-b50f-4c0c-8b5d-0bf9f0b570cc" ], "Date": [ - "Thu, 16 Jan 2020 10:05:43 GMT" + "Sun, 18 Apr 2021 13:12:50 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -16130,29 +15644,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e9a1b7c-b9fb-4fd4-90fd-888d81088948-2020-01-16 10:05:54Z-Ps" + "5bf2cbf7-b311-4daf-8894-6cf3ca3c8d11" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165554644)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770354644)\\/\",\"ClientRequestId\":\"1e9a1b7c-b9fb-4fd4-90fd-888d81088948-2020-01-16 10:05:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kFqtYkQ4/uNo96f9otmLiHt0dYQRLT+eiHG+dyLPX0o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747981572)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352781572)\\/\",\"ClientRequestId\":\"1a685bd7-b87d-41b9-870c-8f010a6f2267-2021-04-18 13:13:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8h4MfMSK8hfXVpm2XHSSZty7WS1cy393Mg3ZxjGZgUE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16163,38 +15677,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11782" + "11612" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ff871fe7-2404-47c4-bf63-4cef993f06ae" + "2dc0d19f-72fb-4e4f-9adc-35f43382f94f" ], "x-ms-client-request-id": [ - "1e9a1b7c-b9fb-4fd4-90fd-888d81088948-2020-01-16 10:05:54Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5bf2cbf7-b311-4daf-8894-6cf3ca3c8d11" ], "x-ms-correlation-request-id": [ - "ff871fe7-2404-47c4-bf63-4cef993f06ae" + "2dc0d19f-72fb-4e4f-9adc-35f43382f94f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100554Z:ff871fe7-2404-47c4-bf63-4cef993f06ae" + "CENTRALUSEUAP:20210418T131301Z:2dc0d19f-72fb-4e4f-9adc-35f43382f94f" ], "Date": [ - "Thu, 16 Jan 2020 10:05:54 GMT" + "Sun, 18 Apr 2021 13:13:01 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -16203,29 +15714,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aef6d6e1-3c7b-4802-9618-5839cd465634-2020-01-16 10:06:05Z-Ps" + "fb0dd1c9-c5f6-45e7-8ed3-6ace0164367e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165565111)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770365111)\\/\",\"ClientRequestId\":\"aef6d6e1-3c7b-4802-9618-5839cd465634-2020-01-16 10:06:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3nBfmN2DAc6E5Yh4droJ308MV9s9qq8NgAPUfZVql1Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618747991941)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352791941)\\/\",\"ClientRequestId\":\"5c90bf43-7429-4af7-ad83-29c81686efb8-2021-04-18 13:13:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nCnONR2gJ5ndyWwnZKxSApaUAHLGK0aad0nHpqaUfrQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16236,38 +15747,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11781" + "11610" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d31b9d15-b329-4543-93cd-32fc336758fe" + "296450ec-b03d-42d4-9880-ca006fb2501b" ], "x-ms-client-request-id": [ - "aef6d6e1-3c7b-4802-9618-5839cd465634-2020-01-16 10:06:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "fb0dd1c9-c5f6-45e7-8ed3-6ace0164367e" ], "x-ms-correlation-request-id": [ - "d31b9d15-b329-4543-93cd-32fc336758fe" + "296450ec-b03d-42d4-9880-ca006fb2501b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100606Z:d31b9d15-b329-4543-93cd-32fc336758fe" + "CENTRALUSEUAP:20210418T131312Z:296450ec-b03d-42d4-9880-ca006fb2501b" ], "Date": [ - "Thu, 16 Jan 2020 10:06:06 GMT" + "Sun, 18 Apr 2021 13:13:12 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -16276,29 +15784,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ab3165f-2a23-44c3-aef4-24dc716bcbdb-2020-01-16 10:06:16Z-Ps" + "b4bedc59-70ba-4c08-b0bd-7a45aeadf722" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165576762)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770376762)\\/\",\"ClientRequestId\":\"9ab3165f-2a23-44c3-aef4-24dc716bcbdb-2020-01-16 10:06:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Hfhiru/PO8FG00A6rkldNwiCanTPASgxZUSZ2s9XWxo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748002368)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352802368)\\/\",\"ClientRequestId\":\"98370d4b-ecb0-4f38-bcf5-7a7e8ece281b-2021-04-18 13:13:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IcCwJdxWUBWupL7jJJcONd0fRkZLi7ryL2lT7w6F2L4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16309,38 +15817,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11780" + "11608" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c4a8aacd-f456-4b2c-ab34-391226f6e270" + "67906d19-d855-4d6d-bc71-bbd2ed07f1b4" ], "x-ms-client-request-id": [ - "9ab3165f-2a23-44c3-aef4-24dc716bcbdb-2020-01-16 10:06:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b4bedc59-70ba-4c08-b0bd-7a45aeadf722" ], "x-ms-correlation-request-id": [ - "c4a8aacd-f456-4b2c-ab34-391226f6e270" + "67906d19-d855-4d6d-bc71-bbd2ed07f1b4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100617Z:c4a8aacd-f456-4b2c-ab34-391226f6e270" + "CENTRALUSEUAP:20210418T131322Z:67906d19-d855-4d6d-bc71-bbd2ed07f1b4" ], "Date": [ - "Thu, 16 Jan 2020 10:06:16 GMT" + "Sun, 18 Apr 2021 13:13:22 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -16349,29 +15854,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f1ad448-5e6e-4bad-9149-32caf1a8d693-2020-01-16 10:06:27Z-Ps" + "c21b80d7-ffbc-464b-86ad-b0f2d5d2fbd4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165587221)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770387221)\\/\",\"ClientRequestId\":\"1f1ad448-5e6e-4bad-9149-32caf1a8d693-2020-01-16 10:06:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MILxQfzA3JUG2Op/wzXwpSef7mQ9sWCZHhjy5UM/1nY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748012742)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352812742)\\/\",\"ClientRequestId\":\"7337e94b-0361-4f37-800e-770e48b4cd7f-2021-04-18 13:13:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UIROx0aOuFfPEJb3F/bBAu7EyJjKNH6/yM/ZnyELMDY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16382,38 +15887,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11779" + "11606" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7d50432f-78fe-4063-8268-287ed22fc135" + "feef21fc-38da-40b5-b5c1-d9b022dcde2b" ], "x-ms-client-request-id": [ - "1f1ad448-5e6e-4bad-9149-32caf1a8d693-2020-01-16 10:06:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c21b80d7-ffbc-464b-86ad-b0f2d5d2fbd4" ], "x-ms-correlation-request-id": [ - "7d50432f-78fe-4063-8268-287ed22fc135" + "feef21fc-38da-40b5-b5c1-d9b022dcde2b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100627Z:7d50432f-78fe-4063-8268-287ed22fc135" + "CENTRALUSEUAP:20210418T131332Z:feef21fc-38da-40b5-b5c1-d9b022dcde2b" ], "Date": [ - "Thu, 16 Jan 2020 10:06:27 GMT" + "Sun, 18 Apr 2021 13:13:32 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -16422,29 +15924,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eef2c5b4-415f-460e-bf50-8d623e9d3894-2020-01-16 10:06:37Z-Ps" + "09ffcda8-8de3-4311-9cb7-2eb14e489709" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165597787)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770397787)\\/\",\"ClientRequestId\":\"eef2c5b4-415f-460e-bf50-8d623e9d3894-2020-01-16 10:06:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HLjyHdMBcNZ2YpI8pB9grfnQJbPaXynmO+HBAeRcKbs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748023180)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352823180)\\/\",\"ClientRequestId\":\"b184e662-7bb1-4ad1-ac1f-bef6ac8a3ef3-2021-04-18 13:13:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UpWl8ByAYLi2cuXR2ChFSVcoSc8tXjwtpm13LqSHfLs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16455,38 +15957,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11778" + "11604" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6dcbcff0-f265-4c46-971d-e0386f384784" + "f18a1b0e-5806-4dbe-94df-09fcb944be8a" ], "x-ms-client-request-id": [ - "eef2c5b4-415f-460e-bf50-8d623e9d3894-2020-01-16 10:06:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "09ffcda8-8de3-4311-9cb7-2eb14e489709" ], "x-ms-correlation-request-id": [ - "6dcbcff0-f265-4c46-971d-e0386f384784" + "f18a1b0e-5806-4dbe-94df-09fcb944be8a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100638Z:6dcbcff0-f265-4c46-971d-e0386f384784" + "CENTRALUSEUAP:20210418T131343Z:f18a1b0e-5806-4dbe-94df-09fcb944be8a" ], "Date": [ - "Thu, 16 Jan 2020 10:06:37 GMT" + "Sun, 18 Apr 2021 13:13:42 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -16495,29 +15994,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f61233c-6131-4c96-b114-84b4df2641ff-2020-01-16 10:06:48Z-Ps" + "f5be58a8-8837-4da9-93da-5867099ea8f6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165608259)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770408259)\\/\",\"ClientRequestId\":\"2f61233c-6131-4c96-b114-84b4df2641ff-2020-01-16 10:06:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Bm42yOj53amg9e2lfcL3hlK/pu+oUy2gZydzxtF2T+o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748033559)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352833559)\\/\",\"ClientRequestId\":\"1302485f-51fb-4ee4-8f88-be7f933961d1-2021-04-18 13:13:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OohwZDj/7pmwa2gL8txkJRwNYSJ9qzsnkatsoTIvkKI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16528,38 +16027,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11775" + "11602" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "389f3ef6-1729-474e-a4a0-665b97648a64" + "44e74e1c-bc4d-4859-b6e6-243515192de7" ], "x-ms-client-request-id": [ - "2f61233c-6131-4c96-b114-84b4df2641ff-2020-01-16 10:06:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f5be58a8-8837-4da9-93da-5867099ea8f6" ], "x-ms-correlation-request-id": [ - "389f3ef6-1729-474e-a4a0-665b97648a64" + "44e74e1c-bc4d-4859-b6e6-243515192de7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100648Z:389f3ef6-1729-474e-a4a0-665b97648a64" + "CENTRALUSEUAP:20210418T131353Z:44e74e1c-bc4d-4859-b6e6-243515192de7" ], "Date": [ - "Thu, 16 Jan 2020 10:06:47 GMT" + "Sun, 18 Apr 2021 13:13:53 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -16568,29 +16064,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9843d82-805f-4a3e-9555-b1f8a26f6ef1-2020-01-16 10:06:58Z-Ps" + "e27b1da5-eec4-40ea-a68d-fce6c3574c25" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165618740)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770418740)\\/\",\"ClientRequestId\":\"f9843d82-805f-4a3e-9555-b1f8a26f6ef1-2020-01-16 10:06:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VJt7fSxLhlP0n+NLxRHfQXSQaA0rfnCwv4JBHDGJGdE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748043967)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352843967)\\/\",\"ClientRequestId\":\"97037305-cc3e-4663-8c5f-04fcca8aa075-2021-04-18 13:14:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OKULt1wTrlg2LhnXY3oOWKfo8REnh3iSAkv3L8MNtRM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16601,38 +16097,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11774" + "11600" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c1ba3eba-69ea-482c-a7d4-bfd7fead02ba" + "6d14b9b8-4fe7-46ba-9962-1946d29b6dc7" ], "x-ms-client-request-id": [ - "f9843d82-805f-4a3e-9555-b1f8a26f6ef1-2020-01-16 10:06:58Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e27b1da5-eec4-40ea-a68d-fce6c3574c25" ], "x-ms-correlation-request-id": [ - "c1ba3eba-69ea-482c-a7d4-bfd7fead02ba" + "6d14b9b8-4fe7-46ba-9962-1946d29b6dc7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100659Z:c1ba3eba-69ea-482c-a7d4-bfd7fead02ba" + "CENTRALUSEUAP:20210418T131404Z:6d14b9b8-4fe7-46ba-9962-1946d29b6dc7" ], "Date": [ - "Thu, 16 Jan 2020 10:06:58 GMT" + "Sun, 18 Apr 2021 13:14:03 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -16641,29 +16134,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49bf57cf-78a2-48b5-9a48-dc5b907976d2-2020-01-16 10:07:09Z-Ps" + "9416cd42-a7bc-42b4-948a-1a7e0278274b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165629281)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770429281)\\/\",\"ClientRequestId\":\"49bf57cf-78a2-48b5-9a48-dc5b907976d2-2020-01-16 10:07:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ODt87ewb32DM1+Tw2PJiGqVDFqqWTX7gIODndeLx0U0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748054334)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352854334)\\/\",\"ClientRequestId\":\"2310d775-fc5d-4463-8ce4-782d3849d369-2021-04-18 13:14:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3Xteoecc0ih3KznKvsh6U+GmwcpDOyWjMZbxT5mrdmU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16674,38 +16167,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11773" + "11598" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bd0311ce-8b6e-42f2-99ec-b36a15c2b274" + "77a87416-eb18-45da-a0b4-3d9ef284f43b" ], "x-ms-client-request-id": [ - "49bf57cf-78a2-48b5-9a48-dc5b907976d2-2020-01-16 10:07:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9416cd42-a7bc-42b4-948a-1a7e0278274b" ], "x-ms-correlation-request-id": [ - "bd0311ce-8b6e-42f2-99ec-b36a15c2b274" + "77a87416-eb18-45da-a0b4-3d9ef284f43b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100709Z:bd0311ce-8b6e-42f2-99ec-b36a15c2b274" + "CENTRALUSEUAP:20210418T131414Z:77a87416-eb18-45da-a0b4-3d9ef284f43b" ], "Date": [ - "Thu, 16 Jan 2020 10:07:08 GMT" + "Sun, 18 Apr 2021 13:14:14 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -16714,29 +16204,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2059d998-c894-41bf-b0c0-22be9a883a02-2020-01-16 10:07:19Z-Ps" + "900a3c70-8646-473f-ac9a-93574eea27fa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165639806)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770439806)\\/\",\"ClientRequestId\":\"2059d998-c894-41bf-b0c0-22be9a883a02-2020-01-16 10:07:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GzNpseKFr13ApV8kNThxhCcb3LMnhLtFTOMFD++Ga8I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748064711)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352864711)\\/\",\"ClientRequestId\":\"c9f39708-62ec-424d-8fa9-bb691157dfad-2021-04-18 13:14:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9vh8BB0p+xAw18lPQ/q+ctCiIfxgtLZA32xX9egLhAM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16747,38 +16237,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11772" + "11596" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8cab2aff-663f-418d-b2d0-5f8be64ce80a" + "8687afa1-b0cd-4738-9132-d6cc14e6280c" ], "x-ms-client-request-id": [ - "2059d998-c894-41bf-b0c0-22be9a883a02-2020-01-16 10:07:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "900a3c70-8646-473f-ac9a-93574eea27fa" ], "x-ms-correlation-request-id": [ - "8cab2aff-663f-418d-b2d0-5f8be64ce80a" + "8687afa1-b0cd-4738-9132-d6cc14e6280c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100720Z:8cab2aff-663f-418d-b2d0-5f8be64ce80a" + "CENTRALUSEUAP:20210418T131424Z:8687afa1-b0cd-4738-9132-d6cc14e6280c" ], "Date": [ - "Thu, 16 Jan 2020 10:07:20 GMT" + "Sun, 18 Apr 2021 13:14:24 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -16787,29 +16274,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a42bbc2b-fd1d-403e-9d75-0b1d9b762365-2020-01-16 10:07:30Z-Ps" + "573f30cc-6cd5-4bff-b6ed-88dbbd152ef4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165650254)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770450254)\\/\",\"ClientRequestId\":\"a42bbc2b-fd1d-403e-9d75-0b1d9b762365-2020-01-16 10:07:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bbDZSf7kDHptHYGgxZTTBIYLOwy12GyCPNtO/AJ6Bz4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748075089)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352875089)\\/\",\"ClientRequestId\":\"d7eabd1a-fcb7-4178-b98e-05ab4eed8b0f-2021-04-18 13:14:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"f+rzBeOj9U+y9V3pmobo4jDbF1jdvO2ZHgovwXlnlaE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16819,39 +16306,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11594" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "052f92e9-88ee-41ea-8a53-ab6e2c775f66" + "3b1ccba2-1faa-48e3-b205-0f96d9a78043" ], "x-ms-client-request-id": [ - "a42bbc2b-fd1d-403e-9d75-0b1d9b762365-2020-01-16 10:07:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11771" + "573f30cc-6cd5-4bff-b6ed-88dbbd152ef4" ], "x-ms-correlation-request-id": [ - "052f92e9-88ee-41ea-8a53-ab6e2c775f66" + "3b1ccba2-1faa-48e3-b205-0f96d9a78043" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100730Z:052f92e9-88ee-41ea-8a53-ab6e2c775f66" + "CENTRALUSEUAP:20210418T131435Z:3b1ccba2-1faa-48e3-b205-0f96d9a78043" ], "Date": [ - "Thu, 16 Jan 2020 10:07:30 GMT" + "Sun, 18 Apr 2021 13:14:35 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -16860,29 +16344,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ac9d8d0-7678-4d3b-b527-7c6c30dce8ef-2020-01-16 10:07:40Z-Ps" + "00e1a2b0-0928-449a-a0a2-9f8bd2729bc6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165660794)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770460794)\\/\",\"ClientRequestId\":\"0ac9d8d0-7678-4d3b-b527-7c6c30dce8ef-2020-01-16 10:07:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cSg6wuv9+QmweDa2dUSEY3RheOnMnTtyR0Wl3AQOQQA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748085495)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352885495)\\/\",\"ClientRequestId\":\"7bfc1eef-e7fc-4797-91ae-13ed953a800f-2021-04-18 13:14:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zX076NyvWJlNKRn2or71sKqeP+YlFBvdDl7SAHJsD/8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16893,38 +16377,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11770" + "11592" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5b7d7a20-d9bb-4869-901b-0e48afc4338f" + "76591876-d00b-4f1d-9a21-90c5da057dd5" ], "x-ms-client-request-id": [ - "0ac9d8d0-7678-4d3b-b527-7c6c30dce8ef-2020-01-16 10:07:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "00e1a2b0-0928-449a-a0a2-9f8bd2729bc6" ], "x-ms-correlation-request-id": [ - "5b7d7a20-d9bb-4869-901b-0e48afc4338f" + "76591876-d00b-4f1d-9a21-90c5da057dd5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100742Z:5b7d7a20-d9bb-4869-901b-0e48afc4338f" + "CENTRALUSEUAP:20210418T131445Z:76591876-d00b-4f1d-9a21-90c5da057dd5" ], "Date": [ - "Thu, 16 Jan 2020 10:07:41 GMT" + "Sun, 18 Apr 2021 13:14:45 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -16933,29 +16414,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "96d338a8-9675-4313-90f7-4feee2b89d7c-2020-01-16 10:07:52Z-Ps" + "20e13618-5ff9-4e35-8b99-be43b8a5104f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165672417)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770472417)\\/\",\"ClientRequestId\":\"96d338a8-9675-4313-90f7-4feee2b89d7c-2020-01-16 10:07:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9KI7lQoWGmm8nu4V3nsmPIbeE6kSHgXki3JlfMPoaA8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748095902)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352895902)\\/\",\"ClientRequestId\":\"078c811c-e414-4802-a9e5-9d74f7ed7a67-2021-04-18 13:14:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Dgq1nKLBESz68tSZhsOCCDt7gU5PsDxai64iT+VuO/Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16966,38 +16447,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11769" + "11590" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c528681d-666e-4bf1-b7cb-97ab0fed71b0" + "b2390392-17e5-475b-8226-61594326f1ae" ], "x-ms-client-request-id": [ - "96d338a8-9675-4313-90f7-4feee2b89d7c-2020-01-16 10:07:52Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "20e13618-5ff9-4e35-8b99-be43b8a5104f" ], "x-ms-correlation-request-id": [ - "c528681d-666e-4bf1-b7cb-97ab0fed71b0" + "b2390392-17e5-475b-8226-61594326f1ae" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100752Z:c528681d-666e-4bf1-b7cb-97ab0fed71b0" + "CENTRALUSEUAP:20210418T131456Z:b2390392-17e5-475b-8226-61594326f1ae" ], "Date": [ - "Thu, 16 Jan 2020 10:07:52 GMT" + "Sun, 18 Apr 2021 13:14:56 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -17006,29 +16484,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6d3c4f2-bafa-4b2d-b598-df3d1873871b-2020-01-16 10:08:02Z-Ps" + "edd5436f-9b1a-4b47-9234-0d0374bcbd0f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165682877)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770482877)\\/\",\"ClientRequestId\":\"e6d3c4f2-bafa-4b2d-b598-df3d1873871b-2020-01-16 10:08:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zd0PLooKf+mCNwHAYNXICLHD8TZgcMmr3RRDlt292bY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748106282)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352906282)\\/\",\"ClientRequestId\":\"51f3fe08-28e9-4689-be70-acd0f5a3dd14-2021-04-18 13:15:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tpyJ6Gbe3pr7wGEEcvAtMiee6Yxm4+yNhjFCcT7Hypg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17039,38 +16517,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11768" + "11588" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f9aaf6d6-5f2e-4fcb-bef6-2fac11ae9087" + "144a85c5-eb8f-4442-9331-2aa313f8c6b7" ], "x-ms-client-request-id": [ - "e6d3c4f2-bafa-4b2d-b598-df3d1873871b-2020-01-16 10:08:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "edd5436f-9b1a-4b47-9234-0d0374bcbd0f" ], "x-ms-correlation-request-id": [ - "f9aaf6d6-5f2e-4fcb-bef6-2fac11ae9087" + "144a85c5-eb8f-4442-9331-2aa313f8c6b7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100803Z:f9aaf6d6-5f2e-4fcb-bef6-2fac11ae9087" + "CENTRALUSEUAP:20210418T131506Z:144a85c5-eb8f-4442-9331-2aa313f8c6b7" ], "Date": [ - "Thu, 16 Jan 2020 10:08:02 GMT" + "Sun, 18 Apr 2021 13:15:05 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -17079,29 +16554,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7cfd970a-8799-4b98-8d54-07076933624d-2020-01-16 10:08:13Z-Ps" + "8e6c593c-1174-4f6c-98b9-29bde0e93133" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165693403)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770493403)\\/\",\"ClientRequestId\":\"7cfd970a-8799-4b98-8d54-07076933624d-2020-01-16 10:08:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9Kmnx7EX+dOyw6NFvvqty84QjpdBCg42+KM/bhNurRM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748116656)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352916656)\\/\",\"ClientRequestId\":\"e52a7a34-de59-44fe-be42-640ab0ecdb1c-2021-04-18 13:15:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wupyae2N1avUxqA2Z6QnOznOS6+zZP3MC6YnLg6fzFo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17112,38 +16587,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11766" + "11586" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c6739d2e-011f-4cd1-bb97-57c3095ca4ce" + "74a36735-6180-4541-9dac-9428050ce32d" ], "x-ms-client-request-id": [ - "7cfd970a-8799-4b98-8d54-07076933624d-2020-01-16 10:08:13Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8e6c593c-1174-4f6c-98b9-29bde0e93133" ], "x-ms-correlation-request-id": [ - "c6739d2e-011f-4cd1-bb97-57c3095ca4ce" + "74a36735-6180-4541-9dac-9428050ce32d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100813Z:c6739d2e-011f-4cd1-bb97-57c3095ca4ce" + "CENTRALUSEUAP:20210418T131516Z:74a36735-6180-4541-9dac-9428050ce32d" ], "Date": [ - "Thu, 16 Jan 2020 10:08:12 GMT" + "Sun, 18 Apr 2021 13:15:16 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -17152,29 +16624,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73f9dc4f-9736-458b-bfe1-64bd9aea1e9a-2020-01-16 10:08:23Z-Ps" + "c318242d-f75a-4541-b9de-2a11a3d9c7a8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165703901)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770503901)\\/\",\"ClientRequestId\":\"73f9dc4f-9736-458b-bfe1-64bd9aea1e9a-2020-01-16 10:08:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZVFIsFILy3H9MepeUz3UfZCSt0hLlx43LuzHXXufJn8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748127063)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352927063)\\/\",\"ClientRequestId\":\"1ba579f4-f844-4095-8a1b-729465bf30da-2021-04-18 13:15:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"L4/HVsXpnHFmcHqxydx89kRuDKzrtZhx8SkhJ0Z8vJw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17185,38 +16657,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11765" + "11584" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3df244cc-796f-4dac-b762-e3e89da5b4fc" + "92536053-bfba-4cfa-be5f-e8cd6630f057" ], "x-ms-client-request-id": [ - "73f9dc4f-9736-458b-bfe1-64bd9aea1e9a-2020-01-16 10:08:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c318242d-f75a-4541-b9de-2a11a3d9c7a8" ], "x-ms-correlation-request-id": [ - "3df244cc-796f-4dac-b762-e3e89da5b4fc" + "92536053-bfba-4cfa-be5f-e8cd6630f057" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100824Z:3df244cc-796f-4dac-b762-e3e89da5b4fc" + "CENTRALUSEUAP:20210418T131527Z:92536053-bfba-4cfa-be5f-e8cd6630f057" ], "Date": [ - "Thu, 16 Jan 2020 10:08:23 GMT" + "Sun, 18 Apr 2021 13:15:27 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -17225,29 +16694,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e333c7d5-dcf0-4919-b5e0-7ab09b31a094-2020-01-16 10:08:34Z-Ps" + "b5dd0404-fff4-423d-b7c4-1cd7b2f26c60" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165714376)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770514376)\\/\",\"ClientRequestId\":\"e333c7d5-dcf0-4919-b5e0-7ab09b31a094-2020-01-16 10:08:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Yw/jVd7ljsiBRRzlQ7kmxFOSiUksMJOXKJGh0Y27/oM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748137663)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352937663)\\/\",\"ClientRequestId\":\"446e4116-d3fb-4e43-83e7-eb7ad2cb0785-2021-04-18 13:15:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/kKUBs4zJRlpTkYOyLVvIMjobConfZFuzyQETf5uypE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17258,38 +16727,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11764" + "11582" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d1df4394-fcf5-40d9-9150-8309a767a63b" + "9073eb04-06ca-4f5b-a2f2-a7d12dcf3d30" ], "x-ms-client-request-id": [ - "e333c7d5-dcf0-4919-b5e0-7ab09b31a094-2020-01-16 10:08:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b5dd0404-fff4-423d-b7c4-1cd7b2f26c60" ], "x-ms-correlation-request-id": [ - "d1df4394-fcf5-40d9-9150-8309a767a63b" + "9073eb04-06ca-4f5b-a2f2-a7d12dcf3d30" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100834Z:d1df4394-fcf5-40d9-9150-8309a767a63b" + "CENTRALUSEUAP:20210418T131537Z:9073eb04-06ca-4f5b-a2f2-a7d12dcf3d30" ], "Date": [ - "Thu, 16 Jan 2020 10:08:34 GMT" + "Sun, 18 Apr 2021 13:15:36 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -17298,29 +16764,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a96658c-6530-49aa-b553-09a789d1ecd6-2020-01-16 10:08:44Z-Ps" + "5d827380-8727-42ed-9fd2-eaccfded164c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165724827)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770524827)\\/\",\"ClientRequestId\":\"3a96658c-6530-49aa-b553-09a789d1ecd6-2020-01-16 10:08:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"90XEPEyvFcCVZFcWXTZiMRhrHjPfnOTtjFB2d0OpgYw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748148049)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352948049)\\/\",\"ClientRequestId\":\"a7c6646c-9ceb-44b9-9baa-2d6220b23695-2021-04-18 13:15:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sl6tXUW0bSwksAU+NQD9H6hRsVPBYSeoEvUqg7M9xO4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17331,38 +16797,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11763" + "11580" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3d74f6f7-cae5-4718-b583-02ca3d5e3fc9" + "0242d7fe-7b6f-4306-b039-d197bd7933ab" ], "x-ms-client-request-id": [ - "3a96658c-6530-49aa-b553-09a789d1ecd6-2020-01-16 10:08:44Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5d827380-8727-42ed-9fd2-eaccfded164c" ], "x-ms-correlation-request-id": [ - "3d74f6f7-cae5-4718-b583-02ca3d5e3fc9" + "0242d7fe-7b6f-4306-b039-d197bd7933ab" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100845Z:3d74f6f7-cae5-4718-b583-02ca3d5e3fc9" + "CENTRALUSEUAP:20210418T131548Z:0242d7fe-7b6f-4306-b039-d197bd7933ab" ], "Date": [ - "Thu, 16 Jan 2020 10:08:44 GMT" + "Sun, 18 Apr 2021 13:15:48 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -17371,29 +16834,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32b4cff6-3cc2-49de-b364-4ec17fff4546-2020-01-16 10:08:55Z-Ps" + "e731310a-d3c6-4917-bde3-920a1e1210f5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165735316)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770535316)\\/\",\"ClientRequestId\":\"32b4cff6-3cc2-49de-b364-4ec17fff4546-2020-01-16 10:08:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kaxlIOWhQrw3TUGGIJUrZT6rAvpTqqVWnleAdZZszak=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748158408)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352958408)\\/\",\"ClientRequestId\":\"6717b540-89f2-484d-892d-c3d001e7afa1-2021-04-18 13:15:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hBn9SADU9rgLq5ZxEEQIODfp1p4hODV4sG8AjL9VrL8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17404,38 +16867,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11762" + "11578" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d962fb30-91b2-43e2-a9f9-ec6ea3a166c8" + "c31c4043-2300-4413-bc3b-176de5109dee" ], "x-ms-client-request-id": [ - "32b4cff6-3cc2-49de-b364-4ec17fff4546-2020-01-16 10:08:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e731310a-d3c6-4917-bde3-920a1e1210f5" ], "x-ms-correlation-request-id": [ - "d962fb30-91b2-43e2-a9f9-ec6ea3a166c8" + "c31c4043-2300-4413-bc3b-176de5109dee" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100855Z:d962fb30-91b2-43e2-a9f9-ec6ea3a166c8" + "CENTRALUSEUAP:20210418T131558Z:c31c4043-2300-4413-bc3b-176de5109dee" ], "Date": [ - "Thu, 16 Jan 2020 10:08:55 GMT" + "Sun, 18 Apr 2021 13:15:57 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -17444,29 +16904,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1dfb4731-5aff-4c4f-87bb-084b24caaa41-2020-01-16 10:09:05Z-Ps" + "dc3f3c87-2362-43f8-8a1f-331fbcd49933" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165745811)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770545811)\\/\",\"ClientRequestId\":\"1dfb4731-5aff-4c4f-87bb-084b24caaa41-2020-01-16 10:09:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Jj4w2Lcknot3kcM3m9Bo5WFn+1QJewr37PjvONlWgb8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748168773)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352968773)\\/\",\"ClientRequestId\":\"f9a079b9-f3e9-4977-90e1-8b0339e96e19-2021-04-18 13:16:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Sg3NXzdXYDopspCiArrvi0GPntMUAoef4L+2veC/kME=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17476,39 +16936,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11576" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f45e0349-9fe5-4d1c-8f55-0f863c68e82d" + "584ef24f-1239-4c87-9451-253dc07a8241" ], "x-ms-client-request-id": [ - "1dfb4731-5aff-4c4f-87bb-084b24caaa41-2020-01-16 10:09:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11761" + "dc3f3c87-2362-43f8-8a1f-331fbcd49933" ], "x-ms-correlation-request-id": [ - "f45e0349-9fe5-4d1c-8f55-0f863c68e82d" + "584ef24f-1239-4c87-9451-253dc07a8241" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100906Z:f45e0349-9fe5-4d1c-8f55-0f863c68e82d" + "CENTRALUSEUAP:20210418T131608Z:584ef24f-1239-4c87-9451-253dc07a8241" ], "Date": [ - "Thu, 16 Jan 2020 10:09:05 GMT" + "Sun, 18 Apr 2021 13:16:08 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -17517,29 +16974,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e454254-ff9a-4542-a426-c49b835fcbc9-2020-01-16 10:09:16Z-Ps" + "f574df4a-3dfe-4699-8d80-58a46089f710" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165756323)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770556323)\\/\",\"ClientRequestId\":\"9e454254-ff9a-4542-a426-c49b835fcbc9-2020-01-16 10:09:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"r3VHeetLzI9nqpOJz5+CvrsECFBdmtzUTOsguGwNS+M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748179129)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352979129)\\/\",\"ClientRequestId\":\"52dff543-7592-4521-82c0-25a41abba90e-2021-04-18 13:16:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xFQSjdITCOlGafsrBZbTBTWcs85JH5uv/C7Y+vEQheM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17550,38 +17007,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11760" + "11574" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d6be2963-cf0a-4e75-901d-f29007ba0d4d" + "9cb84060-a71e-4768-8924-d1fe353b62a0" ], "x-ms-client-request-id": [ - "9e454254-ff9a-4542-a426-c49b835fcbc9-2020-01-16 10:09:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f574df4a-3dfe-4699-8d80-58a46089f710" ], "x-ms-correlation-request-id": [ - "d6be2963-cf0a-4e75-901d-f29007ba0d4d" + "9cb84060-a71e-4768-8924-d1fe353b62a0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100917Z:d6be2963-cf0a-4e75-901d-f29007ba0d4d" + "CENTRALUSEUAP:20210418T131619Z:9cb84060-a71e-4768-8924-d1fe353b62a0" ], "Date": [ - "Thu, 16 Jan 2020 10:09:17 GMT" + "Sun, 18 Apr 2021 13:16:19 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -17590,29 +17044,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6fb9e51b-de2c-4a62-85f3-1299c7e537a4-2020-01-16 10:09:27Z-Ps" + "df104fb9-7897-4acd-ba2a-1b8b96cd9b93" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165767951)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770567951)\\/\",\"ClientRequestId\":\"6fb9e51b-de2c-4a62-85f3-1299c7e537a4-2020-01-16 10:09:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gYmSOUjVSPtKNlOD15+SZ9lao0/X7sb4ZdZJsUIfkEE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748189494)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352989494)\\/\",\"ClientRequestId\":\"f270367f-68dd-47e4-9de3-ab21f3ce36ac-2021-04-18 13:16:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8D6iwTpcyr+ZhgK0SgNCfhwvIf4TKJ8VHQCxaCZFbtc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17623,38 +17077,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11759" + "11572" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4bfcd4b9-ddda-4521-844f-26a9e4c005dc" + "de6dd4d1-3e68-4ba4-98ca-2fe0e3cb65c6" ], "x-ms-client-request-id": [ - "6fb9e51b-de2c-4a62-85f3-1299c7e537a4-2020-01-16 10:09:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "df104fb9-7897-4acd-ba2a-1b8b96cd9b93" ], "x-ms-correlation-request-id": [ - "4bfcd4b9-ddda-4521-844f-26a9e4c005dc" + "de6dd4d1-3e68-4ba4-98ca-2fe0e3cb65c6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100928Z:4bfcd4b9-ddda-4521-844f-26a9e4c005dc" + "CENTRALUSEUAP:20210418T131629Z:de6dd4d1-3e68-4ba4-98ca-2fe0e3cb65c6" ], "Date": [ - "Thu, 16 Jan 2020 10:09:27 GMT" + "Sun, 18 Apr 2021 13:16:29 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -17663,29 +17114,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e61a9275-25b6-4d83-a12c-a0af0c122515-2020-01-16 10:09:38Z-Ps" + "cdb7d3da-937e-4120-adf9-e6d83560affe" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165778388)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770578388)\\/\",\"ClientRequestId\":\"e61a9275-25b6-4d83-a12c-a0af0c122515-2020-01-16 10:09:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BsXW95zxtF2wKGlFR6b9AJ2wwKSHAbxXVDELI25lhU4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748199853)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619352999853)\\/\",\"ClientRequestId\":\"bf522e65-4ed8-4b27-bda0-cd775b64b5c8-2021-04-18 13:16:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PePGA2GiVtsT469qgP+1tIyu33nkZT4833TaNhqX8s4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17696,38 +17147,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11758" + "11570" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9b297038-a844-463d-8e84-939266a25500" + "900a6abf-9380-4978-a3cc-0a2302853dda" ], "x-ms-client-request-id": [ - "e61a9275-25b6-4d83-a12c-a0af0c122515-2020-01-16 10:09:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cdb7d3da-937e-4120-adf9-e6d83560affe" ], "x-ms-correlation-request-id": [ - "9b297038-a844-463d-8e84-939266a25500" + "900a6abf-9380-4978-a3cc-0a2302853dda" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100938Z:9b297038-a844-463d-8e84-939266a25500" + "CENTRALUSEUAP:20210418T131640Z:900a6abf-9380-4978-a3cc-0a2302853dda" ], "Date": [ - "Thu, 16 Jan 2020 10:09:37 GMT" + "Sun, 18 Apr 2021 13:16:39 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -17736,29 +17184,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a372748-cd5f-4031-8a39-23b56220672e-2020-01-16 10:09:48Z-Ps" + "c2a77482-5f4b-4df9-a160-6834da77733d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165788887)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770588887)\\/\",\"ClientRequestId\":\"4a372748-cd5f-4031-8a39-23b56220672e-2020-01-16 10:09:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tOaePH2O9nNOUqIPGTVok6P+RtQAK7ovdLl8e+2dUlo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748210205)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353010205)\\/\",\"ClientRequestId\":\"7f3476ec-41ff-42c4-a30f-0217a6e4f346-2021-04-18 13:16:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SkACmTCJRv6aUmakuzWWM7cew2G573s+gLcu1eQbZfo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17769,38 +17217,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11757" + "11568" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "adad6c07-ab5f-42f3-902e-22954c370ca1" + "f2aca41f-52f7-4c48-b826-69b971b00012" ], "x-ms-client-request-id": [ - "4a372748-cd5f-4031-8a39-23b56220672e-2020-01-16 10:09:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c2a77482-5f4b-4df9-a160-6834da77733d" ], "x-ms-correlation-request-id": [ - "adad6c07-ab5f-42f3-902e-22954c370ca1" + "f2aca41f-52f7-4c48-b826-69b971b00012" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100949Z:adad6c07-ab5f-42f3-902e-22954c370ca1" + "CENTRALUSEUAP:20210418T131650Z:f2aca41f-52f7-4c48-b826-69b971b00012" ], "Date": [ - "Thu, 16 Jan 2020 10:09:48 GMT" + "Sun, 18 Apr 2021 13:16:49 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -17809,29 +17254,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ccca4a3e-8110-4b8d-9752-662a69f71252-2020-01-16 10:09:59Z-Ps" + "4a24e403-ecaa-4379-98ee-d15a4423889e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165799393)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770599393)\\/\",\"ClientRequestId\":\"ccca4a3e-8110-4b8d-9752-662a69f71252-2020-01-16 10:09:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vG4Th0WtP0i4ukPuL5GqA59Bm05LDJ8wZsOcPw1yZ40=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748220616)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353020616)\\/\",\"ClientRequestId\":\"52f93fc2-bf51-4a84-abcb-defd3958a6ac-2021-04-18 13:17:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QxGVls+i3F9ykxVZx2VjADk7WdW/Uc6w86+dx/NBVYI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17842,38 +17287,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11755" + "11566" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d4f7ca4d-8828-43a3-9a89-c78081be7c21" + "e01557e0-8639-4e83-827c-b7a736fdc7a7" ], "x-ms-client-request-id": [ - "ccca4a3e-8110-4b8d-9752-662a69f71252-2020-01-16 10:09:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4a24e403-ecaa-4379-98ee-d15a4423889e" ], "x-ms-correlation-request-id": [ - "d4f7ca4d-8828-43a3-9a89-c78081be7c21" + "e01557e0-8639-4e83-827c-b7a736fdc7a7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T100959Z:d4f7ca4d-8828-43a3-9a89-c78081be7c21" + "CENTRALUSEUAP:20210418T131700Z:e01557e0-8639-4e83-827c-b7a736fdc7a7" ], "Date": [ - "Thu, 16 Jan 2020 10:09:59 GMT" + "Sun, 18 Apr 2021 13:17:00 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -17882,29 +17324,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81d3e993-c070-4582-a37b-2912332a1135-2020-01-16 10:10:09Z-Ps" + "d5cbbb1e-6b40-4053-8cae-796f5488588c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165809935)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770609935)\\/\",\"ClientRequestId\":\"81d3e993-c070-4582-a37b-2912332a1135-2020-01-16 10:10:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gxQhIgKGHd/XokVGbVCsypA488yOw0bNLcCwX9E8G54=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748230967)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353030967)\\/\",\"ClientRequestId\":\"7cdf2ac6-f51f-497d-a387-a366dec9dc1b-2021-04-18 13:17:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FVg4wdktxoiYSW8sW5AZpdX5grad7FXvZuNu3+Zdnrs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17915,38 +17357,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11759" + "11564" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "25a1c188-b87e-408f-9fe1-22d65304c254" + "0d963e21-1a93-4b54-b35a-21276fb5e9b1" ], "x-ms-client-request-id": [ - "81d3e993-c070-4582-a37b-2912332a1135-2020-01-16 10:10:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d5cbbb1e-6b40-4053-8cae-796f5488588c" ], "x-ms-correlation-request-id": [ - "25a1c188-b87e-408f-9fe1-22d65304c254" + "0d963e21-1a93-4b54-b35a-21276fb5e9b1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101010Z:25a1c188-b87e-408f-9fe1-22d65304c254" + "CENTRALUSEUAP:20210418T131711Z:0d963e21-1a93-4b54-b35a-21276fb5e9b1" ], "Date": [ - "Thu, 16 Jan 2020 10:10:10 GMT" + "Sun, 18 Apr 2021 13:17:11 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -17955,29 +17394,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac8ad31e-7418-4868-b940-83b7bc424aaa-2020-01-16 10:10:20Z-Ps" + "64e108b8-2f25-42b8-9c25-dfe73cf93e2c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165820395)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770620395)\\/\",\"ClientRequestId\":\"ac8ad31e-7418-4868-b940-83b7bc424aaa-2020-01-16 10:10:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Zh9ouEcwJ/9Tt1NgCg9ZBQ6rgdZokiXt52nX7L/TPi0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748242576)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353042576)\\/\",\"ClientRequestId\":\"843dc8a9-2576-481b-a56c-9f734e89d261-2021-04-18 13:17:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jA4yWy5DC+LDHPXgX9V+FBvHDJMsALRiemNEI9laYZc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17988,38 +17427,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11758" + "11562" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "602c9c55-afe6-49a4-a737-cd5e023f12ad" + "83e858e9-3497-463b-9c12-196d2999da5b" ], "x-ms-client-request-id": [ - "ac8ad31e-7418-4868-b940-83b7bc424aaa-2020-01-16 10:10:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "64e108b8-2f25-42b8-9c25-dfe73cf93e2c" ], "x-ms-correlation-request-id": [ - "602c9c55-afe6-49a4-a737-cd5e023f12ad" + "83e858e9-3497-463b-9c12-196d2999da5b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101020Z:602c9c55-afe6-49a4-a737-cd5e023f12ad" + "CENTRALUSEUAP:20210418T131722Z:83e858e9-3497-463b-9c12-196d2999da5b" ], "Date": [ - "Thu, 16 Jan 2020 10:10:20 GMT" + "Sun, 18 Apr 2021 13:17:22 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -18028,29 +17464,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce4ba05f-2e08-4ce5-b391-71c82113b812-2020-01-16 10:10:30Z-Ps" + "8da2a26c-c917-429b-a499-623e1ccfecb2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165830893)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770630893)\\/\",\"ClientRequestId\":\"ce4ba05f-2e08-4ce5-b391-71c82113b812-2020-01-16 10:10:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5GCyD9jZVb3c/g9fAKeykIk2h6J1vAsN5tatpJ08uVQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748252931)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353052931)\\/\",\"ClientRequestId\":\"1b9abb5c-b3d3-4fd9-a627-e1f81e6368a0-2021-04-18 13:17:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Emvkg6tnI1TAgYylv1dklN/eRXtu+9GXifSuy3IEQMc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18061,38 +17497,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11757" + "11560" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6f3f12af-348d-492a-8c79-232e6fb63857" + "d3d095f5-ebe1-47f5-b928-098714cac9ea" ], "x-ms-client-request-id": [ - "ce4ba05f-2e08-4ce5-b391-71c82113b812-2020-01-16 10:10:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8da2a26c-c917-429b-a499-623e1ccfecb2" ], "x-ms-correlation-request-id": [ - "6f3f12af-348d-492a-8c79-232e6fb63857" + "d3d095f5-ebe1-47f5-b928-098714cac9ea" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101031Z:6f3f12af-348d-492a-8c79-232e6fb63857" + "CENTRALUSEUAP:20210418T131733Z:d3d095f5-ebe1-47f5-b928-098714cac9ea" ], "Date": [ - "Thu, 16 Jan 2020 10:10:30 GMT" + "Sun, 18 Apr 2021 13:17:33 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -18101,29 +17534,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eafefa6d-9ab8-468d-980c-a23c26da16c8-2020-01-16 10:10:41Z-Ps" + "421c1b21-7244-49b8-8642-9e5cbb1badf2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165841347)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770641347)\\/\",\"ClientRequestId\":\"eafefa6d-9ab8-468d-980c-a23c26da16c8-2020-01-16 10:10:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Sdh/SrYP8M+Cjr9pBT1QzBzrCRdT/Cusw5hBJeqpwDQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748263297)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353063297)\\/\",\"ClientRequestId\":\"e3a0a9cb-2ff7-4e42-bc19-9defb07c3a57-2021-04-18 13:17:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QV+BkBOSv6E0Dxo22CyIXbnFIatMqSirzohkbWuFOVI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18133,39 +17566,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11558" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6599dc40-6f0c-4123-81e2-dcff39f18548" + "e2bcc6fb-6a7a-4c81-a516-8ef9627d00c9" ], "x-ms-client-request-id": [ - "eafefa6d-9ab8-468d-980c-a23c26da16c8-2020-01-16 10:10:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11756" + "421c1b21-7244-49b8-8642-9e5cbb1badf2" ], "x-ms-correlation-request-id": [ - "6599dc40-6f0c-4123-81e2-dcff39f18548" + "e2bcc6fb-6a7a-4c81-a516-8ef9627d00c9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101041Z:6599dc40-6f0c-4123-81e2-dcff39f18548" + "CENTRALUSEUAP:20210418T131743Z:e2bcc6fb-6a7a-4c81-a516-8ef9627d00c9" ], "Date": [ - "Thu, 16 Jan 2020 10:10:41 GMT" + "Sun, 18 Apr 2021 13:17:43 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -18174,29 +17604,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f0a42cc-e5b3-470b-b741-635a8837a5ce-2020-01-16 10:10:51Z-Ps" + "c10d0100-8e46-4520-9ecc-27ee3ad33710" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165851826)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770651826)\\/\",\"ClientRequestId\":\"0f0a42cc-e5b3-470b-b741-635a8837a5ce-2020-01-16 10:10:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ofi2VslUjZMr3aenbU0e3GrFSjH9CacNCJDSoovcvWA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748273676)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353073676)\\/\",\"ClientRequestId\":\"d51dddf4-a7c0-4120-adb4-7ae9a755fff6-2021-04-18 13:17:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hWsJUlZou5svLm1fWjHH6OGNdC++GfAxD6/w/8W92go=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18207,38 +17637,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11755" + "11555" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "290ca2b7-88a9-43a3-a3a2-8d660ee95bc0" + "19d7277b-5403-4cb8-a968-b392c1224141" ], "x-ms-client-request-id": [ - "0f0a42cc-e5b3-470b-b741-635a8837a5ce-2020-01-16 10:10:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c10d0100-8e46-4520-9ecc-27ee3ad33710" ], "x-ms-correlation-request-id": [ - "290ca2b7-88a9-43a3-a3a2-8d660ee95bc0" + "19d7277b-5403-4cb8-a968-b392c1224141" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101053Z:290ca2b7-88a9-43a3-a3a2-8d660ee95bc0" + "CENTRALUSEUAP:20210418T131753Z:19d7277b-5403-4cb8-a968-b392c1224141" ], "Date": [ - "Thu, 16 Jan 2020 10:10:52 GMT" + "Sun, 18 Apr 2021 13:17:53 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -18247,29 +17674,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af19c9c4-3294-44a3-83be-e9c171ce481c-2020-01-16 10:11:03Z-Ps" + "a18f37d8-2d80-428f-9471-8c7f0798c522" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165863396)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770663396)\\/\",\"ClientRequestId\":\"af19c9c4-3294-44a3-83be-e9c171ce481c-2020-01-16 10:11:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CskHM0j5r1wfOtZMBCtprFZRAygQPwPCnsWiaCmZenQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748284041)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353084041)\\/\",\"ClientRequestId\":\"78d9b466-94d2-4afb-9c5e-710355be3c56-2021-04-18 13:18:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PlBi07c4nGVE6+Ev9VuNeoucYK57oxgINbQZ427UILc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18280,38 +17707,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11754" + "11553" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "fdc7b383-feab-456e-80c0-278e32d7ee87" + "2b3d2e87-ee9b-495e-8190-c3e65bc67b85" ], "x-ms-client-request-id": [ - "af19c9c4-3294-44a3-83be-e9c171ce481c-2020-01-16 10:11:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a18f37d8-2d80-428f-9471-8c7f0798c522" ], "x-ms-correlation-request-id": [ - "fdc7b383-feab-456e-80c0-278e32d7ee87" + "2b3d2e87-ee9b-495e-8190-c3e65bc67b85" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101104Z:fdc7b383-feab-456e-80c0-278e32d7ee87" + "CENTRALUSEUAP:20210418T131804Z:2b3d2e87-ee9b-495e-8190-c3e65bc67b85" ], "Date": [ - "Thu, 16 Jan 2020 10:11:04 GMT" + "Sun, 18 Apr 2021 13:18:04 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -18320,29 +17744,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ee0f09c-b42c-43c3-bcf6-f8428b52d32b-2020-01-16 10:11:14Z-Ps" + "6efcb396-ad25-4e3e-afbb-cf8898c9bd2d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165874957)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770674957)\\/\",\"ClientRequestId\":\"5ee0f09c-b42c-43c3-bcf6-f8428b52d32b-2020-01-16 10:11:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2cC6o+fJT62wBlW7XlBHDZzSOkmep+Gv0JMpL2INaVk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748294413)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353094413)\\/\",\"ClientRequestId\":\"b697dd04-5ad1-4432-910e-412a73248d04-2021-04-18 13:18:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LmUUmcxVsyZaLOFkIKfeW4E2L/k3mYqU/XTP1YZHBoM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18353,38 +17777,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11753" + "11552" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ce848f75-ad97-4417-b273-4ee579f0210a" + "6d874182-443b-4817-b670-f342d400d615" ], "x-ms-client-request-id": [ - "5ee0f09c-b42c-43c3-bcf6-f8428b52d32b-2020-01-16 10:11:14Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6efcb396-ad25-4e3e-afbb-cf8898c9bd2d" ], "x-ms-correlation-request-id": [ - "ce848f75-ad97-4417-b273-4ee579f0210a" + "6d874182-443b-4817-b670-f342d400d615" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101116Z:ce848f75-ad97-4417-b273-4ee579f0210a" + "CENTRALUSEUAP:20210418T131814Z:6d874182-443b-4817-b670-f342d400d615" ], "Date": [ - "Thu, 16 Jan 2020 10:11:15 GMT" + "Sun, 18 Apr 2021 13:18:14 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -18393,29 +17814,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2288f95-15d1-454b-aa9a-90d67e52135c-2020-01-16 10:11:26Z-Ps" + "7c76536c-6c28-4918-ae29-7c3dc229eea1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165886539)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770686539)\\/\",\"ClientRequestId\":\"a2288f95-15d1-454b-aa9a-90d67e52135c-2020-01-16 10:11:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4rKNvQA2qf3au3obiprQmcX8NY4gyp60ksiln1fUluc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748304772)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353104772)\\/\",\"ClientRequestId\":\"a7ad749d-7963-4fc9-a837-6d594deaeeaa-2021-04-18 13:18:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YZ7NmA5mEWovNwhnhPlZlD4bqLsN+CQB3QKd+sJY92Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18426,38 +17847,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11752" + "11550" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "29cd2af9-bb7a-4f1e-82c9-83ab3c0398b7" + "a6a91039-bb1b-4693-bd6c-3410c23adef7" ], "x-ms-client-request-id": [ - "a2288f95-15d1-454b-aa9a-90d67e52135c-2020-01-16 10:11:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7c76536c-6c28-4918-ae29-7c3dc229eea1" ], "x-ms-correlation-request-id": [ - "29cd2af9-bb7a-4f1e-82c9-83ab3c0398b7" + "a6a91039-bb1b-4693-bd6c-3410c23adef7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101126Z:29cd2af9-bb7a-4f1e-82c9-83ab3c0398b7" + "CENTRALUSEUAP:20210418T131824Z:a6a91039-bb1b-4693-bd6c-3410c23adef7" ], "Date": [ - "Thu, 16 Jan 2020 10:11:26 GMT" + "Sun, 18 Apr 2021 13:18:23 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -18466,29 +17884,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "381fcbf2-fc73-4b86-97cb-28811ae510b4-2020-01-16 10:11:37Z-Ps" + "778d4ab2-e14b-44f0-85b7-742d1b86dd7d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165897031)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770697031)\\/\",\"ClientRequestId\":\"381fcbf2-fc73-4b86-97cb-28811ae510b4-2020-01-16 10:11:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wNfcZUEr/m1QYxb1lsyvMyiHYqftW7jUuoMvYPQ1KRA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748315140)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353115140)\\/\",\"ClientRequestId\":\"e679251e-1650-4e6e-bb0d-a95fa03eb0a2-2021-04-18 13:18:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xEOV0eQC0YBlwnLFZ+49kZzt+erfv/wuoNif10VABQw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18499,38 +17917,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11751" + "11548" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3ddf3248-bcde-4efe-8ed2-b8e67dc07abf" + "04a9766e-7b1e-4625-8cb9-7ea73bdfbe92" ], "x-ms-client-request-id": [ - "381fcbf2-fc73-4b86-97cb-28811ae510b4-2020-01-16 10:11:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "778d4ab2-e14b-44f0-85b7-742d1b86dd7d" ], "x-ms-correlation-request-id": [ - "3ddf3248-bcde-4efe-8ed2-b8e67dc07abf" + "04a9766e-7b1e-4625-8cb9-7ea73bdfbe92" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101137Z:3ddf3248-bcde-4efe-8ed2-b8e67dc07abf" + "CENTRALUSEUAP:20210418T131835Z:04a9766e-7b1e-4625-8cb9-7ea73bdfbe92" ], "Date": [ - "Thu, 16 Jan 2020 10:11:36 GMT" + "Sun, 18 Apr 2021 13:18:34 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -18539,29 +17954,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b2ae55a-0121-4092-b406-097e8c9bd536-2020-01-16 10:11:47Z-Ps" + "d4d0fe25-81ef-4134-8ddf-ab4e1292e250" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165907509)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770707509)\\/\",\"ClientRequestId\":\"4b2ae55a-0121-4092-b406-097e8c9bd536-2020-01-16 10:11:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4Qc1Wl9h7F7Q0kYZYXYDVFAZsuogdPmB/AhJazclI3I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748325507)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353125507)\\/\",\"ClientRequestId\":\"53b296c0-e9e6-47a1-a4a1-73d22d904d25-2021-04-18 13:18:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bzOl1+hcZT8Sp8tZxzaqQatKH3Hsq/RNA9QD1XJ4cFA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18572,38 +17987,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11750" + "11545" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a02ad722-dd89-4d63-84fb-f344ba973dcb" + "4328db98-5830-48d1-b9ff-f8046263405a" ], "x-ms-client-request-id": [ - "4b2ae55a-0121-4092-b406-097e8c9bd536-2020-01-16 10:11:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d4d0fe25-81ef-4134-8ddf-ab4e1292e250" ], "x-ms-correlation-request-id": [ - "a02ad722-dd89-4d63-84fb-f344ba973dcb" + "4328db98-5830-48d1-b9ff-f8046263405a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101147Z:a02ad722-dd89-4d63-84fb-f344ba973dcb" + "CENTRALUSEUAP:20210418T131845Z:4328db98-5830-48d1-b9ff-f8046263405a" ], "Date": [ - "Thu, 16 Jan 2020 10:11:47 GMT" + "Sun, 18 Apr 2021 13:18:45 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -18612,29 +18024,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "711306d3-6f1e-4726-be70-04fd785811dc-2020-01-16 10:11:57Z-Ps" + "3ce73ee2-a8e4-444f-ae7d-0ea323cb50d9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165917994)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770717994)\\/\",\"ClientRequestId\":\"711306d3-6f1e-4726-be70-04fd785811dc-2020-01-16 10:11:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QxL8tIMx8HuEQkPUEPfrEQsNzu7hVSP+OHu/GaaAbNU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748335875)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353135875)\\/\",\"ClientRequestId\":\"c3785965-871f-4c3a-973d-0da0817ebe01-2021-04-18 13:18:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IBaJrxXT7WE9aoCUdAH9rIK2Aj5YWSEz144wYlqttqI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18645,38 +18057,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11749" + "11543" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "34965d6a-b257-4228-9038-7ee7cad17b15" + "e22a79e2-a335-4b1f-bbac-c083264fce62" ], "x-ms-client-request-id": [ - "711306d3-6f1e-4726-be70-04fd785811dc-2020-01-16 10:11:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3ce73ee2-a8e4-444f-ae7d-0ea323cb50d9" ], "x-ms-correlation-request-id": [ - "34965d6a-b257-4228-9038-7ee7cad17b15" + "e22a79e2-a335-4b1f-bbac-c083264fce62" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101158Z:34965d6a-b257-4228-9038-7ee7cad17b15" + "CENTRALUSEUAP:20210418T131856Z:e22a79e2-a335-4b1f-bbac-c083264fce62" ], "Date": [ - "Thu, 16 Jan 2020 10:11:58 GMT" + "Sun, 18 Apr 2021 13:18:55 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -18685,29 +18094,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "449783ad-2bc2-4c5b-b73c-be0a1df805ab-2020-01-16 10:12:08Z-Ps" + "3d976bb8-424f-4858-8a83-227d29434509" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165928473)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770728473)\\/\",\"ClientRequestId\":\"449783ad-2bc2-4c5b-b73c-be0a1df805ab-2020-01-16 10:12:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RQjb/rGoSH21UOo9ddH2R0WGex1undMYjaTGzweepVM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748346247)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353146247)\\/\",\"ClientRequestId\":\"1dfda7c3-9029-4d6a-8281-6e6c8d271506-2021-04-18 13:19:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vzac/dmMvH7WC9vqKLTRGFMYssnOxMUSIKydjh1P5DU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18718,38 +18127,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11748" + "11542" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a371287d-05dc-4db8-8272-e10954be5874" + "4854505d-9946-42bd-b64c-a2dab2a3f5ac" ], "x-ms-client-request-id": [ - "449783ad-2bc2-4c5b-b73c-be0a1df805ab-2020-01-16 10:12:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3d976bb8-424f-4858-8a83-227d29434509" ], "x-ms-correlation-request-id": [ - "a371287d-05dc-4db8-8272-e10954be5874" + "4854505d-9946-42bd-b64c-a2dab2a3f5ac" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101208Z:a371287d-05dc-4db8-8272-e10954be5874" + "CENTRALUSEUAP:20210418T131906Z:4854505d-9946-42bd-b64c-a2dab2a3f5ac" ], "Date": [ - "Thu, 16 Jan 2020 10:12:08 GMT" + "Sun, 18 Apr 2021 13:19:06 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -18758,29 +18164,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "983699c6-ebac-4dbc-839e-8c67c5c53b9b-2020-01-16 10:12:18Z-Ps" + "e86335c9-6cfc-4634-b297-c38c92908de1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165938927)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770738927)\\/\",\"ClientRequestId\":\"983699c6-ebac-4dbc-839e-8c67c5c53b9b-2020-01-16 10:12:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"E5AJl9rneCtDxk3OUrNGx162s6X19nVRbGvS9ZM+yJI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748356601)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353156601)\\/\",\"ClientRequestId\":\"896f883c-8b34-48f3-8d68-911bfdf907da-2021-04-18 13:19:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FaimpmFHE3xJkuZwEmohDIIX2dcvVjzfPP3LKY9+mLU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18791,38 +18197,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11746" + "11539" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5b1c5ec7-f10d-4781-9a70-02cad1e3b4a7" + "c7470ac0-536d-46d6-923a-f70c98880aeb" ], "x-ms-client-request-id": [ - "983699c6-ebac-4dbc-839e-8c67c5c53b9b-2020-01-16 10:12:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e86335c9-6cfc-4634-b297-c38c92908de1" ], "x-ms-correlation-request-id": [ - "5b1c5ec7-f10d-4781-9a70-02cad1e3b4a7" + "c7470ac0-536d-46d6-923a-f70c98880aeb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101219Z:5b1c5ec7-f10d-4781-9a70-02cad1e3b4a7" + "CENTRALUSEUAP:20210418T131916Z:c7470ac0-536d-46d6-923a-f70c98880aeb" ], "Date": [ - "Thu, 16 Jan 2020 10:12:18 GMT" + "Sun, 18 Apr 2021 13:19:16 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -18831,29 +18234,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12e54f3f-431b-4b76-884c-a912f0707d5c-2020-01-16 10:12:29Z-Ps" + "d32ab7d4-0e42-4713-800e-62d61de54447" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165949388)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770749388)\\/\",\"ClientRequestId\":\"12e54f3f-431b-4b76-884c-a912f0707d5c-2020-01-16 10:12:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eo258b6G/QkF4fLgj00MA40pqOyrDc23qlfG7Mpq1vE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748367082)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353167082)\\/\",\"ClientRequestId\":\"3703377e-3be9-464d-bc5b-f2ac75ce45af-2021-04-18 13:19:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jCiyP/iPYEjQHcVo156zQUAptJ8SvQ4elhChINB5bR0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18864,38 +18267,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11745" + "11537" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "34856f6d-f26a-4a8f-a689-aa2cad07df6f" + "770ccf77-11c4-4a46-a49b-c3bbb749f17c" ], "x-ms-client-request-id": [ - "12e54f3f-431b-4b76-884c-a912f0707d5c-2020-01-16 10:12:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d32ab7d4-0e42-4713-800e-62d61de54447" ], "x-ms-correlation-request-id": [ - "34856f6d-f26a-4a8f-a689-aa2cad07df6f" + "770ccf77-11c4-4a46-a49b-c3bbb749f17c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101229Z:34856f6d-f26a-4a8f-a689-aa2cad07df6f" + "CENTRALUSEUAP:20210418T131927Z:770ccf77-11c4-4a46-a49b-c3bbb749f17c" ], "Date": [ - "Thu, 16 Jan 2020 10:12:28 GMT" + "Sun, 18 Apr 2021 13:19:27 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -18904,29 +18304,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12e75a53-4d6f-453b-8fa9-3341f29251ca-2020-01-16 10:12:39Z-Ps" + "ccb612b9-7bd1-4479-8b63-ed7a7f78b9c0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165959862)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770759862)\\/\",\"ClientRequestId\":\"12e75a53-4d6f-453b-8fa9-3341f29251ca-2020-01-16 10:12:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"C1lBlMFD6OZVgDdLxJfB2t773gVwKtgc5ebk3j2y8eI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748377445)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353177445)\\/\",\"ClientRequestId\":\"6592476a-9f81-4adc-a7ca-691a0cb68ddc-2021-04-18 13:19:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DMSZh7gn5OsQH89ngg6ksBxdX3KDG1MZNa/KRMgzaBE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18936,39 +18336,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11535" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d6d644ea-8c23-48e5-85a1-a4baa15b7240" + "b2bcd46a-5b14-416a-9366-83e300a138cc" ], "x-ms-client-request-id": [ - "12e75a53-4d6f-453b-8fa9-3341f29251ca-2020-01-16 10:12:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11744" + "ccb612b9-7bd1-4479-8b63-ed7a7f78b9c0" ], "x-ms-correlation-request-id": [ - "d6d644ea-8c23-48e5-85a1-a4baa15b7240" + "b2bcd46a-5b14-416a-9366-83e300a138cc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101240Z:d6d644ea-8c23-48e5-85a1-a4baa15b7240" + "CENTRALUSEUAP:20210418T131937Z:b2bcd46a-5b14-416a-9366-83e300a138cc" ], "Date": [ - "Thu, 16 Jan 2020 10:12:39 GMT" + "Sun, 18 Apr 2021 13:19:36 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -18977,29 +18374,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00d6d8ea-17d5-491e-99ba-2e40125dd530-2020-01-16 10:12:50Z-Ps" + "61e466d6-634c-4b41-a805-ab015930bb0e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165970346)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770770346)\\/\",\"ClientRequestId\":\"00d6d8ea-17d5-491e-99ba-2e40125dd530-2020-01-16 10:12:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VocsJHvZH2KXn3sJ/iciUGosss3SrP/p9j/k86sI2pA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748387803)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353187803)\\/\",\"ClientRequestId\":\"6d9126bf-e65e-4bd6-8e00-0bdd9697c317-2021-04-18 13:19:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bzjNwCeNEYrL2YRTRs9inEkKASP1ksyUiskM1v0isYs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19010,38 +18407,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11743" + "11533" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2f14eb64-ca97-46bc-91f4-12c422422266" + "7f70d9d0-8eb2-4266-bc72-b61da239456c" ], "x-ms-client-request-id": [ - "00d6d8ea-17d5-491e-99ba-2e40125dd530-2020-01-16 10:12:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "61e466d6-634c-4b41-a805-ab015930bb0e" ], "x-ms-correlation-request-id": [ - "2f14eb64-ca97-46bc-91f4-12c422422266" + "7f70d9d0-8eb2-4266-bc72-b61da239456c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101251Z:2f14eb64-ca97-46bc-91f4-12c422422266" + "CENTRALUSEUAP:20210418T131947Z:7f70d9d0-8eb2-4266-bc72-b61da239456c" ], "Date": [ - "Thu, 16 Jan 2020 10:12:51 GMT" + "Sun, 18 Apr 2021 13:19:47 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -19050,29 +18444,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09256d69-b1f4-4d3f-ac99-035771100dd2-2020-01-16 10:13:02Z-Ps" + "0f0dcdac-dd30-4469-aa6d-cbcd284a33c9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165982001)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770782001)\\/\",\"ClientRequestId\":\"09256d69-b1f4-4d3f-ac99-035771100dd2-2020-01-16 10:13:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AUGJ8Tyu8kjfcIOPFn/qN84TjxRXB1e3EUd4uH4J8d8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748398161)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353198161)\\/\",\"ClientRequestId\":\"a315adbc-7d54-4fbe-aa08-a81ee3ae93e8-2021-04-18 13:19:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5QNyHluTIJybqGvDB8istc+2WfNldIZ39J7kjyio8co=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19083,38 +18477,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11741" + "11531" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e6083124-1384-4b58-8f1c-885cc3e103c0" + "53db19df-a2a4-41db-be65-a79781453fc5" ], "x-ms-client-request-id": [ - "09256d69-b1f4-4d3f-ac99-035771100dd2-2020-01-16 10:13:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0f0dcdac-dd30-4469-aa6d-cbcd284a33c9" ], "x-ms-correlation-request-id": [ - "e6083124-1384-4b58-8f1c-885cc3e103c0" + "53db19df-a2a4-41db-be65-a79781453fc5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101302Z:e6083124-1384-4b58-8f1c-885cc3e103c0" + "CENTRALUSEUAP:20210418T131958Z:53db19df-a2a4-41db-be65-a79781453fc5" ], "Date": [ - "Thu, 16 Jan 2020 10:13:02 GMT" + "Sun, 18 Apr 2021 13:19:57 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -19123,29 +18514,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58e9a13c-47e7-41f3-8d95-5db28dcf2cad-2020-01-16 10:13:12Z-Ps" + "25f100cb-9a04-4911-bf8c-c16d63dac108" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579165992460)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770792460)\\/\",\"ClientRequestId\":\"58e9a13c-47e7-41f3-8d95-5db28dcf2cad-2020-01-16 10:13:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wfhcAN3MufY6Nd3brj7MqlB+SFo678A+qOuLFjXlq/Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748408522)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353208522)\\/\",\"ClientRequestId\":\"e08c406b-2311-42c6-9b52-6e5e3f54c4ed-2021-04-18 13:20:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yyQp6dybxlMIuCDvLthaZGwgYD9Z9Kmf/15EMewUQO4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19156,38 +18547,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11740" + "11536" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a8a1a28d-2abd-40c2-aab1-97b21ee38349" + "15553b20-2226-4522-97c7-0aba1a4c7816" ], "x-ms-client-request-id": [ - "58e9a13c-47e7-41f3-8d95-5db28dcf2cad-2020-01-16 10:13:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "25f100cb-9a04-4911-bf8c-c16d63dac108" ], "x-ms-correlation-request-id": [ - "a8a1a28d-2abd-40c2-aab1-97b21ee38349" + "15553b20-2226-4522-97c7-0aba1a4c7816" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101312Z:a8a1a28d-2abd-40c2-aab1-97b21ee38349" + "CENTRALUSEUAP:20210418T132008Z:15553b20-2226-4522-97c7-0aba1a4c7816" ], "Date": [ - "Thu, 16 Jan 2020 10:13:12 GMT" + "Sun, 18 Apr 2021 13:20:07 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -19196,29 +18584,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fee31a45-45b7-4151-955c-ad36aa81cf55-2020-01-16 10:13:22Z-Ps" + "948d767b-d526-4219-adb6-e7c28fb27bf6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166002905)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770802905)\\/\",\"ClientRequestId\":\"fee31a45-45b7-4151-955c-ad36aa81cf55-2020-01-16 10:13:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ve6RU6F2RUagdo4qbK/knkE2M6oHDlyahTMkaFTi3O0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748418918)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353218918)\\/\",\"ClientRequestId\":\"47a7b19f-7b96-46a9-a666-479019662ab7-2021-04-18 13:20:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"i5l3XQTGjQMbS0bgTAUkfUz3I/87nSv1n/ox7StYSOk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19229,38 +18617,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11739" + "11534" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b6ebbe5f-6f97-4535-9fc1-dc1114570bba" + "2fab798a-2b38-47a8-9902-f65f91fecaec" ], "x-ms-client-request-id": [ - "fee31a45-45b7-4151-955c-ad36aa81cf55-2020-01-16 10:13:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "948d767b-d526-4219-adb6-e7c28fb27bf6" ], "x-ms-correlation-request-id": [ - "b6ebbe5f-6f97-4535-9fc1-dc1114570bba" + "2fab798a-2b38-47a8-9902-f65f91fecaec" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101323Z:b6ebbe5f-6f97-4535-9fc1-dc1114570bba" + "CENTRALUSEUAP:20210418T132019Z:2fab798a-2b38-47a8-9902-f65f91fecaec" ], "Date": [ - "Thu, 16 Jan 2020 10:13:22 GMT" + "Sun, 18 Apr 2021 13:20:18 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -19269,29 +18654,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ffbb007-7bfd-4fd7-b3c8-3d296a48ac81-2020-01-16 10:13:33Z-Ps" + "c7bd9a94-b328-4c05-bd2d-a834c1e697ef" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166013365)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770813365)\\/\",\"ClientRequestId\":\"9ffbb007-7bfd-4fd7-b3c8-3d296a48ac81-2020-01-16 10:13:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oS/RsrzFZgG350a80TWgMxJKQx1KVuYr7eoGwKsnw+c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748429329)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353229329)\\/\",\"ClientRequestId\":\"470888c1-571a-4269-b31a-0329f51556b8-2021-04-18 13:20:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pwHcgNL4fS1AdUUJSPN8DLL2UqrDMVqftywRoij5nvo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19302,38 +18687,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11738" + "11532" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e28ddc03-839d-4443-9a71-aa50928dcfe5" + "1edc06f6-3212-4021-b7e3-be2b50e96d75" ], "x-ms-client-request-id": [ - "9ffbb007-7bfd-4fd7-b3c8-3d296a48ac81-2020-01-16 10:13:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c7bd9a94-b328-4c05-bd2d-a834c1e697ef" ], "x-ms-correlation-request-id": [ - "e28ddc03-839d-4443-9a71-aa50928dcfe5" + "1edc06f6-3212-4021-b7e3-be2b50e96d75" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101333Z:e28ddc03-839d-4443-9a71-aa50928dcfe5" + "CENTRALUSEUAP:20210418T132029Z:1edc06f6-3212-4021-b7e3-be2b50e96d75" ], "Date": [ - "Thu, 16 Jan 2020 10:13:32 GMT" + "Sun, 18 Apr 2021 13:20:28 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -19342,29 +18724,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e13814ff-3cd0-4413-a38f-19ea2d2137f1-2020-01-16 10:13:43Z-Ps" + "dc5d9ad7-33a9-4a52-8669-0da2322ab4f0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166023813)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770823813)\\/\",\"ClientRequestId\":\"e13814ff-3cd0-4413-a38f-19ea2d2137f1-2020-01-16 10:13:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xYSVjRMEnxff8IUIdTtMmEQsANfUrfeHsKJbZOixVB0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748439694)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353239694)\\/\",\"ClientRequestId\":\"515a8de2-bae0-407b-bc6f-7e5d2b9a62b8-2021-04-18 13:20:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fm0UKtsQqooQ8RQ1Zwu/brxTrI30YsE0g6HnfwwqiAM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19375,38 +18757,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11737" + "11530" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "07669316-0305-4702-986e-ac2e406daafa" + "cef25b2f-34e9-42ca-b5c0-5b10835e3823" ], "x-ms-client-request-id": [ - "e13814ff-3cd0-4413-a38f-19ea2d2137f1-2020-01-16 10:13:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "dc5d9ad7-33a9-4a52-8669-0da2322ab4f0" ], "x-ms-correlation-request-id": [ - "07669316-0305-4702-986e-ac2e406daafa" + "cef25b2f-34e9-42ca-b5c0-5b10835e3823" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101344Z:07669316-0305-4702-986e-ac2e406daafa" + "CENTRALUSEUAP:20210418T132039Z:cef25b2f-34e9-42ca-b5c0-5b10835e3823" ], "Date": [ - "Thu, 16 Jan 2020 10:13:43 GMT" + "Sun, 18 Apr 2021 13:20:39 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -19415,29 +18794,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6da14cea-47c6-4461-b5bc-3f31ccf82bf5-2020-01-16 10:13:54Z-Ps" + "5149c1ec-8c33-451d-8c29-bd862a936736" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166034321)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770834321)\\/\",\"ClientRequestId\":\"6da14cea-47c6-4461-b5bc-3f31ccf82bf5-2020-01-16 10:13:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5+a+Ntb6v30n8W/8nmhECPbBoB8iuFO8FanYMbX9Alk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748450054)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353250054)\\/\",\"ClientRequestId\":\"b9092715-54e0-4d15-a527-c42b89265aca-2021-04-18 13:20:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gd6klS6EYRL2VKpqZsBx5XwPRmnCjx6Wq2FB/EpWLNc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19448,38 +18827,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11736" + "11528" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "24d332ba-f8d3-48c2-a106-7c4478d70518" + "55165518-3582-466e-804b-d253ff5a8bad" ], "x-ms-client-request-id": [ - "6da14cea-47c6-4461-b5bc-3f31ccf82bf5-2020-01-16 10:13:54Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5149c1ec-8c33-451d-8c29-bd862a936736" ], "x-ms-correlation-request-id": [ - "24d332ba-f8d3-48c2-a106-7c4478d70518" + "55165518-3582-466e-804b-d253ff5a8bad" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101354Z:24d332ba-f8d3-48c2-a106-7c4478d70518" + "CENTRALUSEUAP:20210418T132050Z:55165518-3582-466e-804b-d253ff5a8bad" ], "Date": [ - "Thu, 16 Jan 2020 10:13:54 GMT" + "Sun, 18 Apr 2021 13:20:50 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -19488,29 +18864,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd6d8588-520c-4090-abe8-fde78f7db7fe-2020-01-16 10:14:04Z-Ps" + "5889b6a1-7bc4-4d7d-b5b4-4de593abb82f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166044771)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770844771)\\/\",\"ClientRequestId\":\"cd6d8588-520c-4090-abe8-fde78f7db7fe-2020-01-16 10:14:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LQcGX8A+y82dCUvQJRMK8Hr9oJvKWNUbZTLavide2/0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748460502)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353260502)\\/\",\"ClientRequestId\":\"7fcc0349-8a6d-4fea-a29e-457ad3542a72-2021-04-18 13:21:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QHeCXYuiol5myvELDGbXkqNJLhKgX90HtsDwHOQx5Tg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19521,38 +18897,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11735" + "11526" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "92768b92-84f2-4d4b-a13b-c533bb4f3bc7" + "c000a5c5-a10d-4003-abcd-a04e283a552e" ], "x-ms-client-request-id": [ - "cd6d8588-520c-4090-abe8-fde78f7db7fe-2020-01-16 10:14:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5889b6a1-7bc4-4d7d-b5b4-4de593abb82f" ], "x-ms-correlation-request-id": [ - "92768b92-84f2-4d4b-a13b-c533bb4f3bc7" + "c000a5c5-a10d-4003-abcd-a04e283a552e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101405Z:92768b92-84f2-4d4b-a13b-c533bb4f3bc7" + "CENTRALUSEUAP:20210418T132100Z:c000a5c5-a10d-4003-abcd-a04e283a552e" ], "Date": [ - "Thu, 16 Jan 2020 10:14:04 GMT" + "Sun, 18 Apr 2021 13:21:00 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -19561,29 +18934,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e01b7745-a2bf-45cc-8f24-a0d360262f29-2020-01-16 10:14:15Z-Ps" + "8f961f43-c416-4ba7-9835-34df0f440bc2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166055239)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770855239)\\/\",\"ClientRequestId\":\"e01b7745-a2bf-45cc-8f24-a0d360262f29-2020-01-16 10:14:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"USwt+ov4fJClhomKvc/tuQ+03A4STVlSjmbgtDMNptc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748470891)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353270891)\\/\",\"ClientRequestId\":\"dd0c18ae-9f58-4859-8bf2-4984378cbf61-2021-04-18 13:21:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6k1S6UhJoL1i5EXOFCSUboJxDHf1SiAT36e7FzENM/U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19593,39 +18966,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11524" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e2cfd4b7-0dcd-4e54-87fe-03978f34aad1" + "8619e65c-3dc3-42e5-bc1d-3a4ec945a20a" ], "x-ms-client-request-id": [ - "e01b7745-a2bf-45cc-8f24-a0d360262f29-2020-01-16 10:14:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11734" + "8f961f43-c416-4ba7-9835-34df0f440bc2" ], "x-ms-correlation-request-id": [ - "e2cfd4b7-0dcd-4e54-87fe-03978f34aad1" + "8619e65c-3dc3-42e5-bc1d-3a4ec945a20a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101415Z:e2cfd4b7-0dcd-4e54-87fe-03978f34aad1" + "CENTRALUSEUAP:20210418T132111Z:8619e65c-3dc3-42e5-bc1d-3a4ec945a20a" ], "Date": [ - "Thu, 16 Jan 2020 10:14:15 GMT" + "Sun, 18 Apr 2021 13:21:11 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -19634,29 +19004,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb7100f5-3baa-4621-a1ed-863870aca8e2-2020-01-16 10:14:25Z-Ps" + "2003090d-b368-4179-8d53-72449c7b3ede" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166065682)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770865682)\\/\",\"ClientRequestId\":\"bb7100f5-3baa-4621-a1ed-863870aca8e2-2020-01-16 10:14:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ywABmCzOTteWcwz7t2paqq3OGAI2LXwWul0GOxe2NN0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748481266)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353281266)\\/\",\"ClientRequestId\":\"d6349c09-3868-40b3-ad1e-1408eb925ac5-2021-04-18 13:21:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1rCTHsFMWwf0wi/jISJdwh6rE+7JHqyVoIMYyqix0ZM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19667,38 +19037,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11733" + "11522" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "090d25d0-a72d-4923-b2cc-d32230c1a72d" + "f5587954-82a3-4c5c-b283-54d76f63c486" ], "x-ms-client-request-id": [ - "bb7100f5-3baa-4621-a1ed-863870aca8e2-2020-01-16 10:14:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2003090d-b368-4179-8d53-72449c7b3ede" ], "x-ms-correlation-request-id": [ - "090d25d0-a72d-4923-b2cc-d32230c1a72d" + "f5587954-82a3-4c5c-b283-54d76f63c486" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101426Z:090d25d0-a72d-4923-b2cc-d32230c1a72d" + "CENTRALUSEUAP:20210418T132121Z:f5587954-82a3-4c5c-b283-54d76f63c486" ], "Date": [ - "Thu, 16 Jan 2020 10:14:25 GMT" + "Sun, 18 Apr 2021 13:21:21 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -19707,29 +19074,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d778f9d4-0312-4839-bef7-e6ad3e1ad297-2020-01-16 10:14:36Z-Ps" + "6e0867e2-de25-4fe7-8ee8-086f934a1bdd" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166076215)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770876215)\\/\",\"ClientRequestId\":\"d778f9d4-0312-4839-bef7-e6ad3e1ad297-2020-01-16 10:14:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GOaY4RtJ/jHo577aiPBRdmDwiR2YXR9fnejjl92T3+s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748491673)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353291673)\\/\",\"ClientRequestId\":\"0ddc5e20-2f93-440c-9153-25f96a3b5e77-2021-04-18 13:21:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iu9W4hiIaKGcrm3FPVLITXed7kLJ1VSZTUaSU8+7zaI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19740,38 +19107,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11732" + "11520" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7ba67c1c-ecc9-4e59-8f17-d127ee69dfab" + "0ba4f7ac-63f4-4cc9-b7c6-f58d42095a09" ], "x-ms-client-request-id": [ - "d778f9d4-0312-4839-bef7-e6ad3e1ad297-2020-01-16 10:14:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6e0867e2-de25-4fe7-8ee8-086f934a1bdd" ], "x-ms-correlation-request-id": [ - "7ba67c1c-ecc9-4e59-8f17-d127ee69dfab" + "0ba4f7ac-63f4-4cc9-b7c6-f58d42095a09" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101436Z:7ba67c1c-ecc9-4e59-8f17-d127ee69dfab" + "CENTRALUSEUAP:20210418T132131Z:0ba4f7ac-63f4-4cc9-b7c6-f58d42095a09" ], "Date": [ - "Thu, 16 Jan 2020 10:14:35 GMT" + "Sun, 18 Apr 2021 13:21:31 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -19780,29 +19144,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f60da7a-fb4f-4e2e-a972-a35151e4d9c6-2020-01-16 10:14:46Z-Ps" + "a7ea649a-e05b-4813-839c-4dcf0f832d47" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166086699)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770886699)\\/\",\"ClientRequestId\":\"9f60da7a-fb4f-4e2e-a972-a35151e4d9c6-2020-01-16 10:14:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yS9ci5GV6ENGumWtTTaQq6sUX84GCXnTJ+r9HCY3xbE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748502033)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353302033)\\/\",\"ClientRequestId\":\"965190bf-5c05-4745-a78c-08eae1515ea3-2021-04-18 13:21:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pVsvYQm5FO80o1aCU5/j1fml6FWXCK0PmPqpiC0RDWI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19813,38 +19177,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11731" + "11518" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7779ebf4-faa6-4769-8242-75f4ff44b7a5" + "fff469bf-9e4c-4e6a-b04e-94a78e424514" ], "x-ms-client-request-id": [ - "9f60da7a-fb4f-4e2e-a972-a35151e4d9c6-2020-01-16 10:14:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a7ea649a-e05b-4813-839c-4dcf0f832d47" ], "x-ms-correlation-request-id": [ - "7779ebf4-faa6-4769-8242-75f4ff44b7a5" + "fff469bf-9e4c-4e6a-b04e-94a78e424514" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101447Z:7779ebf4-faa6-4769-8242-75f4ff44b7a5" + "CENTRALUSEUAP:20210418T132142Z:fff469bf-9e4c-4e6a-b04e-94a78e424514" ], "Date": [ - "Thu, 16 Jan 2020 10:14:46 GMT" + "Sun, 18 Apr 2021 13:21:41 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -19853,29 +19214,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca1bf270-0b94-45fa-a0f4-e3589e945b50-2020-01-16 10:14:57Z-Ps" + "fab4b548-fdd6-4e15-b19e-de84275f851c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166097142)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770897142)\\/\",\"ClientRequestId\":\"ca1bf270-0b94-45fa-a0f4-e3589e945b50-2020-01-16 10:14:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"InTA45vy92x6gZPcgudjQeBrqtfPfA8YU4P6N3vgGMg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748512414)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353312414)\\/\",\"ClientRequestId\":\"d509e9ae-376e-443e-894a-63ed44ddf091-2021-04-18 13:21:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Le29qj5q4PaSkIdvUXj5CxDi0wXbKituJlYDXO70Q+A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19886,38 +19247,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11730" + "11516" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4f99bc37-6633-4e54-a23e-4b60e4b993ed" + "7915c4a3-3adf-4d3a-bff5-f53b8f90929c" ], "x-ms-client-request-id": [ - "ca1bf270-0b94-45fa-a0f4-e3589e945b50-2020-01-16 10:14:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "fab4b548-fdd6-4e15-b19e-de84275f851c" ], "x-ms-correlation-request-id": [ - "4f99bc37-6633-4e54-a23e-4b60e4b993ed" + "7915c4a3-3adf-4d3a-bff5-f53b8f90929c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101457Z:4f99bc37-6633-4e54-a23e-4b60e4b993ed" + "CENTRALUSEUAP:20210418T132152Z:7915c4a3-3adf-4d3a-bff5-f53b8f90929c" ], "Date": [ - "Thu, 16 Jan 2020 10:14:57 GMT" + "Sun, 18 Apr 2021 13:21:52 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -19926,29 +19284,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7910e437-9ff5-4133-a4d1-25236824cf5c-2020-01-16 10:15:07Z-Ps" + "211f1e7a-3f36-4ab3-9639-107b97336825" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166107629)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770907629)\\/\",\"ClientRequestId\":\"7910e437-9ff5-4133-a4d1-25236824cf5c-2020-01-16 10:15:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JvvSWsiDlGaPG7NZghEbaF5TbJqszmCxLc/wmiYp9wY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748522799)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353322799)\\/\",\"ClientRequestId\":\"5b41b1f6-a17d-4d64-9cec-14cd382e3faa-2021-04-18 13:22:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"t2Evk+m+NXC4q9Mf2zo/+WM9PURhIg7CjVFbpb0xjwE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19959,38 +19317,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11732" + "11514" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "878ccd70-968e-4796-a92e-9205943efede" + "fb6904db-84af-4444-8d93-17cc7b057c28" ], "x-ms-client-request-id": [ - "7910e437-9ff5-4133-a4d1-25236824cf5c-2020-01-16 10:15:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "211f1e7a-3f36-4ab3-9639-107b97336825" ], "x-ms-correlation-request-id": [ - "878ccd70-968e-4796-a92e-9205943efede" + "fb6904db-84af-4444-8d93-17cc7b057c28" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101507Z:878ccd70-968e-4796-a92e-9205943efede" + "CENTRALUSEUAP:20210418T132202Z:fb6904db-84af-4444-8d93-17cc7b057c28" ], "Date": [ - "Thu, 16 Jan 2020 10:15:07 GMT" + "Sun, 18 Apr 2021 13:22:02 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -19999,29 +19354,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6716b60-8f5c-46f0-aaca-cfe4566cae49-2020-01-16 10:15:18Z-Ps" + "e606824c-e8ea-4385-a8a6-8ae53304da19" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166118099)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770918099)\\/\",\"ClientRequestId\":\"e6716b60-8f5c-46f0-aaca-cfe4566cae49-2020-01-16 10:15:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ltpjbcGjslePEk6WWoWUQxAgEZiivBP70sZ4e/5itQM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748533166)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353333166)\\/\",\"ClientRequestId\":\"6df0a4fc-f06c-49a8-8ae2-6a8dc191218d-2021-04-18 13:22:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EgPFlGIwrrgAtHQSfLNuQiZGNGr9TSWn/eTlYTDBRtk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20032,38 +19387,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11731" + "11512" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0850347b-5c40-434c-9ecd-e07a435ec214" + "9045c7e5-e236-4fe8-88ef-928d0b55402b" ], "x-ms-client-request-id": [ - "e6716b60-8f5c-46f0-aaca-cfe4566cae49-2020-01-16 10:15:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e606824c-e8ea-4385-a8a6-8ae53304da19" ], "x-ms-correlation-request-id": [ - "0850347b-5c40-434c-9ecd-e07a435ec214" + "9045c7e5-e236-4fe8-88ef-928d0b55402b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101518Z:0850347b-5c40-434c-9ecd-e07a435ec214" + "CENTRALUSEUAP:20210418T132213Z:9045c7e5-e236-4fe8-88ef-928d0b55402b" ], "Date": [ - "Thu, 16 Jan 2020 10:15:18 GMT" + "Sun, 18 Apr 2021 13:22:12 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -20072,29 +19424,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "25192187-296c-4219-b1c4-364dc1569e2b-2020-01-16 10:15:28Z-Ps" + "d10e5650-755e-40fc-bb65-df33eb965093" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166128583)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770928583)\\/\",\"ClientRequestId\":\"25192187-296c-4219-b1c4-364dc1569e2b-2020-01-16 10:15:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OngR4P46NJvO0W28DqsZcbSiO86+FYCrn6ISV+pbVWM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748543537)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353343537)\\/\",\"ClientRequestId\":\"a8348605-1321-4851-a58e-9aa6cf842827-2021-04-18 13:22:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SqhNA//mwwwXF2j7IDTzT67cYg1bbNAv8wHLd4wI/qk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20105,38 +19457,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11730" + "11510" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "56080ed0-5db6-4912-96f5-bec12f80fe75" + "595b7255-fbeb-4080-bee5-0a81c45bb0b2" ], "x-ms-client-request-id": [ - "25192187-296c-4219-b1c4-364dc1569e2b-2020-01-16 10:15:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d10e5650-755e-40fc-bb65-df33eb965093" ], "x-ms-correlation-request-id": [ - "56080ed0-5db6-4912-96f5-bec12f80fe75" + "595b7255-fbeb-4080-bee5-0a81c45bb0b2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101528Z:56080ed0-5db6-4912-96f5-bec12f80fe75" + "CENTRALUSEUAP:20210418T132223Z:595b7255-fbeb-4080-bee5-0a81c45bb0b2" ], "Date": [ - "Thu, 16 Jan 2020 10:15:28 GMT" + "Sun, 18 Apr 2021 13:22:23 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -20145,29 +19494,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebd492f9-003b-4fcc-b8f1-3bc42698d3a6-2020-01-16 10:15:39Z-Ps" + "8da1c3db-ecc6-4f91-bf0c-f77378a48474" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166139029)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770939029)\\/\",\"ClientRequestId\":\"ebd492f9-003b-4fcc-b8f1-3bc42698d3a6-2020-01-16 10:15:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CJorQ8m0LrcWoXDi12lxWbE1Lcnxj31i9PWiXWbCq0M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748553914)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353353914)\\/\",\"ClientRequestId\":\"d0bfd54f-a6ce-4e30-856d-174756864bbf-2021-04-18 13:22:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yx3LzWqM6YTemZB0dn/jLN9dg8o5TWVBDArfe80Jzaw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20178,38 +19527,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11729" + "11508" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4c69fb87-fcb1-4932-977e-63f136e76dab" + "a68ecc43-87f0-485a-a5c5-76e8f37f441b" ], "x-ms-client-request-id": [ - "ebd492f9-003b-4fcc-b8f1-3bc42698d3a6-2020-01-16 10:15:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8da1c3db-ecc6-4f91-bf0c-f77378a48474" ], "x-ms-correlation-request-id": [ - "4c69fb87-fcb1-4932-977e-63f136e76dab" + "a68ecc43-87f0-485a-a5c5-76e8f37f441b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101540Z:4c69fb87-fcb1-4932-977e-63f136e76dab" + "CENTRALUSEUAP:20210418T132234Z:a68ecc43-87f0-485a-a5c5-76e8f37f441b" ], "Date": [ - "Thu, 16 Jan 2020 10:15:39 GMT" + "Sun, 18 Apr 2021 13:22:33 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -20218,29 +19564,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0cc221d-3005-4b81-9da9-538239611f1c-2020-01-16 10:15:50Z-Ps" + "f605b829-5a7a-405a-b51b-dd5e46e1d2e5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166150636)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770950636)\\/\",\"ClientRequestId\":\"d0cc221d-3005-4b81-9da9-538239611f1c-2020-01-16 10:15:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3PpClaa0NYQRc759PfqOGqi/fiGgNU9nuOYyZWTF7HI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748564275)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353364275)\\/\",\"ClientRequestId\":\"f0d7fb6c-9d60-4edb-a07a-453ae5bd639c-2021-04-18 13:22:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SgeS0uwrqTKzQGEuOhgR3dKkB5x7eSpmr4mGIrxraNs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20251,38 +19597,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11727" + "11506" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f8756eb1-a97f-4ea0-8c47-b169e1d26a8f" + "b18eb90b-c324-44e1-b604-9ca140f28344" ], "x-ms-client-request-id": [ - "d0cc221d-3005-4b81-9da9-538239611f1c-2020-01-16 10:15:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f605b829-5a7a-405a-b51b-dd5e46e1d2e5" ], "x-ms-correlation-request-id": [ - "f8756eb1-a97f-4ea0-8c47-b169e1d26a8f" + "b18eb90b-c324-44e1-b604-9ca140f28344" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101550Z:f8756eb1-a97f-4ea0-8c47-b169e1d26a8f" + "CENTRALUSEUAP:20210418T132244Z:b18eb90b-c324-44e1-b604-9ca140f28344" ], "Date": [ - "Thu, 16 Jan 2020 10:15:50 GMT" + "Sun, 18 Apr 2021 13:22:43 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -20291,29 +19634,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e9c6c4a-b257-40e7-a2b5-414269052bc8-2020-01-16 10:16:01Z-Ps" + "304e09e3-2827-4741-8621-85424d08bb3f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166161120)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770961120)\\/\",\"ClientRequestId\":\"6e9c6c4a-b257-40e7-a2b5-414269052bc8-2020-01-16 10:16:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Zn14XfSW0SFubb+RE78tMjn0hgRXu+E6VZ2fFkQy6SA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748574656)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353374656)\\/\",\"ClientRequestId\":\"3018f36f-0ab9-481e-82d0-e0e21899c2f7-2021-04-18 13:22:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jZFwrU12fL4bK6NjGHSCPedEKt/5gILa4Nc5NNFOrYc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20324,38 +19667,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11725" + "11504" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e58eb8eb-5471-4b4e-a7bf-32b0847ac2d6" + "48163fab-eb48-4c8b-b50c-31b7898d0d8d" ], "x-ms-client-request-id": [ - "6e9c6c4a-b257-40e7-a2b5-414269052bc8-2020-01-16 10:16:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "304e09e3-2827-4741-8621-85424d08bb3f" ], "x-ms-correlation-request-id": [ - "e58eb8eb-5471-4b4e-a7bf-32b0847ac2d6" + "48163fab-eb48-4c8b-b50c-31b7898d0d8d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101602Z:e58eb8eb-5471-4b4e-a7bf-32b0847ac2d6" + "CENTRALUSEUAP:20210418T132254Z:48163fab-eb48-4c8b-b50c-31b7898d0d8d" ], "Date": [ - "Thu, 16 Jan 2020 10:16:01 GMT" + "Sun, 18 Apr 2021 13:22:54 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -20364,29 +19704,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cac71b8e-531c-47e6-b750-88210c4a3f32-2020-01-16 10:16:12Z-Ps" + "c421b6cc-9187-4a78-93fc-ab92567bf4fb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166172747)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770972747)\\/\",\"ClientRequestId\":\"cac71b8e-531c-47e6-b750-88210c4a3f32-2020-01-16 10:16:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lr+j2LkSzRtRmH8o3fwzkZ3D3Vxd6FbmrsyvAUGVU1M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748585041)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353385041)\\/\",\"ClientRequestId\":\"265886bc-c9f5-42ee-b592-2e9750d59961-2021-04-18 13:23:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LlU9dSkCILhk8BJLUPyqijorhiP7Md4rgdwpR2YGQAE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20397,38 +19737,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11724" + "11502" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ac2548e6-e83d-415c-a542-15ca11d02056" + "ea37d1c8-4d0b-4a72-8011-8653f1c2f24f" ], "x-ms-client-request-id": [ - "cac71b8e-531c-47e6-b750-88210c4a3f32-2020-01-16 10:16:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c421b6cc-9187-4a78-93fc-ab92567bf4fb" ], "x-ms-correlation-request-id": [ - "ac2548e6-e83d-415c-a542-15ca11d02056" + "ea37d1c8-4d0b-4a72-8011-8653f1c2f24f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101615Z:ac2548e6-e83d-415c-a542-15ca11d02056" + "CENTRALUSEUAP:20210418T132305Z:ea37d1c8-4d0b-4a72-8011-8653f1c2f24f" ], "Date": [ - "Thu, 16 Jan 2020 10:16:15 GMT" + "Sun, 18 Apr 2021 13:23:04 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -20437,29 +19774,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b67f398-b0b9-4d14-8928-bdecf29f9e05-2020-01-16 10:16:25Z-Ps" + "42e582d5-464e-43c7-b889-71dc29b858c2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166185244)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770985244)\\/\",\"ClientRequestId\":\"4b67f398-b0b9-4d14-8928-bdecf29f9e05-2020-01-16 10:16:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DbI+EhHiWLR1OcVCGlf03KIdW7E7xMsXGc6kH9N/rzE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748595399)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353395399)\\/\",\"ClientRequestId\":\"ba72eb4c-15d8-46df-aaff-7d615e7aeb47-2021-04-18 13:23:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"44xkE0pk43hVP7oFTgg8cC+64JGYELDuLg9R7ascEAM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20469,39 +19806,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11723" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3db2d458-ab40-4548-9cd3-c018b05e6f39" + "011b7faa-732a-4bd1-9a3c-81ba98cb9d7c" ], "x-ms-client-request-id": [ - "4b67f398-b0b9-4d14-8928-bdecf29f9e05-2020-01-16 10:16:25Z-Ps" + "42e582d5-464e-43c7-b889-71dc29b858c2" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11500" ], "x-ms-correlation-request-id": [ - "3db2d458-ab40-4548-9cd3-c018b05e6f39" + "011b7faa-732a-4bd1-9a3c-81ba98cb9d7c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101625Z:3db2d458-ab40-4548-9cd3-c018b05e6f39" + "CENTRALUSEUAP:20210418T132315Z:011b7faa-732a-4bd1-9a3c-81ba98cb9d7c" ], "Date": [ - "Thu, 16 Jan 2020 10:16:25 GMT" + "Sun, 18 Apr 2021 13:23:15 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -20510,29 +19844,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4863cad7-5e9d-4758-ab7e-a901cdc00a01-2020-01-16 10:16:35Z-Ps" + "f4e41c2c-0f8b-41b5-8beb-81ddd82e6c47" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166195718)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579770995718)\\/\",\"ClientRequestId\":\"4863cad7-5e9d-4758-ab7e-a901cdc00a01-2020-01-16 10:16:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6KxsHfwudGDmb+Dtl/SfJ6+xTlU17pzBdATPGW1fnYI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748605782)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353405782)\\/\",\"ClientRequestId\":\"40a67853-0a4f-4f59-af5a-a334ee314f28-2021-04-18 13:23:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RuTpLlNkXU9AvepWRUn0xr+umgiQ+96U9Y22kZ3PlMI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20543,38 +19877,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11722" + "11498" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1c8440ac-cb7f-4888-80e1-145cbd40658d" + "66b63d87-0078-4c62-890b-8e826b73886f" ], "x-ms-client-request-id": [ - "4863cad7-5e9d-4758-ab7e-a901cdc00a01-2020-01-16 10:16:35Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f4e41c2c-0f8b-41b5-8beb-81ddd82e6c47" ], "x-ms-correlation-request-id": [ - "1c8440ac-cb7f-4888-80e1-145cbd40658d" + "66b63d87-0078-4c62-890b-8e826b73886f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101636Z:1c8440ac-cb7f-4888-80e1-145cbd40658d" + "CENTRALUSEUAP:20210418T132325Z:66b63d87-0078-4c62-890b-8e826b73886f" ], "Date": [ - "Thu, 16 Jan 2020 10:16:35 GMT" + "Sun, 18 Apr 2021 13:23:25 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -20583,29 +19914,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47cb1953-7331-4ab7-8216-a4ae970d8a28-2020-01-16 10:16:46Z-Ps" + "da498145-2e09-4e58-8eb4-c2be749315aa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166206230)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771006230)\\/\",\"ClientRequestId\":\"47cb1953-7331-4ab7-8216-a4ae970d8a28-2020-01-16 10:16:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4x6GUvsSGIyBWX6PpRCDL+BfljT4GiR9ghf7rW1THg4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748616187)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353416187)\\/\",\"ClientRequestId\":\"815f094e-7375-49d6-9c46-d4264738f04d-2021-04-18 13:23:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2Xiu2AcRIHBn1ugWxKJunr85fpcB33AqldF6VKeVECg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20616,38 +19947,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11721" + "11496" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a60d2eb9-52a1-4e35-80cb-1c6e8ecd5d43" + "0b94c691-71c1-4c49-9fe4-1b1e30e2e4fa" ], "x-ms-client-request-id": [ - "47cb1953-7331-4ab7-8216-a4ae970d8a28-2020-01-16 10:16:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "da498145-2e09-4e58-8eb4-c2be749315aa" ], "x-ms-correlation-request-id": [ - "a60d2eb9-52a1-4e35-80cb-1c6e8ecd5d43" + "0b94c691-71c1-4c49-9fe4-1b1e30e2e4fa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101646Z:a60d2eb9-52a1-4e35-80cb-1c6e8ecd5d43" + "CENTRALUSEUAP:20210418T132336Z:0b94c691-71c1-4c49-9fe4-1b1e30e2e4fa" ], "Date": [ - "Thu, 16 Jan 2020 10:16:46 GMT" + "Sun, 18 Apr 2021 13:23:36 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -20656,29 +19984,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08c70283-197d-40aa-b4bd-d811916a365b-2020-01-16 10:16:56Z-Ps" + "5cba3891-35c4-4280-959a-865a0108f70d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166216747)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771016747)\\/\",\"ClientRequestId\":\"08c70283-197d-40aa-b4bd-d811916a365b-2020-01-16 10:16:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"s6rp0rAjBtfcAPYZaCIXH470lRGLo6kPuzx/6rhNWdQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748626586)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353426586)\\/\",\"ClientRequestId\":\"c47aa41c-0399-4cea-af11-0ffa265b20fc-2021-04-18 13:23:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OIuXUwQXYjnCri+l/pEnlzIWAmsDe+XXqpQS3J6IHHA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20689,38 +20017,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11720" + "11494" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f9c475ef-999d-4046-b689-097a5a78d63a" + "297934b2-7e2c-40f0-a4b8-fd3380f25c1a" ], "x-ms-client-request-id": [ - "08c70283-197d-40aa-b4bd-d811916a365b-2020-01-16 10:16:56Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5cba3891-35c4-4280-959a-865a0108f70d" ], "x-ms-correlation-request-id": [ - "f9c475ef-999d-4046-b689-097a5a78d63a" + "297934b2-7e2c-40f0-a4b8-fd3380f25c1a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101657Z:f9c475ef-999d-4046-b689-097a5a78d63a" + "CENTRALUSEUAP:20210418T132346Z:297934b2-7e2c-40f0-a4b8-fd3380f25c1a" ], "Date": [ - "Thu, 16 Jan 2020 10:16:56 GMT" + "Sun, 18 Apr 2021 13:23:46 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -20729,29 +20054,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05f69f3c-b61b-491e-9fb4-7cf6898c4b04-2020-01-16 10:17:07Z-Ps" + "c675f2d7-44ea-4302-a9d5-e51b22d09bdb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166227213)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771027213)\\/\",\"ClientRequestId\":\"05f69f3c-b61b-491e-9fb4-7cf6898c4b04-2020-01-16 10:17:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2SBqAyZyjyod2oTslS22Uu6np0ZslyHZ/jVgvB3GBHA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748636996)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353436996)\\/\",\"ClientRequestId\":\"66482ffc-ad5b-4a7b-8c9d-3920528e6921-2021-04-18 13:23:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2J637UJCtISDtERHj4Hl3v6KV0FMWfrTwFiPuensqAk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20762,38 +20087,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11719" + "11492" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "dadc4f2b-517b-4e54-a4c9-eee5a608d49f" + "6b1b4403-e3e6-4475-87eb-05fdfda71e70" ], "x-ms-client-request-id": [ - "05f69f3c-b61b-491e-9fb4-7cf6898c4b04-2020-01-16 10:17:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c675f2d7-44ea-4302-a9d5-e51b22d09bdb" ], "x-ms-correlation-request-id": [ - "dadc4f2b-517b-4e54-a4c9-eee5a608d49f" + "6b1b4403-e3e6-4475-87eb-05fdfda71e70" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101707Z:dadc4f2b-517b-4e54-a4c9-eee5a608d49f" + "CENTRALUSEUAP:20210418T132357Z:6b1b4403-e3e6-4475-87eb-05fdfda71e70" ], "Date": [ - "Thu, 16 Jan 2020 10:17:06 GMT" + "Sun, 18 Apr 2021 13:23:57 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -20802,29 +20124,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e6b7c17-a84c-4fe7-9241-de2225a43290-2020-01-16 10:17:17Z-Ps" + "d1e7f7f0-2fc0-4fdd-93b2-afeebe9a32f1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166237709)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771037709)\\/\",\"ClientRequestId\":\"4e6b7c17-a84c-4fe7-9241-de2225a43290-2020-01-16 10:17:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rh9kaUCE2dT/iV8jIGaZBWFRAqsTT54p90ebIrw7oak=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748647653)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353447653)\\/\",\"ClientRequestId\":\"d9b04646-c07e-471a-a923-95b90fa33d8f-2021-04-18 13:24:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"h96PCEV853NFGBonNt36pEN/UQajOE65dt3f1HPnwFM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20835,38 +20157,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11718" + "11491" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "119c7f8e-f3a6-433b-8199-15a517b7d9e7" + "f7399f47-7cf0-4c74-a2ab-2372f1fd7e57" ], "x-ms-client-request-id": [ - "4e6b7c17-a84c-4fe7-9241-de2225a43290-2020-01-16 10:17:17Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d1e7f7f0-2fc0-4fdd-93b2-afeebe9a32f1" ], "x-ms-correlation-request-id": [ - "119c7f8e-f3a6-433b-8199-15a517b7d9e7" + "f7399f47-7cf0-4c74-a2ab-2372f1fd7e57" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101718Z:119c7f8e-f3a6-433b-8199-15a517b7d9e7" + "CENTRALUSEUAP:20210418T132407Z:f7399f47-7cf0-4c74-a2ab-2372f1fd7e57" ], "Date": [ - "Thu, 16 Jan 2020 10:17:17 GMT" + "Sun, 18 Apr 2021 13:24:07 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -20875,29 +20194,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b35c7a4-0851-4d58-9a8a-05b414de1f50-2020-01-16 10:17:28Z-Ps" + "c7dacf0e-0ea4-4cee-891b-fd523056ef3f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166248156)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771048156)\\/\",\"ClientRequestId\":\"9b35c7a4-0851-4d58-9a8a-05b414de1f50-2020-01-16 10:17:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qHDoguFup/4TLflDFE5u9EtYMa3kF19AFCWYQrNsI9g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748658038)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353458038)\\/\",\"ClientRequestId\":\"49284366-bb6d-4c7c-adb5-4b3e9c90deff-2021-04-18 13:24:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mY6eIF5b89LHsI35YmOiK86IC4+h1TBQAR1LwwLKSXM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20907,39 +20226,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11489" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8f6ad4cf-d548-4535-87c3-48cc3c92a702" + "bffde7db-aaf9-4816-9ad9-97a0512fdd26" ], "x-ms-client-request-id": [ - "9b35c7a4-0851-4d58-9a8a-05b414de1f50-2020-01-16 10:17:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11717" + "c7dacf0e-0ea4-4cee-891b-fd523056ef3f" ], "x-ms-correlation-request-id": [ - "8f6ad4cf-d548-4535-87c3-48cc3c92a702" + "bffde7db-aaf9-4816-9ad9-97a0512fdd26" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101728Z:8f6ad4cf-d548-4535-87c3-48cc3c92a702" + "CENTRALUSEUAP:20210418T132418Z:bffde7db-aaf9-4816-9ad9-97a0512fdd26" ], "Date": [ - "Thu, 16 Jan 2020 10:17:27 GMT" + "Sun, 18 Apr 2021 13:24:18 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -20948,29 +20264,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d70f363-58e4-4fd8-bfac-1fe88181eb3c-2020-01-16 10:17:38Z-Ps" + "94255d0f-12ab-44b9-9e4f-f4f02fe40adb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166258675)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771058675)\\/\",\"ClientRequestId\":\"5d70f363-58e4-4fd8-bfac-1fe88181eb3c-2020-01-16 10:17:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EEq8DewZchSUn8vmE6SeydE5RkIJo0igjsQ3SzkwETs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748668467)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353468467)\\/\",\"ClientRequestId\":\"14bfd19e-ee3b-4aa2-a1a1-edfb8733eed9-2021-04-18 13:24:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CA5yyZxPSiH3ULsaRPCMMiUhkRMoOvnaLqpsXr3PdRc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20981,38 +20297,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11716" + "11487" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e682acb9-3931-4efc-8cfd-be5b1cd5007a" + "5a90ca67-8cd3-4d18-916c-3e028d17803e" ], "x-ms-client-request-id": [ - "5d70f363-58e4-4fd8-bfac-1fe88181eb3c-2020-01-16 10:17:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "94255d0f-12ab-44b9-9e4f-f4f02fe40adb" ], "x-ms-correlation-request-id": [ - "e682acb9-3931-4efc-8cfd-be5b1cd5007a" + "5a90ca67-8cd3-4d18-916c-3e028d17803e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101739Z:e682acb9-3931-4efc-8cfd-be5b1cd5007a" + "CENTRALUSEUAP:20210418T132428Z:5a90ca67-8cd3-4d18-916c-3e028d17803e" ], "Date": [ - "Thu, 16 Jan 2020 10:17:38 GMT" + "Sun, 18 Apr 2021 13:24:28 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -21021,29 +20334,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84907ce7-cd27-4916-ad34-efd1920fc608-2020-01-16 10:17:49Z-Ps" + "0e9ae8e2-dde2-4875-94c8-0dc4392aa0b1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166269151)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771069151)\\/\",\"ClientRequestId\":\"84907ce7-cd27-4916-ad34-efd1920fc608-2020-01-16 10:17:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6Hx24fjOIJwdYoj3iO0trBDAQsfzLRUSXsiwUYYLfEA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748678907)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353478907)\\/\",\"ClientRequestId\":\"8c841c7f-1433-4f0a-b4ba-a68db07f68f2-2021-04-18 13:24:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jnWCfXd650bWPn7q1KcpfC8USHA2qJi9ruacNeuEL6g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21054,38 +20367,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11715" + "11485" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "15ca8a60-485d-4222-8f3e-b69f8bf4384e" + "553ad9c9-ccf8-4644-868c-8269e531bcd8" ], "x-ms-client-request-id": [ - "84907ce7-cd27-4916-ad34-efd1920fc608-2020-01-16 10:17:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0e9ae8e2-dde2-4875-94c8-0dc4392aa0b1" ], "x-ms-correlation-request-id": [ - "15ca8a60-485d-4222-8f3e-b69f8bf4384e" + "553ad9c9-ccf8-4644-868c-8269e531bcd8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101749Z:15ca8a60-485d-4222-8f3e-b69f8bf4384e" + "CENTRALUSEUAP:20210418T132439Z:553ad9c9-ccf8-4644-868c-8269e531bcd8" ], "Date": [ - "Thu, 16 Jan 2020 10:17:49 GMT" + "Sun, 18 Apr 2021 13:24:38 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -21094,29 +20404,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d4ee4ae-a2be-4f75-9450-c17d70e5caaa-2020-01-16 10:17:59Z-Ps" + "6da6151f-76ec-4c3a-8387-0ac0118723ce" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166279638)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771079638)\\/\",\"ClientRequestId\":\"8d4ee4ae-a2be-4f75-9450-c17d70e5caaa-2020-01-16 10:17:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+zc6W9fBpx5oOOenk8TmFxq7tTrGIii36aUlI1yn/ps=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748689330)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353489330)\\/\",\"ClientRequestId\":\"49268368-0d94-4204-8373-acde5b3c7565-2021-04-18 13:24:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YR0hRLOU9bIxX/Sv7miwth7EdmW5Bt1fFojXKj0gyIk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21127,38 +20437,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11714" + "11483" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "45141c7b-a44d-4113-a65a-a053e7ede690" + "9ba2bf77-2a3d-4baa-b19e-5ce893289c4d" ], "x-ms-client-request-id": [ - "8d4ee4ae-a2be-4f75-9450-c17d70e5caaa-2020-01-16 10:17:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6da6151f-76ec-4c3a-8387-0ac0118723ce" ], "x-ms-correlation-request-id": [ - "45141c7b-a44d-4113-a65a-a053e7ede690" + "9ba2bf77-2a3d-4baa-b19e-5ce893289c4d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101759Z:45141c7b-a44d-4113-a65a-a053e7ede690" + "CENTRALUSEUAP:20210418T132449Z:9ba2bf77-2a3d-4baa-b19e-5ce893289c4d" ], "Date": [ - "Thu, 16 Jan 2020 10:17:59 GMT" + "Sun, 18 Apr 2021 13:24:48 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -21167,29 +20474,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "301f0ccf-5a7f-4c07-8ada-c3ca22ce3fdc-2020-01-16 10:18:10Z-Ps" + "976fc5c0-47c0-4c10-a7d1-83daff8da18c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166290079)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771090079)\\/\",\"ClientRequestId\":\"301f0ccf-5a7f-4c07-8ada-c3ca22ce3fdc-2020-01-16 10:18:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lUImPzu2Kco+VkSyTG+03p4Xl7LR17bStoJQoKrBQIE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748699739)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353499739)\\/\",\"ClientRequestId\":\"46459fe4-025e-4a03-9c75-8ae19c60696e-2021-04-18 13:24:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BBLgx5ZBhmY2BWYq9LBuD9eG8geNjmnCco8r7rHocbw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21200,38 +20507,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11713" + "11481" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5b585fcb-a555-4b0c-b166-9f80d4692c79" + "a7b0ea00-d49a-4a0a-934a-0ebd5d96530e" ], "x-ms-client-request-id": [ - "301f0ccf-5a7f-4c07-8ada-c3ca22ce3fdc-2020-01-16 10:18:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "976fc5c0-47c0-4c10-a7d1-83daff8da18c" ], "x-ms-correlation-request-id": [ - "5b585fcb-a555-4b0c-b166-9f80d4692c79" + "a7b0ea00-d49a-4a0a-934a-0ebd5d96530e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101810Z:5b585fcb-a555-4b0c-b166-9f80d4692c79" + "CENTRALUSEUAP:20210418T132459Z:a7b0ea00-d49a-4a0a-934a-0ebd5d96530e" ], "Date": [ - "Thu, 16 Jan 2020 10:18:09 GMT" + "Sun, 18 Apr 2021 13:24:59 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -21240,29 +20544,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22e076f0-74b0-43b4-8d49-fd03205eca40-2020-01-16 10:18:20Z-Ps" + "4300acd9-1128-4bc7-8ad0-a9ab510a3c99" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166300598)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771100598)\\/\",\"ClientRequestId\":\"22e076f0-74b0-43b4-8d49-fd03205eca40-2020-01-16 10:18:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jkIlgRvVkDrpkAHi9NhwCtmQDPB7oJtGlYAGvj3oj2g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748710153)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353510153)\\/\",\"ClientRequestId\":\"a59514cb-09ee-4874-8d97-b835ef93a66a-2021-04-18 13:25:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"W/BV2p/xYtjzE3whaHzajTiIBvpeRBmVVQfMQ7OmcYo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21273,38 +20577,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11712" + "11479" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "049f4b31-2e84-4ba2-8ed0-52c190ac9708" + "545ec0b9-61d7-4b94-af28-21645aa3c4b6" ], "x-ms-client-request-id": [ - "22e076f0-74b0-43b4-8d49-fd03205eca40-2020-01-16 10:18:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4300acd9-1128-4bc7-8ad0-a9ab510a3c99" ], "x-ms-correlation-request-id": [ - "049f4b31-2e84-4ba2-8ed0-52c190ac9708" + "545ec0b9-61d7-4b94-af28-21645aa3c4b6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101820Z:049f4b31-2e84-4ba2-8ed0-52c190ac9708" + "CENTRALUSEUAP:20210418T132510Z:545ec0b9-61d7-4b94-af28-21645aa3c4b6" ], "Date": [ - "Thu, 16 Jan 2020 10:18:20 GMT" + "Sun, 18 Apr 2021 13:25:10 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -21313,29 +20614,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e15b4a2f-f41c-431f-aa16-357ef1fa9b9c-2020-01-16 10:18:31Z-Ps" + "1d5b41fb-07e8-4d82-8f62-9c3584796b83" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166311036)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771111036)\\/\",\"ClientRequestId\":\"e15b4a2f-f41c-431f-aa16-357ef1fa9b9c-2020-01-16 10:18:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"12/hTP4DB+71oRnsHPAwgXIQu1V8J8Kd6rC3U+T1ZbE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748720558)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353520558)\\/\",\"ClientRequestId\":\"75385787-cd41-4630-8dcc-79184217b411-2021-04-18 13:25:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6ryJs1ma5FwLH2r+j6alJAHhjM9pmBYmTXaPSLeJye8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21346,38 +20647,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11711" + "11477" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e0733f85-9ded-49a4-bfa2-0ae7fce8c9c6" + "6b72b287-b0a1-4b15-a4bf-f3582021d6f1" ], "x-ms-client-request-id": [ - "e15b4a2f-f41c-431f-aa16-357ef1fa9b9c-2020-01-16 10:18:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1d5b41fb-07e8-4d82-8f62-9c3584796b83" ], "x-ms-correlation-request-id": [ - "e0733f85-9ded-49a4-bfa2-0ae7fce8c9c6" + "6b72b287-b0a1-4b15-a4bf-f3582021d6f1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101831Z:e0733f85-9ded-49a4-bfa2-0ae7fce8c9c6" + "CENTRALUSEUAP:20210418T132520Z:6b72b287-b0a1-4b15-a4bf-f3582021d6f1" ], "Date": [ - "Thu, 16 Jan 2020 10:18:30 GMT" + "Sun, 18 Apr 2021 13:25:20 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -21386,29 +20684,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9b14dda-e6a8-4e09-8356-4613ccf5883e-2020-01-16 10:18:41Z-Ps" + "ba756b9d-c1aa-4ff1-97a5-a01226959326" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166321558)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771121558)\\/\",\"ClientRequestId\":\"f9b14dda-e6a8-4e09-8356-4613ccf5883e-2020-01-16 10:18:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AISzFM0jUjlEM7+Q+0FGzt/XV1aKb+bvWixo+0mJ35I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748730952)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353530952)\\/\",\"ClientRequestId\":\"f5c9d037-7cb8-4462-b673-a4e2342d2af3-2021-04-18 13:25:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kKnZkDzLbrYVKi/wU71m0NncpBeEHZgSL00hUaVSbV0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21419,38 +20717,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11709" + "11475" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2fbabbae-62e1-41c1-aa3b-71a3fe9edbe1" + "f9479ff2-8629-453b-b879-3e497e522e95" ], "x-ms-client-request-id": [ - "f9b14dda-e6a8-4e09-8356-4613ccf5883e-2020-01-16 10:18:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ba756b9d-c1aa-4ff1-97a5-a01226959326" ], "x-ms-correlation-request-id": [ - "2fbabbae-62e1-41c1-aa3b-71a3fe9edbe1" + "f9479ff2-8629-453b-b879-3e497e522e95" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101841Z:2fbabbae-62e1-41c1-aa3b-71a3fe9edbe1" + "CENTRALUSEUAP:20210418T132531Z:f9479ff2-8629-453b-b879-3e497e522e95" ], "Date": [ - "Thu, 16 Jan 2020 10:18:41 GMT" + "Sun, 18 Apr 2021 13:25:30 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -21459,29 +20754,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "497d1043-e317-4a57-8cbe-4a9021fdf393-2020-01-16 10:18:52Z-Ps" + "75d9cfaf-2574-4a20-b6da-62c5461fa87b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166332041)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771132041)\\/\",\"ClientRequestId\":\"497d1043-e317-4a57-8cbe-4a9021fdf393-2020-01-16 10:18:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IMiaMpNrOIFIGjAaxyzuR3kfItwR4mJtpQ/O56BevOs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748741396)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353541396)\\/\",\"ClientRequestId\":\"342946e4-51e1-4e95-9cc4-dd948b89442f-2021-04-18 13:25:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Q2+vGsgZvjcTFl36dDUzz690H+UcfPBXaAZ8OGoyBOg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21491,39 +20786,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11473" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e40a29b8-45c0-42f6-b8c1-e7cef1478dd5" + "1064801f-697c-41ec-a72d-e1c67da841c3" ], "x-ms-client-request-id": [ - "497d1043-e317-4a57-8cbe-4a9021fdf393-2020-01-16 10:18:52Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11708" + "75d9cfaf-2574-4a20-b6da-62c5461fa87b" ], "x-ms-correlation-request-id": [ - "e40a29b8-45c0-42f6-b8c1-e7cef1478dd5" + "1064801f-697c-41ec-a72d-e1c67da841c3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101852Z:e40a29b8-45c0-42f6-b8c1-e7cef1478dd5" + "CENTRALUSEUAP:20210418T132541Z:1064801f-697c-41ec-a72d-e1c67da841c3" ], "Date": [ - "Thu, 16 Jan 2020 10:18:52 GMT" + "Sun, 18 Apr 2021 13:25:40 GMT" ], "Content-Length": [ - "5985" + "6010" ], "Content-Type": [ "application/json" @@ -21532,29 +20824,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6da6717f-d8fe-410b-9c83-d8723dd59e5c-2020-01-16 10:19:02Z-Ps" + "fe662cd4-89f9-4a76-a6ed-83f42a7f4f84" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166342492)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771142492)\\/\",\"ClientRequestId\":\"6da6717f-d8fe-410b-9c83-d8723dd59e5c-2020-01-16 10:19:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SYicf+O5ShnkrEeC5EoIXzE+Q4yHa06rzfIte+skdv4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748751777)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353551777)\\/\",\"ClientRequestId\":\"905a6af2-a09d-4e05-966b-2d02f78396d1-2021-04-18 13:25:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VUYSygLQCR9EvLb852wFU3tQNmwgPZ5doHUl6zDGnsw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21565,38 +20857,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11706" + "11471" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ede3feb5-8099-4a28-9cac-1c2f74eec1f4" + "4ea46c2f-ec27-4c1a-aa95-5fe5479710ea" ], "x-ms-client-request-id": [ - "6da6717f-d8fe-410b-9c83-d8723dd59e5c-2020-01-16 10:19:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "fe662cd4-89f9-4a76-a6ed-83f42a7f4f84" ], "x-ms-correlation-request-id": [ - "ede3feb5-8099-4a28-9cac-1c2f74eec1f4" + "4ea46c2f-ec27-4c1a-aa95-5fe5479710ea" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101904Z:ede3feb5-8099-4a28-9cac-1c2f74eec1f4" + "CENTRALUSEUAP:20210418T132551Z:4ea46c2f-ec27-4c1a-aa95-5fe5479710ea" ], "Date": [ - "Thu, 16 Jan 2020 10:19:03 GMT" + "Sun, 18 Apr 2021 13:25:51 GMT" ], "Content-Length": [ - "6762" + "6010" ], "Content-Type": [ "application/json" @@ -21605,29 +20894,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "504ffb54-e944-4f97-a79f-62e7dbd4f89e-2020-01-16 10:19:14Z-Ps" + "2b5f7321-15a7-40ef-a5e1-5990b47f72f5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166354260)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771154260)\\/\",\"ClientRequestId\":\"504ffb54-e944-4f97-a79f-62e7dbd4f89e-2020-01-16 10:19:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qfwQ1D5Ea30gTZA3ZrzxM91JqsE1bCuAf067MOMTJwg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748762165)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353562165)\\/\",\"ClientRequestId\":\"e93b3aee-1b6c-4b0b-b4a2-549a7264b2b7-2021-04-18 13:26:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"K+5olKhgNhquCFWV0ewiqQzR/Ssiw6JtpFYbvqzD/P0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21638,38 +20927,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11705" + "11469" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6a89caa5-a675-4a10-87ab-34a4438a6aea" + "6edf2be8-7f58-4db6-a140-2a52e233451d" ], "x-ms-client-request-id": [ - "504ffb54-e944-4f97-a79f-62e7dbd4f89e-2020-01-16 10:19:14Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2b5f7321-15a7-40ef-a5e1-5990b47f72f5" ], "x-ms-correlation-request-id": [ - "6a89caa5-a675-4a10-87ab-34a4438a6aea" + "6edf2be8-7f58-4db6-a140-2a52e233451d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101914Z:6a89caa5-a675-4a10-87ab-34a4438a6aea" + "CENTRALUSEUAP:20210418T132602Z:6edf2be8-7f58-4db6-a140-2a52e233451d" ], "Date": [ - "Thu, 16 Jan 2020 10:19:14 GMT" + "Sun, 18 Apr 2021 13:26:02 GMT" ], "Content-Length": [ - "6762" + "6010" ], "Content-Type": [ "application/json" @@ -21678,29 +20964,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9eac66b7-8991-4a66-97b1-5579c20a5e69-2020-01-16 10:19:24Z-Ps" + "5537cd78-374b-4d22-960c-c0d920ab8852" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166364829)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771164829)\\/\",\"ClientRequestId\":\"9eac66b7-8991-4a66-97b1-5579c20a5e69-2020-01-16 10:19:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RSK+7HYPWqg8zLMaBjyhY7GHpjseYXYb73Z2snF5hXg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748772551)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353572551)\\/\",\"ClientRequestId\":\"7ea169dd-d9d5-46b7-87fb-f18fac01f330-2021-04-18 13:26:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9zssE+1+JiZ/yOnsMYBRSR0xBzExzoLNKEfSQGiqrsg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21711,38 +20997,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11704" + "11467" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6972ec29-438e-4789-bfed-17c434f89f30" + "34efda00-81f7-4801-8784-07985751f2f4" ], "x-ms-client-request-id": [ - "9eac66b7-8991-4a66-97b1-5579c20a5e69-2020-01-16 10:19:24Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5537cd78-374b-4d22-960c-c0d920ab8852" ], "x-ms-correlation-request-id": [ - "6972ec29-438e-4789-bfed-17c434f89f30" + "34efda00-81f7-4801-8784-07985751f2f4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101925Z:6972ec29-438e-4789-bfed-17c434f89f30" + "CENTRALUSEUAP:20210418T132612Z:34efda00-81f7-4801-8784-07985751f2f4" ], "Date": [ - "Thu, 16 Jan 2020 10:19:24 GMT" + "Sun, 18 Apr 2021 13:26:12 GMT" ], "Content-Length": [ - "6762" + "6010" ], "Content-Type": [ "application/json" @@ -21751,29 +21034,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50aa2c0e-8582-4777-a598-a44501e6845b-2020-01-16 10:19:35Z-Ps" + "b3060ade-a5c4-45ae-b0f1-8247d098b413" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166375403)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771175403)\\/\",\"ClientRequestId\":\"50aa2c0e-8582-4777-a598-a44501e6845b-2020-01-16 10:19:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8eQXtKWAtbZSQcAHZRnDjmpuuaDVO7TdqpXqng37bRw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748783219)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353583219)\\/\",\"ClientRequestId\":\"171e2a1b-1015-46f8-a58e-cb350cb297e3-2021-04-18 13:26:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YNcSApYpwlsg6KbiRQPVQVY44GgOGq5pwubH1VRmTxI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21784,38 +21067,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11703" + "11465" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "eece8297-7736-4911-891f-9202cb504e19" + "4d33a6d4-8b88-4a37-8785-8921fbe330bd" ], "x-ms-client-request-id": [ - "50aa2c0e-8582-4777-a598-a44501e6845b-2020-01-16 10:19:35Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b3060ade-a5c4-45ae-b0f1-8247d098b413" ], "x-ms-correlation-request-id": [ - "eece8297-7736-4911-891f-9202cb504e19" + "4d33a6d4-8b88-4a37-8785-8921fbe330bd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101935Z:eece8297-7736-4911-891f-9202cb504e19" + "CENTRALUSEUAP:20210418T132623Z:4d33a6d4-8b88-4a37-8785-8921fbe330bd" ], "Date": [ - "Thu, 16 Jan 2020 10:19:34 GMT" + "Sun, 18 Apr 2021 13:26:23 GMT" ], "Content-Length": [ - "7519" + "6010" ], "Content-Type": [ "application/json" @@ -21824,29 +21104,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24b81787-7aaa-424d-a881-5ac413735b13-2020-01-16 10:38:48Z-Ps" + "4e1a1303-2fcc-4fef-8e18-356265ed5597" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167528488)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772328488)\\/\",\"ClientRequestId\":\"24b81787-7aaa-424d-a881-5ac413735b13-2020-01-16 10:38:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nUHDK7PTdRkQ9qHTUdhjEd9AQpatV7lWwYpweS1Iomw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748793623)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353593623)\\/\",\"ClientRequestId\":\"bd76ebd0-079d-4921-a928-7f17d47beeeb-2021-04-18 13:26:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"h7kmhHLwErZzzBI/U+zP2odu2yQ3aSylfFnpuk+56Sc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21857,38 +21137,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11612" + "11463" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1f9cab06-8cd3-4328-80fe-8b5a5f04046f" + "d864b0da-bd2e-4056-8606-77268e1cd7c1" ], "x-ms-client-request-id": [ - "24b81787-7aaa-424d-a881-5ac413735b13-2020-01-16 10:38:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4e1a1303-2fcc-4fef-8e18-356265ed5597" ], "x-ms-correlation-request-id": [ - "1f9cab06-8cd3-4328-80fe-8b5a5f04046f" + "d864b0da-bd2e-4056-8606-77268e1cd7c1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103848Z:1f9cab06-8cd3-4328-80fe-8b5a5f04046f" + "CENTRALUSEUAP:20210418T132633Z:d864b0da-bd2e-4056-8606-77268e1cd7c1" ], "Date": [ - "Thu, 16 Jan 2020 10:38:47 GMT" + "Sun, 18 Apr 2021 13:26:33 GMT" ], "Content-Length": [ - "8267" + "6010" ], "Content-Type": [ "application/json" @@ -21897,29 +21174,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c3bb05b-5410-4fc0-a447-62e3f3a110f1-2020-01-16 10:38:59Z-Ps" + "3582a907-452b-44ad-9423-e238849f8652" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167539043)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772339043)\\/\",\"ClientRequestId\":\"7c3bb05b-5410-4fc0-a447-62e3f3a110f1-2020-01-16 10:38:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UYQaQ0jcoJZPWlgn4MHhrFnDBGwBWE3lWZ0PkrvoRZQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748804029)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353604029)\\/\",\"ClientRequestId\":\"a15713b4-ce1d-460a-af9a-d3ce920e1e3d-2021-04-18 13:26:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8QHAdehnRY7JgDyd7f3Jw7p43p1KhNx0c9XXv6OsalQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21930,38 +21207,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11610" + "11461" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "199b278c-91e6-4780-aef5-19809cbf9922" + "0c82de56-8fa7-4ee5-8e33-31710042ae95" ], "x-ms-client-request-id": [ - "7c3bb05b-5410-4fc0-a447-62e3f3a110f1-2020-01-16 10:38:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3582a907-452b-44ad-9423-e238849f8652" ], "x-ms-correlation-request-id": [ - "199b278c-91e6-4780-aef5-19809cbf9922" + "0c82de56-8fa7-4ee5-8e33-31710042ae95" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103859Z:199b278c-91e6-4780-aef5-19809cbf9922" + "CENTRALUSEUAP:20210418T132644Z:0c82de56-8fa7-4ee5-8e33-31710042ae95" ], "Date": [ - "Thu, 16 Jan 2020 10:38:59 GMT" + "Sun, 18 Apr 2021 13:26:43 GMT" ], "Content-Length": [ - "8267" + "6010" ], "Content-Type": [ "application/json" @@ -21970,29 +21244,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45da1fe6-2250-4364-b972-f0c9c1aba51f-2020-01-16 10:39:09Z-Ps" + "d0bc8a8d-b0be-49fe-846e-7c48e7222563" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167549567)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772349567)\\/\",\"ClientRequestId\":\"45da1fe6-2250-4364-b972-f0c9c1aba51f-2020-01-16 10:39:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Xu9AP8N5x0uzwCtdl8Jax1JANy6p3980yS7SB1asQik=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748814422)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353614422)\\/\",\"ClientRequestId\":\"c21d9d6c-8626-4bf4-b8b3-ea85b9ab48ad-2021-04-18 13:26:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ExmSMHp0JFb0pN9rC4I/R3g/Z1ju6pkNCXCAdPfOgSQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22003,38 +21277,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11609" + "11459" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a909244c-7d2b-485c-89e6-047c0eb2a884" + "d974afa0-db6e-475e-8f45-f26e1fb6b656" ], "x-ms-client-request-id": [ - "45da1fe6-2250-4364-b972-f0c9c1aba51f-2020-01-16 10:39:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d0bc8a8d-b0be-49fe-846e-7c48e7222563" ], "x-ms-correlation-request-id": [ - "a909244c-7d2b-485c-89e6-047c0eb2a884" + "d974afa0-db6e-475e-8f45-f26e1fb6b656" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103909Z:a909244c-7d2b-485c-89e6-047c0eb2a884" + "CENTRALUSEUAP:20210418T132654Z:d974afa0-db6e-475e-8f45-f26e1fb6b656" ], "Date": [ - "Thu, 16 Jan 2020 10:39:09 GMT" + "Sun, 18 Apr 2021 13:26:54 GMT" ], "Content-Length": [ - "8267" + "6010" ], "Content-Type": [ "application/json" @@ -22043,29 +21314,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ce89838-2806-45bc-8f24-55814c60447f-2020-01-16 10:39:20Z-Ps" + "c58a14d1-d31c-4552-8202-42ade64d081e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167560218)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772360218)\\/\",\"ClientRequestId\":\"0ce89838-2806-45bc-8f24-55814c60447f-2020-01-16 10:39:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YT1xbtvESqBo05RpzQbFyK7+E+6ub6Y+Lqm2iDOHxQI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748824802)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353624802)\\/\",\"ClientRequestId\":\"e7ad4200-f36d-4f49-9e6a-32868c3c6fce-2021-04-18 13:27:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"28r4EiITDwkRAwHjQ68N9J3YR7TUGomeTNpYGcmorUQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22076,38 +21347,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11607" + "11457" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "34d9b3f4-0f5e-4ffc-ac08-003a325646b5" + "4c5760c9-81e0-4a3a-b558-46ac13d637de" ], "x-ms-client-request-id": [ - "0ce89838-2806-45bc-8f24-55814c60447f-2020-01-16 10:39:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c58a14d1-d31c-4552-8202-42ade64d081e" ], "x-ms-correlation-request-id": [ - "34d9b3f4-0f5e-4ffc-ac08-003a325646b5" + "4c5760c9-81e0-4a3a-b558-46ac13d637de" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103920Z:34d9b3f4-0f5e-4ffc-ac08-003a325646b5" + "CENTRALUSEUAP:20210418T132705Z:4c5760c9-81e0-4a3a-b558-46ac13d637de" ], "Date": [ - "Thu, 16 Jan 2020 10:39:20 GMT" + "Sun, 18 Apr 2021 13:27:04 GMT" ], "Content-Length": [ - "8267" + "6010" ], "Content-Type": [ "application/json" @@ -22116,29 +21384,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b09753a6-bb79-4dbb-bc8e-4211f45dd101-2020-01-16 10:39:30Z-Ps" + "0941b516-ee57-4c94-ae14-eaee8835cb98" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167570768)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772370768)\\/\",\"ClientRequestId\":\"b09753a6-bb79-4dbb-bc8e-4211f45dd101-2020-01-16 10:39:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LcJ9a0MjbT2z1sLn0sKcLJ7k/VqCyWvWm4lZ4uv6mx4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748835190)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353635190)\\/\",\"ClientRequestId\":\"6f473895-dafe-4c8f-a96b-b1078bc6656d-2021-04-18 13:27:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NA/sxpogHJB7z3rsM7b/gJ9z4g629KgFVZ5Hpa6rlek=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22149,38 +21417,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11605" + "11455" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4d900f0e-6582-4715-b49b-820001032d2f" + "b57fd21e-6a64-4c4f-a949-34c69197b278" ], "x-ms-client-request-id": [ - "b09753a6-bb79-4dbb-bc8e-4211f45dd101-2020-01-16 10:39:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0941b516-ee57-4c94-ae14-eaee8835cb98" ], "x-ms-correlation-request-id": [ - "4d900f0e-6582-4715-b49b-820001032d2f" + "b57fd21e-6a64-4c4f-a949-34c69197b278" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103931Z:4d900f0e-6582-4715-b49b-820001032d2f" + "CENTRALUSEUAP:20210418T132715Z:b57fd21e-6a64-4c4f-a949-34c69197b278" ], "Date": [ - "Thu, 16 Jan 2020 10:39:30 GMT" + "Sun, 18 Apr 2021 13:27:14 GMT" ], "Content-Length": [ - "8267" + "6010" ], "Content-Type": [ "application/json" @@ -22189,29 +21454,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77d34ed8-b1ee-4c26-ab43-83aef32ab5af-2020-01-16 10:39:41Z-Ps" + "09ab0c76-debe-454b-8a39-bb0236bf2487" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167581359)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772381359)\\/\",\"ClientRequestId\":\"77d34ed8-b1ee-4c26-ab43-83aef32ab5af-2020-01-16 10:39:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Gvat/cYoSVRaGRyx+/YgI4wGlND67XNcFyzOEKMS2ZU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748845585)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353645585)\\/\",\"ClientRequestId\":\"1858a87e-6b9b-4de8-b250-4e619bec85ba-2021-04-18 13:27:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GyeKnGbq22phruVnVGoDYvJezTEICZSc5ylHrFFvXo8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22222,38 +21487,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11603" + "11453" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "816311b2-f052-4770-943b-b58111c4bcc1" + "c56f5332-4eae-4693-84f5-3420ee9219cb" ], "x-ms-client-request-id": [ - "77d34ed8-b1ee-4c26-ab43-83aef32ab5af-2020-01-16 10:39:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "09ab0c76-debe-454b-8a39-bb0236bf2487" ], "x-ms-correlation-request-id": [ - "816311b2-f052-4770-943b-b58111c4bcc1" + "c56f5332-4eae-4693-84f5-3420ee9219cb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103941Z:816311b2-f052-4770-943b-b58111c4bcc1" + "CENTRALUSEUAP:20210418T132725Z:c56f5332-4eae-4693-84f5-3420ee9219cb" ], "Date": [ - "Thu, 16 Jan 2020 10:39:40 GMT" + "Sun, 18 Apr 2021 13:27:25 GMT" ], "Content-Length": [ - "8267" + "6010" ], "Content-Type": [ "application/json" @@ -22262,29 +21524,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17b28cdc-a49a-431d-b7b3-eeee67548b3d-2020-01-16 10:39:51Z-Ps" + "edbbe08b-4fee-4038-a27b-dce6201f5846" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167591941)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772391941)\\/\",\"ClientRequestId\":\"17b28cdc-a49a-431d-b7b3-eeee67548b3d-2020-01-16 10:39:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mhe4nuFNYPxWbbteawMHYJtJMwsVcjSChzZPJfwDVys=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748855980)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353655980)\\/\",\"ClientRequestId\":\"fbab69e6-d565-4796-b9fe-d5b691304466-2021-04-18 13:27:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jqrmr35E/sIEnEBPaWCHHt2U/6eBd4k+HDJxL7QnXUo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22295,38 +21557,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11601" + "11446" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7a644b1e-e9c0-4303-a280-74e5c8b365b6" + "a6d7c8c1-d7d1-45a6-85a3-d79c97c66ca0" ], "x-ms-client-request-id": [ - "17b28cdc-a49a-431d-b7b3-eeee67548b3d-2020-01-16 10:39:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "edbbe08b-4fee-4038-a27b-dce6201f5846" ], "x-ms-correlation-request-id": [ - "7a644b1e-e9c0-4303-a280-74e5c8b365b6" + "a6d7c8c1-d7d1-45a6-85a3-d79c97c66ca0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103952Z:7a644b1e-e9c0-4303-a280-74e5c8b365b6" + "CENTRALUSEUAP:20210418T132736Z:a6d7c8c1-d7d1-45a6-85a3-d79c97c66ca0" ], "Date": [ - "Thu, 16 Jan 2020 10:39:51 GMT" + "Sun, 18 Apr 2021 13:27:36 GMT" ], "Content-Length": [ - "8267" + "6010" ], "Content-Type": [ "application/json" @@ -22335,29 +21594,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a06d255e-ae80-4c44-a8b8-332994268f4c-2020-01-16 10:40:02Z-Ps" + "76a6e961-592e-47af-8d83-3d5cfef7da3f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167602520)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772402520)\\/\",\"ClientRequestId\":\"a06d255e-ae80-4c44-a8b8-332994268f4c-2020-01-16 10:40:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pXzUtkJ9a7fM/V15uyudPm/pa1eKZoA1QSIN/BGebvI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748866382)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353666382)\\/\",\"ClientRequestId\":\"978b032e-df07-44d2-9fd4-bedcf74cb8dc-2021-04-18 13:27:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/HZZHcPzKUQBRoRvfZkfzTkHNaKFoUOloJOWOKNJ2zU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22367,39 +21626,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11626" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "288c4ca5-be8b-45c1-a707-1acf5a3f8080" + "3f8bb73a-ca83-4118-a803-9aed48720d54" ], "x-ms-client-request-id": [ - "a06d255e-ae80-4c44-a8b8-332994268f4c-2020-01-16 10:40:02Z-Ps" + "76a6e961-592e-47af-8d83-3d5cfef7da3f" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11445" ], "x-ms-correlation-request-id": [ - "288c4ca5-be8b-45c1-a707-1acf5a3f8080" + "3f8bb73a-ca83-4118-a803-9aed48720d54" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104002Z:288c4ca5-be8b-45c1-a707-1acf5a3f8080" + "CENTRALUSEUAP:20210418T132746Z:3f8bb73a-ca83-4118-a803-9aed48720d54" ], "Date": [ - "Thu, 16 Jan 2020 10:40:02 GMT" + "Sun, 18 Apr 2021 13:27:45 GMT" ], "Content-Length": [ - "8267" + "6010" ], "Content-Type": [ "application/json" @@ -22408,29 +21664,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60882c1d-0ca1-47a8-af0e-5056bfa3593c-2020-01-16 10:40:13Z-Ps" + "5562d7b2-cb57-4cc9-85d6-185dc0fd8c60" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167613164)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772413164)\\/\",\"ClientRequestId\":\"60882c1d-0ca1-47a8-af0e-5056bfa3593c-2020-01-16 10:40:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oZ9QGn4KrIAxhcCvTZ1Hhg1zF88bZO8UG61KXgkNeHQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748876785)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353676785)\\/\",\"ClientRequestId\":\"e6b95300-201d-4417-9a09-ae3d207b68f3-2021-04-18 13:27:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"S64EIlaxdK5hSA58Ktl8RxIoQ+Kx55ONtXbuawfJwYY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22441,38 +21697,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11625" + "11440" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ab46b7c3-1fb2-4c0e-a3b7-95ae712bcc8b" + "801a161a-2c58-418b-a4c2-deabf5a4048f" ], "x-ms-client-request-id": [ - "60882c1d-0ca1-47a8-af0e-5056bfa3593c-2020-01-16 10:40:13Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5562d7b2-cb57-4cc9-85d6-185dc0fd8c60" ], "x-ms-correlation-request-id": [ - "ab46b7c3-1fb2-4c0e-a3b7-95ae712bcc8b" + "801a161a-2c58-418b-a4c2-deabf5a4048f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104013Z:ab46b7c3-1fb2-4c0e-a3b7-95ae712bcc8b" + "CENTRALUSEUAP:20210418T132756Z:801a161a-2c58-418b-a4c2-deabf5a4048f" ], "Date": [ - "Thu, 16 Jan 2020 10:40:13 GMT" + "Sun, 18 Apr 2021 13:27:56 GMT" ], "Content-Length": [ - "8267" + "6010" ], "Content-Type": [ "application/json" @@ -22481,29 +21734,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eae993ab-108b-48de-a836-57b7cc5d7a84-2020-01-16 10:40:23Z-Ps" + "5cfd8723-c1dd-4cb3-9793-d7fe8ec4b9a3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167623762)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772423762)\\/\",\"ClientRequestId\":\"eae993ab-108b-48de-a836-57b7cc5d7a84-2020-01-16 10:40:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"A026kfW1rFRmrV2nkANfn+yfYUmR04MHAikiEx35dQo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748887154)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353687154)\\/\",\"ClientRequestId\":\"e4158ac6-7cbf-4053-bbff-66e8739e78b6-2021-04-18 13:28:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SEWPS8AKEGVz0HQkfbSy1l5iPBui09nLMkZu0LMYY6M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22514,38 +21767,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11622" + "11439" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "702ee9a8-13a7-45ae-acaf-f4d82b0363e7" + "9d1def99-9236-4a24-b8f2-46f529f7d6f2" ], "x-ms-client-request-id": [ - "eae993ab-108b-48de-a836-57b7cc5d7a84-2020-01-16 10:40:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5cfd8723-c1dd-4cb3-9793-d7fe8ec4b9a3" ], "x-ms-correlation-request-id": [ - "702ee9a8-13a7-45ae-acaf-f4d82b0363e7" + "9d1def99-9236-4a24-b8f2-46f529f7d6f2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104024Z:702ee9a8-13a7-45ae-acaf-f4d82b0363e7" + "CENTRALUSEUAP:20210418T132807Z:9d1def99-9236-4a24-b8f2-46f529f7d6f2" ], "Date": [ - "Thu, 16 Jan 2020 10:40:23 GMT" + "Sun, 18 Apr 2021 13:28:07 GMT" ], "Content-Length": [ - "8267" + "6010" ], "Content-Type": [ "application/json" @@ -22554,29 +21804,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "437812df-c77f-4d81-9585-639380a4088d-2020-01-16 10:40:34Z-Ps" + "48c30996-b842-4cc5-b5a8-a0046704e7a1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167634299)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772434299)\\/\",\"ClientRequestId\":\"437812df-c77f-4d81-9585-639380a4088d-2020-01-16 10:40:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tCTB3cc5dGtTsLcjigaZun2fb9iELKTGop31ku2gaqg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748897516)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353697516)\\/\",\"ClientRequestId\":\"be1f14d3-dfe4-4289-80a8-719bc84b0357-2021-04-18 13:28:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kdx6kDwl+JtUfi6l37FQ3IGc++tqw/7je641KkbrfWo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22587,38 +21837,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11621" + "11437" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7ea97ce4-4c66-4208-a0e1-8902630f24bb" + "ca5f1e4c-74ed-4fc9-8251-ab0aa5d38959" ], "x-ms-client-request-id": [ - "437812df-c77f-4d81-9585-639380a4088d-2020-01-16 10:40:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "48c30996-b842-4cc5-b5a8-a0046704e7a1" ], "x-ms-correlation-request-id": [ - "7ea97ce4-4c66-4208-a0e1-8902630f24bb" + "ca5f1e4c-74ed-4fc9-8251-ab0aa5d38959" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104034Z:7ea97ce4-4c66-4208-a0e1-8902630f24bb" + "CENTRALUSEUAP:20210418T132817Z:ca5f1e4c-74ed-4fc9-8251-ab0aa5d38959" ], "Date": [ - "Thu, 16 Jan 2020 10:40:34 GMT" + "Sun, 18 Apr 2021 13:28:17 GMT" ], "Content-Length": [ - "8267" + "6010" ], "Content-Type": [ "application/json" @@ -22627,29 +21874,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1773f8f8-c100-41ca-a976-f6cbd2233ba3-2020-01-16 10:40:44Z-Ps" + "83d1fcb4-bef9-4580-93d0-49ecfc194965" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167644833)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772444833)\\/\",\"ClientRequestId\":\"1773f8f8-c100-41ca-a976-f6cbd2233ba3-2020-01-16 10:40:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QUio7rmZ6gErXRXS+J1TMsglEECorDHS2ixHFQqyZN8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748907892)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353707892)\\/\",\"ClientRequestId\":\"37058162-b1da-41cf-90e7-ec810113bb08-2021-04-18 13:28:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"92G8HAuBNSuXyo1o3XyU3XGo0gjoU0ZBOaFGXXqt22g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22660,38 +21907,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11620" + "11436" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "33154cfd-b633-4239-8c80-43c3ee2e5eb3" + "7f2632f7-1c84-4d78-bd2e-a4c7b5198052" ], "x-ms-client-request-id": [ - "1773f8f8-c100-41ca-a976-f6cbd2233ba3-2020-01-16 10:40:44Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "83d1fcb4-bef9-4580-93d0-49ecfc194965" ], "x-ms-correlation-request-id": [ - "33154cfd-b633-4239-8c80-43c3ee2e5eb3" + "7f2632f7-1c84-4d78-bd2e-a4c7b5198052" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104045Z:33154cfd-b633-4239-8c80-43c3ee2e5eb3" + "CENTRALUSEUAP:20210418T132828Z:7f2632f7-1c84-4d78-bd2e-a4c7b5198052" ], "Date": [ - "Thu, 16 Jan 2020 10:40:44 GMT" + "Sun, 18 Apr 2021 13:28:28 GMT" ], "Content-Length": [ - "8267" + "6010" ], "Content-Type": [ "application/json" @@ -22700,29 +21944,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "942c75c4-6b28-40bd-81b0-6013d6702de8-2020-01-16 10:40:55Z-Ps" + "4ccecc13-53d8-4f86-98fe-91ae258b3465" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167655382)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772455382)\\/\",\"ClientRequestId\":\"942c75c4-6b28-40bd-81b0-6013d6702de8-2020-01-16 10:40:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PdeC/mSze5qICzczJ7qogoif2QrrL2fncVKoEactgAo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748918280)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353718280)\\/\",\"ClientRequestId\":\"557911cf-dc63-42c3-afbf-cdfef523a659-2021-04-18 13:28:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OAIIHDHDw5d2w4blk+Ce0tp8KH6xeK1RSaekEBm/u7Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22733,38 +21977,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11619" + "11434" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "64729ebc-604e-4156-b1f2-a6370a1582ee" + "e57fcd44-b26c-4b22-b6fa-0a4dc6db0c3a" ], "x-ms-client-request-id": [ - "942c75c4-6b28-40bd-81b0-6013d6702de8-2020-01-16 10:40:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4ccecc13-53d8-4f86-98fe-91ae258b3465" ], "x-ms-correlation-request-id": [ - "64729ebc-604e-4156-b1f2-a6370a1582ee" + "e57fcd44-b26c-4b22-b6fa-0a4dc6db0c3a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104055Z:64729ebc-604e-4156-b1f2-a6370a1582ee" + "CENTRALUSEUAP:20210418T132838Z:e57fcd44-b26c-4b22-b6fa-0a4dc6db0c3a" ], "Date": [ - "Thu, 16 Jan 2020 10:40:54 GMT" + "Sun, 18 Apr 2021 13:28:38 GMT" ], "Content-Length": [ - "8267" + "6010" ], "Content-Type": [ "application/json" @@ -22773,29 +22014,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2338266-023d-4bda-8e92-04816fc93d16-2020-01-16 10:41:05Z-Ps" + "65c0b916-9ff8-441d-8104-59589b7d0c6b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167665933)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772465933)\\/\",\"ClientRequestId\":\"d2338266-023d-4bda-8e92-04816fc93d16-2020-01-16 10:41:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mDRgXYTT1KiL/uV639ugor3uoNcoheSEuG/cXv3/dtQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748928639)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353728639)\\/\",\"ClientRequestId\":\"833ebd81-0026-4fd3-9b0d-b576c2ea7d44-2021-04-18 13:28:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yZdTZ5OXmoQndco4DSCkIpO3FoScvCp7unWBTpywV2s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22806,38 +22047,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11617" + "11433" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2f70b1b8-e93d-464d-8430-a64e057c3fd4" + "95a1717a-e70f-452c-95fe-660df462b3bd" ], "x-ms-client-request-id": [ - "d2338266-023d-4bda-8e92-04816fc93d16-2020-01-16 10:41:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "65c0b916-9ff8-441d-8104-59589b7d0c6b" ], "x-ms-correlation-request-id": [ - "2f70b1b8-e93d-464d-8430-a64e057c3fd4" + "95a1717a-e70f-452c-95fe-660df462b3bd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104107Z:2f70b1b8-e93d-464d-8430-a64e057c3fd4" + "CENTRALUSEUAP:20210418T132848Z:95a1717a-e70f-452c-95fe-660df462b3bd" ], "Date": [ - "Thu, 16 Jan 2020 10:41:07 GMT" + "Sun, 18 Apr 2021 13:28:48 GMT" ], "Content-Length": [ - "8267" + "6010" ], "Content-Type": [ "application/json" @@ -22846,29 +22084,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a85a1ba-4133-4fd2-a34c-2dda23a54d2c-2020-01-16 10:41:17Z-Ps" + "4042c24a-5816-4eb8-9f94-7ab6038c97a2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167677702)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772477702)\\/\",\"ClientRequestId\":\"5a85a1ba-4133-4fd2-a34c-2dda23a54d2c-2020-01-16 10:41:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RkQmAiohRJM7zYPvVoBbdWzjE9XXTywOnCBvtWcLbE4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748939033)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353739033)\\/\",\"ClientRequestId\":\"ac9a8828-b7c1-4d43-977a-36b33c1216c3-2021-04-18 13:28:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CnfqN1A0fEcy1Ysx+sfmt4H5bLrv/xRJtbpEhaWgWwE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22879,38 +22117,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11616" + "11431" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "56cebf51-6090-4a3d-8b5d-bae550b08cbf" + "59878737-5f85-4b6f-bea2-88f85bae7bbf" ], "x-ms-client-request-id": [ - "5a85a1ba-4133-4fd2-a34c-2dda23a54d2c-2020-01-16 10:41:17Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4042c24a-5816-4eb8-9f94-7ab6038c97a2" ], "x-ms-correlation-request-id": [ - "56cebf51-6090-4a3d-8b5d-bae550b08cbf" + "59878737-5f85-4b6f-bea2-88f85bae7bbf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104119Z:56cebf51-6090-4a3d-8b5d-bae550b08cbf" + "CENTRALUSEUAP:20210418T132859Z:59878737-5f85-4b6f-bea2-88f85bae7bbf" ], "Date": [ - "Thu, 16 Jan 2020 10:41:18 GMT" + "Sun, 18 Apr 2021 13:28:59 GMT" ], "Content-Length": [ - "8267" + "6010" ], "Content-Type": [ "application/json" @@ -22919,29 +22154,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9eb3b607-5f15-41c7-804f-054e3739273c-2020-01-16 10:41:29Z-Ps" + "9b356364-0b97-494b-838d-76586370e094" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167689319)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772489319)\\/\",\"ClientRequestId\":\"9eb3b607-5f15-41c7-804f-054e3739273c-2020-01-16 10:41:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZMrIaGcjuMsF/tdADx7URSrbJzhdLmfAKw0xQpkDNg4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748949394)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353749394)\\/\",\"ClientRequestId\":\"ef780b83-32f6-48e8-acb0-7756fc23ae6b-2021-04-18 13:29:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fgsntSJ/i1QQ9iDOLUeJ4+nBNhMJIA78Q93fYw445iw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22952,38 +22187,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11615" + "11430" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b39ae902-7ae2-4f34-b9cf-017de13b1cac" + "233f2c52-d468-4a1a-a68c-6aff13a56fc5" ], "x-ms-client-request-id": [ - "9eb3b607-5f15-41c7-804f-054e3739273c-2020-01-16 10:41:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9b356364-0b97-494b-838d-76586370e094" ], "x-ms-correlation-request-id": [ - "b39ae902-7ae2-4f34-b9cf-017de13b1cac" + "233f2c52-d468-4a1a-a68c-6aff13a56fc5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104129Z:b39ae902-7ae2-4f34-b9cf-017de13b1cac" + "CENTRALUSEUAP:20210418T132909Z:233f2c52-d468-4a1a-a68c-6aff13a56fc5" ], "Date": [ - "Thu, 16 Jan 2020 10:41:29 GMT" + "Sun, 18 Apr 2021 13:29:08 GMT" ], "Content-Length": [ - "8267" + "6010" ], "Content-Type": [ "application/json" @@ -22992,29 +22224,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34c5904c-2f77-45a6-b92a-16cd51441fdf-2020-01-16 10:41:39Z-Ps" + "6d0fc15d-305a-4483-9cd0-5e3b8aec5daf" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167699860)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772499860)\\/\",\"ClientRequestId\":\"34c5904c-2f77-45a6-b92a-16cd51441fdf-2020-01-16 10:41:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VJbI+PPE66HxOaU3J7Prgm/DJj98xp3uTVPH0o1FGqg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748959771)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353759771)\\/\",\"ClientRequestId\":\"1b04d0a7-1575-49de-82e1-c124175b235f-2021-04-18 13:29:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZE825Ol8LJaib2uZCGfBpZL2bkTxDSiEyphgZUMniiE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23025,38 +22257,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11614" + "11428" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "be35a65d-87e6-432d-bc0b-9c74f0b4875a" + "25f2bc6d-1828-44b4-b591-072fb0a5301f" ], "x-ms-client-request-id": [ - "34c5904c-2f77-45a6-b92a-16cd51441fdf-2020-01-16 10:41:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6d0fc15d-305a-4483-9cd0-5e3b8aec5daf" ], "x-ms-correlation-request-id": [ - "be35a65d-87e6-432d-bc0b-9c74f0b4875a" + "25f2bc6d-1828-44b4-b591-072fb0a5301f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104140Z:be35a65d-87e6-432d-bc0b-9c74f0b4875a" + "CENTRALUSEUAP:20210418T132919Z:25f2bc6d-1828-44b4-b591-072fb0a5301f" ], "Date": [ - "Thu, 16 Jan 2020 10:41:39 GMT" + "Sun, 18 Apr 2021 13:29:19 GMT" ], "Content-Length": [ - "8267" + "6010" ], "Content-Type": [ "application/json" @@ -23065,29 +22294,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2ae093a-e8e0-40a0-b501-439acfb87942-2020-01-16 10:41:50Z-Ps" + "b4b60454-3fb9-4378-bda5-2eb9eae95a3d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167710506)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772510506)\\/\",\"ClientRequestId\":\"b2ae093a-e8e0-40a0-b501-439acfb87942-2020-01-16 10:41:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Or85WK6efLE3BC0i+YgVqanxCt4Ls8PFL3ytoPA1q/w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748970178)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353770178)\\/\",\"ClientRequestId\":\"baade858-3629-4ac5-91f1-5a61ccf68259-2021-04-18 13:29:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sHy0oelQbBrcobzSB5xKwPhkM0xWFiChVBvAcgMR+9g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23098,38 +22327,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11613" + "11427" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8cb8b97c-89d5-45f3-8c99-6958c008bd18" + "a706d3a5-3709-41b6-8a79-574f81ec2c47" ], "x-ms-client-request-id": [ - "b2ae093a-e8e0-40a0-b501-439acfb87942-2020-01-16 10:41:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b4b60454-3fb9-4378-bda5-2eb9eae95a3d" ], "x-ms-correlation-request-id": [ - "8cb8b97c-89d5-45f3-8c99-6958c008bd18" + "a706d3a5-3709-41b6-8a79-574f81ec2c47" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104150Z:8cb8b97c-89d5-45f3-8c99-6958c008bd18" + "CENTRALUSEUAP:20210418T132930Z:a706d3a5-3709-41b6-8a79-574f81ec2c47" ], "Date": [ - "Thu, 16 Jan 2020 10:41:50 GMT" + "Sun, 18 Apr 2021 13:29:29 GMT" ], "Content-Length": [ - "8267" + "6010" ], "Content-Type": [ "application/json" @@ -23138,29 +22364,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31cf6760-8f6c-49e9-b837-7885870517e4-2020-01-16 10:42:01Z-Ps" + "353ddff4-64ec-4fe8-b7e9-b8075a371c45" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167721066)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772521066)\\/\",\"ClientRequestId\":\"31cf6760-8f6c-49e9-b837-7885870517e4-2020-01-16 10:42:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5CzW0GtCa+nDkiMwroiZTbXl+BS9MVCkRKz3XIOa7y0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748980557)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353780557)\\/\",\"ClientRequestId\":\"9a1fdb84-6ace-434d-b380-f918117d1bad-2021-04-18 13:29:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"taOQ9jemftRAJ/rOwGBxDKM1VS0iEKgyQ18O/PPTxxc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23171,38 +22397,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11612" + "11425" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "dec39d28-23ad-40b5-9bb3-867ca6ac6baa" + "c2240537-ffe9-4746-b6b0-6ce42ce25477" ], "x-ms-client-request-id": [ - "31cf6760-8f6c-49e9-b837-7885870517e4-2020-01-16 10:42:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "353ddff4-64ec-4fe8-b7e9-b8075a371c45" ], "x-ms-correlation-request-id": [ - "dec39d28-23ad-40b5-9bb3-867ca6ac6baa" + "c2240537-ffe9-4746-b6b0-6ce42ce25477" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104201Z:dec39d28-23ad-40b5-9bb3-867ca6ac6baa" + "CENTRALUSEUAP:20210418T132940Z:c2240537-ffe9-4746-b6b0-6ce42ce25477" ], "Date": [ - "Thu, 16 Jan 2020 10:42:00 GMT" + "Sun, 18 Apr 2021 13:29:39 GMT" ], "Content-Length": [ - "9036" + "6010" ], "Content-Type": [ "application/json" @@ -23211,29 +22434,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/d76fa572-30c7-4a65-95bb-00a938cc6690\",\r\n \"name\": \"d76fa572-30c7-4a65-95bb-00a938cc6690\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisksIrCompletion\",\r\n \"friendlyName\": \"Add disks complete initial replication\",\r\n \"state\": \"Failed\",\r\n \"stateDescription\": \"Failed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:41:53.1762316Z\",\r\n \"endTime\": \"2020-01-16T10:41:53Z\",\r\n \"allowedActions\": [\r\n \"Restart\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"name\": \"e7bdc5f0-592e-45a5-9dc4-7699cc49df20\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:18:57.2545787Z\",\r\n \"endTime\": \"2020-01-16T10:18:58Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"name\": \"70770b37-8c26-45bf-be80-f9a43b855f94\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:35.4423294Z\",\r\n \"endTime\": \"2020-01-16T09:48:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"name\": \"86220ffe-c72f-4a7d-9636-4c9860255c8d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:35:12.5420452Z\",\r\n \"endTime\": \"2020-01-16T09:35:14Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm102\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"name\": \"9fa0caba-c642-49bd-8811-11f712c73c46\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:47.7813218Z\",\r\n \"endTime\": \"2020-01-16T09:34:54Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"name\": \"942a488b-ae11-467e-b95b-eb00d4a687a5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:45.7467505Z\",\r\n \"endTime\": \"2020-01-16T09:33:45Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"targetObjectName\": \"TestA2APolicy1102\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"name\": \"53fec5f2-fd4e-4c51-bd97-c608dce0429d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:43.2180092Z\",\r\n \"endTime\": \"2020-01-16T09:33:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"targetObjectName\": \"A2ARecoveryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"name\": \"f9ba9e77-4661-4030-adab-146a6276f3c3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:33:40.7085185Z\",\r\n \"endTime\": \"2020-01-16T09:33:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"targetObjectName\": \"A2APrimaryContainer102\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"name\": \"431d597b-0a04-4121-a2c0-beab71305eb1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:32:13.1407477Z\",\r\n \"endTime\": \"2020-01-16T09:33:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"targetObjectName\": \"a2aRecoveryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"name\": \"31eb4b83-aa6a-4a98-9b18-dcd55aa2b5a9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T09:30:48.5479075Z\",\r\n \"endTime\": \"2020-01-16T09:31:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"targetObjectName\": \"a2aPrimaryFabric102\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvZGQwMGI1YmItMGFlZi00MDMzLTgyNTEtYjUxNTcwYjM2NTBjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5dc55a54-713d-4574-bf9b-06cf2e6476df-2020-01-16 10:19:35Z-Ps" + "bfbc51ad-9080-40bc-8530-223fcb65ce9f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166375941)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771175941)\\/\",\"ClientRequestId\":\"5dc55a54-713d-4574-bf9b-06cf2e6476df-2020-01-16 10:19:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hRjpjwWCccAQ/nofSxS7LaUb5pUvwWQWeCurGfuZNYI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618748990925)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353790925)\\/\",\"ClientRequestId\":\"8b3c48d5-082e-49e5-9523-b7848e5c69c5-2021-04-18 13:29:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Zas65CojqaXeAhby1bTrcbrxpD5aCwvB7ogI7gFC3vg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23244,38 +22467,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11702" + "11424" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "5dc55a54-713d-4574-bf9b-06cf2e6476df-2020-01-16 10:19:35Z-Ps" + "x-ms-request-id": [ + "5e5a3ea5-9a61-429a-8864-0ab611b7fcad" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "bfbc51ad-9080-40bc-8530-223fcb65ce9f" ], "x-ms-correlation-request-id": [ - "9166cad7-598b-4cc1-bc75-d63c0b7ab212" + "5e5a3ea5-9a61-429a-8864-0ab611b7fcad" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101936Z:9166cad7-598b-4cc1-bc75-d63c0b7ab212" + "CENTRALUSEUAP:20210418T132951Z:5e5a3ea5-9a61-429a-8864-0ab611b7fcad" ], "Date": [ - "Thu, 16 Jan 2020 10:19:35 GMT" + "Sun, 18 Apr 2021 13:29:51 GMT" ], "Content-Length": [ - "3091" + "6010" ], "Content-Type": [ "application/json" @@ -23284,29 +22504,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CompleteInitialReplicationTask\",\r\n \"name\": \"CompleteInitialReplication\",\r\n \"startTime\": \"2020-01-16T10:19:33.4655559Z\",\r\n \"endTime\": \"2020-01-16T10:19:33.73118Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationPreflightChecksTask\",\r\n \"name\": \"FailWorkflowOnIRFailureTask\",\r\n \"startTime\": \"2020-01-16T10:19:33.73118Z\",\r\n \"endTime\": \"2020-01-16T10:19:33.8249289Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationTask\",\r\n \"name\": \"ReplicaConfiguration\",\r\n \"startTime\": \"2020-01-16T10:19:33.8249289Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete network and post-replication configuration\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvZGQwMGI1YmItMGFlZi00MDMzLTgyNTEtYjUxNTcwYjM2NTBjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "015065a5-fbf5-470b-9df7-8ea0eed82f10-2020-01-16 10:19:46Z-Ps" + "db781057-a8f6-4476-a69f-a9ac9cd137e8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166386458)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771186458)\\/\",\"ClientRequestId\":\"015065a5-fbf5-470b-9df7-8ea0eed82f10-2020-01-16 10:19:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rsMNSYAAzZr7Tenoqijc7pt7iDu+a4ZVcfw3kxPdm0Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749002258)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353802258)\\/\",\"ClientRequestId\":\"e74f9411-4788-400f-89a5-e6b009b54003-2021-04-18 13:30:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Vtodmg1SKoF7SKkhnBJPzzYpM073eykbvR7g994wjQE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23317,38 +22537,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11701" + "11422" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "015065a5-fbf5-470b-9df7-8ea0eed82f10-2020-01-16 10:19:46Z-Ps" + "x-ms-request-id": [ + "331e77fa-4bad-4df3-8fcc-aec67c140994" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "db781057-a8f6-4476-a69f-a9ac9cd137e8" ], "x-ms-correlation-request-id": [ - "89218ee6-112a-475c-a37a-b00dd8abcde6" + "331e77fa-4bad-4df3-8fcc-aec67c140994" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101946Z:89218ee6-112a-475c-a37a-b00dd8abcde6" + "CENTRALUSEUAP:20210418T133002Z:331e77fa-4bad-4df3-8fcc-aec67c140994" ], "Date": [ - "Thu, 16 Jan 2020 10:19:45 GMT" + "Sun, 18 Apr 2021 13:30:02 GMT" ], "Content-Length": [ - "3137" + "6010" ], "Content-Type": [ "application/json" @@ -23357,29 +22574,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"name\": \"dd00b5bb-0aef-4033-8251-b51570b3650c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c591f6cb-c43e-49e9-86c8-030491cf5c9b-2020-01-16 09:35:34Z-Ps ActivityId: 276a3603-beeb-4168-94d6-25eee2a7dfd3\",\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CompleteInitialReplicationTask\",\r\n \"name\": \"CompleteInitialReplication\",\r\n \"startTime\": \"2020-01-16T10:19:33.4655559Z\",\r\n \"endTime\": \"2020-01-16T10:19:33.73118Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationPreflightChecksTask\",\r\n \"name\": \"FailWorkflowOnIRFailureTask\",\r\n \"startTime\": \"2020-01-16T10:19:33.73118Z\",\r\n \"endTime\": \"2020-01-16T10:19:33.8249289Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationTask\",\r\n \"name\": \"ReplicaConfiguration\",\r\n \"startTime\": \"2020-01-16T10:19:33.8249289Z\",\r\n \"endTime\": \"2020-01-16T10:19:37.4575755Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete network and post-replication configuration\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2020-01-16T10:19:37.4575755Z\",\r\n \"endTime\": \"2020-01-16T10:19:37.7700597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:19:33.2102055Z\",\r\n \"endTime\": \"2020-01-16T10:19:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b37c1c15-f74d-411d-8f4a-ef2df5e7e4ba-2020-01-16 10:19:46Z-Ps" + "59255d9e-a810-479b-a320-5dd464b7e4d6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166386925)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771186925)\\/\",\"ClientRequestId\":\"b37c1c15-f74d-411d-8f4a-ef2df5e7e4ba-2020-01-16 10:19:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"V0GUm2ayJonig5pifekg8k8tq5x8d8smzYgpnHCKtJ4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749012628)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353812628)\\/\",\"ClientRequestId\":\"93b3ea81-b193-4f82-958f-c3caab60fc58-2021-04-18 13:30:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sqRgKV9AUSLZf+xLCJI8KwaG99kOpxrKAVE6R0lpu3U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23390,38 +22607,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11700" + "11421" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "b37c1c15-f74d-411d-8f4a-ef2df5e7e4ba-2020-01-16 10:19:46Z-Ps 1/16/2020 10:19:47 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "b37c1c15-f74d-411d-8f4a-ef2df5e7e4ba-2020-01-16 10:19:46Z-Ps" + "x-ms-request-id": [ + "c3abf28e-0e4e-413a-9816-78de1cc92b54" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "59255d9e-a810-479b-a320-5dd464b7e4d6" ], "x-ms-correlation-request-id": [ - "594c5942-9f2b-4651-b900-ffe01e9e1322" + "c3abf28e-0e4e-413a-9816-78de1cc92b54" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101947Z:594c5942-9f2b-4651-b900-ffe01e9e1322" + "CENTRALUSEUAP:20210418T133012Z:c3abf28e-0e4e-413a-9816-78de1cc92b54" ], "Date": [ - "Thu, 16 Jan 2020 10:19:46 GMT" + "Sun, 18 Apr 2021 13:30:11 GMT" ], "Content-Length": [ - "7480" + "6010" ], "Content-Type": [ "application/json" @@ -23430,29 +22644,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 99,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2020-01-16T10:19:28.5184244Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 1809,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:19:31.7071553Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9d64add-a47e-4128-84c8-0aeeee8fae0d-2020-01-16 10:20:30Z-Ps" + "428d5b56-3faa-4f07-9c82-f7726f2954f8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166430740)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771230740)\\/\",\"ClientRequestId\":\"b9d64add-a47e-4128-84c8-0aeeee8fae0d-2020-01-16 10:20:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"L4gq0NKUmMLP0Otvu9cyRWa0lkWn/IZzfz/G5zNfX24=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749022990)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353822990)\\/\",\"ClientRequestId\":\"9ad35261-6276-45fa-ab39-fad51b255fb9-2021-04-18 13:30:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IcoCCJ2S/Xbz/GsiuXlw1vaaBklMfU5wyveDwR31i+E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23462,39 +22676,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11419" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "b9d64add-a47e-4128-84c8-0aeeee8fae0d-2020-01-16 10:20:30Z-Ps 1/16/2020 10:20:31 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "b9d64add-a47e-4128-84c8-0aeeee8fae0d-2020-01-16 10:20:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "c3590758-4296-45a9-99d7-f7b975d9c1f3" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11700" + "x-ms-client-request-id": [ + "428d5b56-3faa-4f07-9c82-f7726f2954f8" ], "x-ms-correlation-request-id": [ - "8d31c897-0b9a-4232-92ef-a11b1659b249" + "c3590758-4296-45a9-99d7-f7b975d9c1f3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102031Z:8d31c897-0b9a-4232-92ef-a11b1659b249" + "CENTRALUSEUAP:20210418T133023Z:c3590758-4296-45a9-99d7-f7b975d9c1f3" ], "Date": [ - "Thu, 16 Jan 2020 10:20:30 GMT" + "Sun, 18 Apr 2021 13:30:22 GMT" ], "Content-Length": [ - "7480" + "6010" ], "Content-Type": [ "application/json" @@ -23503,29 +22714,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 99,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2020-01-16T10:19:28.5184244Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 1809,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:19:31.7071553Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9738d614-f9cc-4268-840d-4dd2fea46587-2020-01-16 10:20:41Z-Ps" + "19d2d244-e21d-4d6a-a0da-62c2911c2bea" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166441603)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771241603)\\/\",\"ClientRequestId\":\"9738d614-f9cc-4268-840d-4dd2fea46587-2020-01-16 10:20:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MkuwiT1pQiZMXIuntWiwhSX/gb76V6e5BNXkINkL0n0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749033351)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353833351)\\/\",\"ClientRequestId\":\"4ccb1b23-7ac6-4a41-9e11-30428a868907-2021-04-18 13:30:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"L4amzpqPuxksVTJTlXAUl+qTHeRxYQ89f7ktKdvGBuM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23536,38 +22747,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11699" + "11418" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "9738d614-f9cc-4268-840d-4dd2fea46587-2020-01-16 10:20:41Z-Ps 1/16/2020 10:20:43 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "9738d614-f9cc-4268-840d-4dd2fea46587-2020-01-16 10:20:41Z-Ps" + "x-ms-request-id": [ + "7491b541-eaf7-4b15-9075-618a409bb146" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "19d2d244-e21d-4d6a-a0da-62c2911c2bea" ], "x-ms-correlation-request-id": [ - "c345b41c-86ce-4feb-8477-53496d5695d5" + "7491b541-eaf7-4b15-9075-618a409bb146" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102043Z:c345b41c-86ce-4feb-8477-53496d5695d5" + "CENTRALUSEUAP:20210418T133033Z:7491b541-eaf7-4b15-9075-618a409bb146" ], "Date": [ - "Thu, 16 Jan 2020 10:20:42 GMT" + "Sun, 18 Apr 2021 13:30:33 GMT" ], "Content-Length": [ - "7480" + "6010" ], "Content-Type": [ "application/json" @@ -23576,29 +22784,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 99,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2020-01-16T10:19:28.5184244Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 1809,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:19:31.7071553Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "218f5d7a-fa83-4eb6-b28d-1c47c768baee-2020-01-16 10:20:53Z-Ps" + "fbc617c8-0531-4d3a-bc07-c4c10492d1df" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166453476)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771253476)\\/\",\"ClientRequestId\":\"218f5d7a-fa83-4eb6-b28d-1c47c768baee-2020-01-16 10:20:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hFUrOTJmEx5NMellz8KqU+j+vK/CesYNjCJYr9A2/DM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749043726)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353843726)\\/\",\"ClientRequestId\":\"26be5dff-6cd0-4360-985b-0d60123fd73a-2021-04-18 13:30:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"b/82ST2MScwHe3BHWb+S18QfCSXOIRXbtABuUCK3NJE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23609,38 +22817,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11698" + "11416" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "218f5d7a-fa83-4eb6-b28d-1c47c768baee-2020-01-16 10:20:53Z-Ps 1/16/2020 10:20:53 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "218f5d7a-fa83-4eb6-b28d-1c47c768baee-2020-01-16 10:20:53Z-Ps" + "x-ms-request-id": [ + "857cde85-2914-4eaf-abe2-40c23791ba3a" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "fbc617c8-0531-4d3a-bc07-c4c10492d1df" ], "x-ms-correlation-request-id": [ - "eadd55de-e438-4f3c-b00d-8651c46dc4e1" + "857cde85-2914-4eaf-abe2-40c23791ba3a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102053Z:eadd55de-e438-4f3c-b00d-8651c46dc4e1" + "CENTRALUSEUAP:20210418T133043Z:857cde85-2914-4eaf-abe2-40c23791ba3a" ], "Date": [ - "Thu, 16 Jan 2020 10:20:53 GMT" + "Sun, 18 Apr 2021 13:30:43 GMT" ], "Content-Length": [ - "7480" + "6010" ], "Content-Type": [ "application/json" @@ -23649,29 +22854,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 99,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2020-01-16T10:19:28.5184244Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 1809,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:19:31.7071553Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fab2484-a2ea-4a79-8843-b6e1634fff88-2020-01-16 10:21:04Z-Ps" + "a1209fad-f63b-401b-b391-8259ab3b763f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166464074)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771264074)\\/\",\"ClientRequestId\":\"4fab2484-a2ea-4a79-8843-b6e1634fff88-2020-01-16 10:21:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pWY5JQUqMcxOefGTtLiJ2tqTFZIQ55MexT2AusBoY1c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749054109)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353854109)\\/\",\"ClientRequestId\":\"c539f482-81b5-4e06-8e3e-f0646acb9f40-2021-04-18 13:30:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RlApu5x8KTRFJvjZZHkAh63EIPQlJxpnz3yXRG24juk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23682,38 +22887,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11697" + "11415" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "4fab2484-a2ea-4a79-8843-b6e1634fff88-2020-01-16 10:21:04Z-Ps 1/16/2020 10:21:06 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "4fab2484-a2ea-4a79-8843-b6e1634fff88-2020-01-16 10:21:04Z-Ps" + "x-ms-request-id": [ + "c155e2cf-e63a-4183-bb7f-e98aa1203c72" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "a1209fad-f63b-401b-b391-8259ab3b763f" ], "x-ms-correlation-request-id": [ - "5a7c668a-13e9-4d8d-b389-422854246aec" + "c155e2cf-e63a-4183-bb7f-e98aa1203c72" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102106Z:5a7c668a-13e9-4d8d-b389-422854246aec" + "CENTRALUSEUAP:20210418T133054Z:c155e2cf-e63a-4183-bb7f-e98aa1203c72" ], "Date": [ - "Thu, 16 Jan 2020 10:21:06 GMT" + "Sun, 18 Apr 2021 13:30:54 GMT" ], "Content-Length": [ - "7480" + "6010" ], "Content-Type": [ "application/json" @@ -23722,29 +22924,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 99,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2020-01-16T10:19:28.5184244Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 1809,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:19:31.7071553Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d324cc22-b755-4f10-8a95-744e24e01f88-2020-01-16 10:21:16Z-Ps" + "a8ffae18-8cc7-4324-ab8e-8c2bf9c52ab7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166476479)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771276479)\\/\",\"ClientRequestId\":\"d324cc22-b755-4f10-8a95-744e24e01f88-2020-01-16 10:21:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zWeVUbBVK4dxRBBc1hTiq4KLoTrhvx4f8+ZJSBNUFFY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749064484)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353864484)\\/\",\"ClientRequestId\":\"77be8542-508e-4f99-874d-71964baeeacc-2021-04-18 13:31:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AT7h08cZEBkhm0sp+4GO3lxyI0Mq/Ur4VTkPUIm4xcI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23755,38 +22957,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11696" + "11413" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "d324cc22-b755-4f10-8a95-744e24e01f88-2020-01-16 10:21:16Z-Ps 1/16/2020 10:21:16 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "d324cc22-b755-4f10-8a95-744e24e01f88-2020-01-16 10:21:16Z-Ps" + "x-ms-request-id": [ + "46c18ae0-0252-4af4-affb-ce0a158254c5" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "a8ffae18-8cc7-4324-ab8e-8c2bf9c52ab7" ], "x-ms-correlation-request-id": [ - "ba7a3428-1b0e-42c0-bab2-bfd5ecfdb911" + "46c18ae0-0252-4af4-affb-ce0a158254c5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102116Z:ba7a3428-1b0e-42c0-bab2-bfd5ecfdb911" + "CENTRALUSEUAP:20210418T133104Z:46c18ae0-0252-4af4-affb-ce0a158254c5" ], "Date": [ - "Thu, 16 Jan 2020 10:21:16 GMT" + "Sun, 18 Apr 2021 13:31:03 GMT" ], "Content-Length": [ - "7480" + "6010" ], "Content-Type": [ "application/json" @@ -23795,29 +22994,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 99,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2020-01-16T10:19:28.5184244Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 1809,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:19:31.7071553Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "632cb244-4f94-42fc-b127-aa76f13eb1e8-2020-01-16 10:21:27Z-Ps" + "64d9d409-b0e6-4e13-87b0-bfaf852ef645" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166487043)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771287043)\\/\",\"ClientRequestId\":\"632cb244-4f94-42fc-b127-aa76f13eb1e8-2020-01-16 10:21:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rGUx+pRBC+sVkCF78H4VHPDVTBG960WcwgUyhO7Y7BI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749074956)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353874956)\\/\",\"ClientRequestId\":\"05cb3ea9-264c-4ad0-9e10-ba9f4b4bd886-2021-04-18 13:31:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZUhWNAHWfwQaVnbjys9YIn4CFLwDSWy8C1A567zxzyU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23828,38 +23027,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11695" + "11412" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "632cb244-4f94-42fc-b127-aa76f13eb1e8-2020-01-16 10:21:27Z-Ps 1/16/2020 10:21:28 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "632cb244-4f94-42fc-b127-aa76f13eb1e8-2020-01-16 10:21:27Z-Ps" + "x-ms-request-id": [ + "3a391ca0-56fe-4952-afe0-9e5d5b2eb119" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "64d9d409-b0e6-4e13-87b0-bfaf852ef645" ], "x-ms-correlation-request-id": [ - "62fa421c-7b96-4d49-8abe-f6797953ad60" + "3a391ca0-56fe-4952-afe0-9e5d5b2eb119" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102128Z:62fa421c-7b96-4d49-8abe-f6797953ad60" + "CENTRALUSEUAP:20210418T133115Z:3a391ca0-56fe-4952-afe0-9e5d5b2eb119" ], "Date": [ - "Thu, 16 Jan 2020 10:21:27 GMT" + "Sun, 18 Apr 2021 13:31:14 GMT" ], "Content-Length": [ - "7465" + "6790" ], "Content-Type": [ "application/json" @@ -23868,29 +23064,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:20:58.9539589Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "811652f7-8df2-48a1-ab9f-b3b514375ec9-2020-01-16 10:21:38Z-Ps" + "db1d4bef-a697-4db1-bb59-e0946257b904" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166498325)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771298325)\\/\",\"ClientRequestId\":\"811652f7-8df2-48a1-ab9f-b3b514375ec9-2020-01-16 10:21:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9ApGiqBRG6zMuMPM/yzZjzvjcbfBUuKqn6Zh8GyS4YE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749085319)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353885319)\\/\",\"ClientRequestId\":\"fcd4ee60-d14e-43c7-a2c4-96ce83a98320-2021-04-18 13:31:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8Rm/ye8NPGNDYOzUBeVC7a6ORvErF6z/jCqEP6mY4YQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23901,38 +23097,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11694" + "11410" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "811652f7-8df2-48a1-ab9f-b3b514375ec9-2020-01-16 10:21:38Z-Ps 1/16/2020 10:21:38 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "811652f7-8df2-48a1-ab9f-b3b514375ec9-2020-01-16 10:21:38Z-Ps" + "x-ms-request-id": [ + "34d57909-9b39-4f84-bc41-d5d12ea1789f" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "db1d4bef-a697-4db1-bb59-e0946257b904" ], "x-ms-correlation-request-id": [ - "bc18b670-e8aa-4fbc-877e-cd1bee8045a4" + "34d57909-9b39-4f84-bc41-d5d12ea1789f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102138Z:bc18b670-e8aa-4fbc-877e-cd1bee8045a4" + "CENTRALUSEUAP:20210418T133125Z:34d57909-9b39-4f84-bc41-d5d12ea1789f" ], "Date": [ - "Thu, 16 Jan 2020 10:21:38 GMT" + "Sun, 18 Apr 2021 13:31:25 GMT" ], "Content-Length": [ - "7465" + "6790" ], "Content-Type": [ "application/json" @@ -23941,29 +23134,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:20:58.9539589Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9cf35ef-398c-4201-bf66-4525837e1279-2020-01-16 10:21:49Z-Ps" + "2582af24-f666-4cf1-9817-3e974dc5efce" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166509019)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771309019)\\/\",\"ClientRequestId\":\"d9cf35ef-398c-4201-bf66-4525837e1279-2020-01-16 10:21:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HACBQVIbT4hzgizbU8TOV9pJs8UYqxPAge9QDV+V2ug=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749095831)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353895831)\\/\",\"ClientRequestId\":\"302f69e4-9c33-458a-8f85-0347ae303c1f-2021-04-18 13:31:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ei55xsieVD4d5tnS5XSpXdAqXwR1q0aCIxM0xDeeUA8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23974,38 +23167,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11693" + "11408" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "d9cf35ef-398c-4201-bf66-4525837e1279-2020-01-16 10:21:49Z-Ps 1/16/2020 10:21:49 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "d9cf35ef-398c-4201-bf66-4525837e1279-2020-01-16 10:21:49Z-Ps" + "x-ms-request-id": [ + "2f405534-24c0-46ca-8039-f115574ec650" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "2582af24-f666-4cf1-9817-3e974dc5efce" ], "x-ms-correlation-request-id": [ - "1364c50d-3d2e-4fda-8f43-567d89a27d85" + "2f405534-24c0-46ca-8039-f115574ec650" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102149Z:1364c50d-3d2e-4fda-8f43-567d89a27d85" + "CENTRALUSEUAP:20210418T133136Z:2f405534-24c0-46ca-8039-f115574ec650" ], "Date": [ - "Thu, 16 Jan 2020 10:21:48 GMT" + "Sun, 18 Apr 2021 13:31:35 GMT" ], "Content-Length": [ - "7465" + "6790" ], "Content-Type": [ "application/json" @@ -24014,29 +23204,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:20:58.9539589Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85e8272e-d4f1-40f8-858e-257b878cf936-2020-01-16 10:21:59Z-Ps" + "7a336462-704b-4585-ace1-6f69eda487d0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166519746)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771319746)\\/\",\"ClientRequestId\":\"85e8272e-d4f1-40f8-858e-257b878cf936-2020-01-16 10:21:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vrjT6ucuo9qbgsHN/c3dz7AD3Glw+KQZaCiThT7yH7g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749106484)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353906484)\\/\",\"ClientRequestId\":\"d299073f-2902-498b-9f88-48a9997e8432-2021-04-18 13:31:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VLkVmkluu2/LHwFPYwM0SXmE9hhG3Tl3WaO4+UB+UOY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24047,38 +23237,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11691" + "11407" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "85e8272e-d4f1-40f8-858e-257b878cf936-2020-01-16 10:21:59Z-Ps 1/16/2020 10:22:00 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "85e8272e-d4f1-40f8-858e-257b878cf936-2020-01-16 10:21:59Z-Ps" + "x-ms-request-id": [ + "7da9f918-04fb-4dc0-955a-b68f153320a9" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "7a336462-704b-4585-ace1-6f69eda487d0" ], "x-ms-correlation-request-id": [ - "f0f0a632-9e19-46b9-b4b2-7eb6cc87714b" + "7da9f918-04fb-4dc0-955a-b68f153320a9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102200Z:f0f0a632-9e19-46b9-b4b2-7eb6cc87714b" + "CENTRALUSEUAP:20210418T133146Z:7da9f918-04fb-4dc0-955a-b68f153320a9" ], "Date": [ - "Thu, 16 Jan 2020 10:22:00 GMT" + "Sun, 18 Apr 2021 13:31:46 GMT" ], "Content-Length": [ - "7465" + "7550" ], "Content-Type": [ "application/json" @@ -24087,29 +23274,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:20:58.9539589Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1bf8e10-ad0e-4654-86fd-81db5a88d9d4-2020-01-16 10:22:10Z-Ps" + "d4c979bb-180d-4a5b-843a-ddbeab2a4b3d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166530420)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771330420)\\/\",\"ClientRequestId\":\"a1bf8e10-ad0e-4654-86fd-81db5a88d9d4-2020-01-16 10:22:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MKPUd+z4KBn6znttQK4pqDsT/T/BJcXYs2+3PaqZ6g8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749760783)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354560783)\\/\",\"ClientRequestId\":\"443ed712-1d02-4a00-88df-369d3a04c659-2021-04-18 13:42:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Zb8wneRQ2fWnko1zrLUQkGsg5RGewyUinmGc8Bqq1vc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24120,38 +23307,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11688" + "11418" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "a1bf8e10-ad0e-4654-86fd-81db5a88d9d4-2020-01-16 10:22:10Z-Ps 1/16/2020 10:22:11 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "a1bf8e10-ad0e-4654-86fd-81db5a88d9d4-2020-01-16 10:22:10Z-Ps" + "x-ms-request-id": [ + "72ccb4da-9fc6-44d8-a6cb-0cbbbc1a3c48" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "d4c979bb-180d-4a5b-843a-ddbeab2a4b3d" ], "x-ms-correlation-request-id": [ - "bdeea50f-b421-4608-b707-40bf6e1f1c5f" + "72ccb4da-9fc6-44d8-a6cb-0cbbbc1a3c48" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102211Z:bdeea50f-b421-4608-b707-40bf6e1f1c5f" + "CENTRALUSEUAP:20210418T134240Z:72ccb4da-9fc6-44d8-a6cb-0cbbbc1a3c48" ], "Date": [ - "Thu, 16 Jan 2020 10:22:11 GMT" + "Sun, 18 Apr 2021 13:42:40 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -24160,29 +23344,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:20:58.9539589Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0dc3d1c2-e3dc-4dfe-b089-37a3e6734b11-2020-01-16 10:22:21Z-Ps" + "c2a21afd-122c-40d0-8a09-fc72d72e7de0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166541370)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771341370)\\/\",\"ClientRequestId\":\"0dc3d1c2-e3dc-4dfe-b089-37a3e6734b11-2020-01-16 10:22:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5QbLJeoaePAZ4ivNdppZ/o/cQPpmNxIIpMhP4lFt4Zw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749771255)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354571255)\\/\",\"ClientRequestId\":\"41a7d2e1-017d-40ca-aaae-9bf230150244-2021-04-18 13:42:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dsvA0z24T+ucev8nk1qmTu740QsQdU6V+chw8QDer4s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24192,39 +23376,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11417" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "0dc3d1c2-e3dc-4dfe-b089-37a3e6734b11-2020-01-16 10:22:21Z-Ps 1/16/2020 10:22:21 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "0dc3d1c2-e3dc-4dfe-b089-37a3e6734b11-2020-01-16 10:22:21Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "2d4a5f3c-0d7d-4a51-9b58-d5b14e23f5ff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11687" + "x-ms-client-request-id": [ + "c2a21afd-122c-40d0-8a09-fc72d72e7de0" ], "x-ms-correlation-request-id": [ - "95291176-55d5-47aa-ba6f-78032c1a013c" + "2d4a5f3c-0d7d-4a51-9b58-d5b14e23f5ff" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102221Z:95291176-55d5-47aa-ba6f-78032c1a013c" + "CENTRALUSEUAP:20210418T134251Z:2d4a5f3c-0d7d-4a51-9b58-d5b14e23f5ff" ], "Date": [ - "Thu, 16 Jan 2020 10:22:21 GMT" + "Sun, 18 Apr 2021 13:42:50 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -24233,29 +23414,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:20:58.9539589Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c941e32-91d3-4d50-8c88-919e3cd20391-2020-01-16 10:22:32Z-Ps" + "f9351ece-d5cb-4059-9000-8e4edf36f6ff" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166552070)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771352070)\\/\",\"ClientRequestId\":\"2c941e32-91d3-4d50-8c88-919e3cd20391-2020-01-16 10:22:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UZCXfG9QeN35FfaaLGysRnkJZqqqWWHZOd0AQt/76XQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749781638)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354581638)\\/\",\"ClientRequestId\":\"98fcf734-c0e2-4c83-9e2e-305f934d654d-2021-04-18 13:43:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"htfffbWaMmNyvQiQGU1rKR3EH5rL/81zRZ78wXeBLoY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24266,38 +23447,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11686" + "11416" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "2c941e32-91d3-4d50-8c88-919e3cd20391-2020-01-16 10:22:32Z-Ps 1/16/2020 10:22:33 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "2c941e32-91d3-4d50-8c88-919e3cd20391-2020-01-16 10:22:32Z-Ps" + "x-ms-request-id": [ + "cfbaa7a0-738e-45ff-9e3f-6e452a2c1b1b" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "f9351ece-d5cb-4059-9000-8e4edf36f6ff" ], "x-ms-correlation-request-id": [ - "8791829d-b7c6-4119-adb3-1e55d3ede1b3" + "cfbaa7a0-738e-45ff-9e3f-6e452a2c1b1b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102233Z:8791829d-b7c6-4119-adb3-1e55d3ede1b3" + "CENTRALUSEUAP:20210418T134301Z:cfbaa7a0-738e-45ff-9e3f-6e452a2c1b1b" ], "Date": [ - "Thu, 16 Jan 2020 10:22:33 GMT" + "Sun, 18 Apr 2021 13:43:01 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -24306,29 +23484,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:20:58.9539589Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "303d98b7-78dd-4df3-9c0e-5ce1f088d2a9-2020-01-16 10:22:43Z-Ps" + "cc2f42f1-fc25-47b9-b31a-50b4d57cb5c0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166563748)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771363748)\\/\",\"ClientRequestId\":\"303d98b7-78dd-4df3-9c0e-5ce1f088d2a9-2020-01-16 10:22:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4QkuXjT4okQwAijw0g9AgFw6AdkaV7vyCUn9MvMVbpk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749792037)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354592037)\\/\",\"ClientRequestId\":\"9555a3d8-fba7-45d1-b2ce-8e43cd18937b-2021-04-18 13:43:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bOjAcb/zaZrhu5oPwmMvLjW4vCh7Nhy5z2pJNQefF7E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24339,38 +23517,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11685" + "11415" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "303d98b7-78dd-4df3-9c0e-5ce1f088d2a9-2020-01-16 10:22:43Z-Ps 1/16/2020 10:22:44 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "303d98b7-78dd-4df3-9c0e-5ce1f088d2a9-2020-01-16 10:22:43Z-Ps" + "x-ms-request-id": [ + "c6b18d95-3af3-4b23-9128-8fe8e5e1a876" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "cc2f42f1-fc25-47b9-b31a-50b4d57cb5c0" ], "x-ms-correlation-request-id": [ - "9517cd83-2cbd-4ec2-906e-f82ad2f1cc05" + "c6b18d95-3af3-4b23-9128-8fe8e5e1a876" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102244Z:9517cd83-2cbd-4ec2-906e-f82ad2f1cc05" + "CENTRALUSEUAP:20210418T134312Z:c6b18d95-3af3-4b23-9128-8fe8e5e1a876" ], "Date": [ - "Thu, 16 Jan 2020 10:22:43 GMT" + "Sun, 18 Apr 2021 13:43:12 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -24379,29 +23554,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:20:58.9539589Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5def2d23-4ae5-4e22-8860-03e2faad17e5-2020-01-16 10:22:54Z-Ps" + "1595b27a-c15f-4749-8c8d-d523d6202ef2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166574381)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771374381)\\/\",\"ClientRequestId\":\"5def2d23-4ae5-4e22-8860-03e2faad17e5-2020-01-16 10:22:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AB7Yx3iZimI6WnD86m4ALhTj8v91LUBeg93zsY8s5fk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749802486)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354602486)\\/\",\"ClientRequestId\":\"69326dc1-a049-494a-80a2-dc8a30f5d7e1-2021-04-18 13:43:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PtPqnicjYzhr7eVXB1QsJmKuChaTX+QUoQorpa+ahd8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24412,38 +23587,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11684" + "11414" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "5def2d23-4ae5-4e22-8860-03e2faad17e5-2020-01-16 10:22:54Z-Ps 1/16/2020 10:22:54 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "5def2d23-4ae5-4e22-8860-03e2faad17e5-2020-01-16 10:22:54Z-Ps" + "x-ms-request-id": [ + "2295bb52-8e3f-4987-9b24-00974912e5e9" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "1595b27a-c15f-4749-8c8d-d523d6202ef2" ], "x-ms-correlation-request-id": [ - "02edddf8-b401-48eb-858b-2e1bb4ed2eda" + "2295bb52-8e3f-4987-9b24-00974912e5e9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102255Z:02edddf8-b401-48eb-858b-2e1bb4ed2eda" + "CENTRALUSEUAP:20210418T134322Z:2295bb52-8e3f-4987-9b24-00974912e5e9" ], "Date": [ - "Thu, 16 Jan 2020 10:22:54 GMT" + "Sun, 18 Apr 2021 13:43:22 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -24452,29 +23624,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:20:58.9539589Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef1d0b10-3639-409a-a04f-e5704d47c2c5-2020-01-16 10:23:05Z-Ps" + "01116571-837a-44c0-bcd4-0b48476bac0d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166585158)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771385158)\\/\",\"ClientRequestId\":\"ef1d0b10-3639-409a-a04f-e5704d47c2c5-2020-01-16 10:23:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hRagre6elJL5p0LZMrxnSZt/fKPXJj5jO5u0f3+P6+A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749812879)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354612879)\\/\",\"ClientRequestId\":\"7043a891-207b-4a53-8cd1-d222665ff5be-2021-04-18 13:43:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WcoC2xTbdonvtYj6EkwBzO6ZC4DovCpqBPLxMp7wa38=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24485,38 +23657,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11683" + "11413" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "ef1d0b10-3639-409a-a04f-e5704d47c2c5-2020-01-16 10:23:05Z-Ps 1/16/2020 10:23:05 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "ef1d0b10-3639-409a-a04f-e5704d47c2c5-2020-01-16 10:23:05Z-Ps" + "x-ms-request-id": [ + "d36a6e28-136b-4ef8-9f6b-0dc9fbd22df6" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "01116571-837a-44c0-bcd4-0b48476bac0d" ], "x-ms-correlation-request-id": [ - "198c6df5-ecc9-49cc-995c-cc88b0875e27" + "d36a6e28-136b-4ef8-9f6b-0dc9fbd22df6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102305Z:198c6df5-ecc9-49cc-995c-cc88b0875e27" + "CENTRALUSEUAP:20210418T134333Z:d36a6e28-136b-4ef8-9f6b-0dc9fbd22df6" ], "Date": [ - "Thu, 16 Jan 2020 10:23:04 GMT" + "Sun, 18 Apr 2021 13:43:33 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -24525,29 +23694,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:20:58.9539589Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b761d391-1807-457b-9778-c61cba0b0b29-2020-01-16 10:23:15Z-Ps" + "c22681f1-491b-4ab0-b4f9-45e3f2c44613" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166595851)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771395851)\\/\",\"ClientRequestId\":\"b761d391-1807-457b-9778-c61cba0b0b29-2020-01-16 10:23:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"j9aMefFmcB+Tx3O0vgB3jEWjTX6P36R55zg3Ncx/seM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749823358)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354623358)\\/\",\"ClientRequestId\":\"5462e7fe-334e-4d3d-8673-0ad07d2554d8-2021-04-18 13:43:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1soGNIIQxYzbAbTd+0x3iNveLXdwEKFINqWMaZK+y6w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24558,38 +23727,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11682" + "11412" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "b761d391-1807-457b-9778-c61cba0b0b29-2020-01-16 10:23:15Z-Ps 1/16/2020 10:23:16 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "b761d391-1807-457b-9778-c61cba0b0b29-2020-01-16 10:23:15Z-Ps" + "x-ms-request-id": [ + "e16a5820-d7f7-4346-a1d0-51b666ae6ec8" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "c22681f1-491b-4ab0-b4f9-45e3f2c44613" ], "x-ms-correlation-request-id": [ - "be096ddb-72bc-4408-9fdc-41fb307eba78" + "e16a5820-d7f7-4346-a1d0-51b666ae6ec8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102316Z:be096ddb-72bc-4408-9fdc-41fb307eba78" + "CENTRALUSEUAP:20210418T134343Z:e16a5820-d7f7-4346-a1d0-51b666ae6ec8" ], "Date": [ - "Thu, 16 Jan 2020 10:23:16 GMT" + "Sun, 18 Apr 2021 13:43:43 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -24598,29 +23764,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:20:58.9539589Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1de6b8e7-26d0-4666-a9fb-57c8c0b40bc2-2020-01-16 10:23:26Z-Ps" + "b9222489-def4-41b3-b983-35516ebfbc3b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166606607)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771406607)\\/\",\"ClientRequestId\":\"1de6b8e7-26d0-4666-a9fb-57c8c0b40bc2-2020-01-16 10:23:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"USsyoMxyEcQiSdTCVRm+JE0a6+D/Wt0E6XZbtiUFnWQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749833750)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354633750)\\/\",\"ClientRequestId\":\"09636500-6376-4fd9-b54d-280bcc5a3e3b-2021-04-18 13:43:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1Wjk4FfadBAyq2KTet4QnuyHeHqr6Q6kRxXrFCdZmQI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24631,38 +23797,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11681" + "11411" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "1de6b8e7-26d0-4666-a9fb-57c8c0b40bc2-2020-01-16 10:23:26Z-Ps 1/16/2020 10:23:27 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "1de6b8e7-26d0-4666-a9fb-57c8c0b40bc2-2020-01-16 10:23:26Z-Ps" + "x-ms-request-id": [ + "a4b19e3a-4e4e-43cc-abea-852e27cb4e8e" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "b9222489-def4-41b3-b983-35516ebfbc3b" ], "x-ms-correlation-request-id": [ - "aa14c87f-5e6d-4110-a002-bb2dbdf8d3fe" + "a4b19e3a-4e4e-43cc-abea-852e27cb4e8e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102327Z:aa14c87f-5e6d-4110-a002-bb2dbdf8d3fe" + "CENTRALUSEUAP:20210418T134353Z:a4b19e3a-4e4e-43cc-abea-852e27cb4e8e" ], "Date": [ - "Thu, 16 Jan 2020 10:23:26 GMT" + "Sun, 18 Apr 2021 13:43:53 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -24671,29 +23834,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:20:58.9539589Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51622b58-204a-4e35-9bf1-243e3f3420fa-2020-01-16 10:23:37Z-Ps" + "4de6b8f0-4b2c-45ee-b8fe-728eb0f5232e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166617389)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771417389)\\/\",\"ClientRequestId\":\"51622b58-204a-4e35-9bf1-243e3f3420fa-2020-01-16 10:23:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vO8TQJHsti5IYvHf0aJl1hKoqx5tpioB067fI8+AYLs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749844155)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354644155)\\/\",\"ClientRequestId\":\"fec30582-90cb-4770-a296-e35a8ca40f3d-2021-04-18 13:44:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rRYCRx8tgsI7kPMhsTZtqDUnJnOEQDEg7zTBRyxVvUI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24704,38 +23867,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11680" + "11410" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "51622b58-204a-4e35-9bf1-243e3f3420fa-2020-01-16 10:23:37Z-Ps 1/16/2020 10:23:38 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "51622b58-204a-4e35-9bf1-243e3f3420fa-2020-01-16 10:23:37Z-Ps" + "x-ms-request-id": [ + "498af42d-7a57-4dde-81b0-39369408f49a" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "4de6b8f0-4b2c-45ee-b8fe-728eb0f5232e" ], "x-ms-correlation-request-id": [ - "3c62532b-4a8d-4618-a710-95228d6e0223" + "498af42d-7a57-4dde-81b0-39369408f49a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102338Z:3c62532b-4a8d-4618-a710-95228d6e0223" + "CENTRALUSEUAP:20210418T134404Z:498af42d-7a57-4dde-81b0-39369408f49a" ], "Date": [ - "Thu, 16 Jan 2020 10:23:37 GMT" + "Sun, 18 Apr 2021 13:44:04 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -24744,29 +23904,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:20:58.9539589Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b460589f-1a81-46ff-a1c7-341b36f4d09e-2020-01-16 10:23:48Z-Ps" + "99ca9411-d968-44d9-b770-42647e9aa4d8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166628254)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771428254)\\/\",\"ClientRequestId\":\"b460589f-1a81-46ff-a1c7-341b36f4d09e-2020-01-16 10:23:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+Z4re5r/4YwIhFONt6Fgix002PdBFS9f2BQsHnTosjc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749854556)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354654556)\\/\",\"ClientRequestId\":\"802f7d39-ab50-43db-8148-c5a8b4db1661-2021-04-18 13:44:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FKoj/8AWgK4ZHBn8r0vtJWrQCEu1RND8MdSQKp3sBak=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24776,39 +23936,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11409" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "b460589f-1a81-46ff-a1c7-341b36f4d09e-2020-01-16 10:23:48Z-Ps 1/16/2020 10:23:48 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "b460589f-1a81-46ff-a1c7-341b36f4d09e-2020-01-16 10:23:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "deeef521-a361-4973-85c9-cf975a41a9c6" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11679" + "x-ms-client-request-id": [ + "99ca9411-d968-44d9-b770-42647e9aa4d8" ], "x-ms-correlation-request-id": [ - "e066d195-12b4-4e17-93ca-7d7df87771d9" + "deeef521-a361-4973-85c9-cf975a41a9c6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102349Z:e066d195-12b4-4e17-93ca-7d7df87771d9" + "CENTRALUSEUAP:20210418T134414Z:deeef521-a361-4973-85c9-cf975a41a9c6" ], "Date": [ - "Thu, 16 Jan 2020 10:23:48 GMT" + "Sun, 18 Apr 2021 13:44:14 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -24817,29 +23974,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:20:58.9539589Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87a39881-09b9-4f8f-827b-542f3987ce2b-2020-01-16 10:23:59Z-Ps" + "853d02f6-7047-4f09-8f91-f1d86732a930" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166639136)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771439136)\\/\",\"ClientRequestId\":\"87a39881-09b9-4f8f-827b-542f3987ce2b-2020-01-16 10:23:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cBzlLjWk2WyQJcD/YSYVjxc5IBIMYwbpjoDQK6cIc4Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749864952)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354664952)\\/\",\"ClientRequestId\":\"7899a6aa-1698-4887-9f29-1c17a7b46466-2021-04-18 13:44:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RmtzWZQX++OQBp/zsPlkUi1G4kw9UwdCwucJgIWeouw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24850,38 +24007,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11678" + "11408" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "87a39881-09b9-4f8f-827b-542f3987ce2b-2020-01-16 10:23:59Z-Ps 1/16/2020 10:24:00 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "87a39881-09b9-4f8f-827b-542f3987ce2b-2020-01-16 10:23:59Z-Ps" + "x-ms-request-id": [ + "8c785276-1e25-49ac-99b5-997d9cb16aeb" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "853d02f6-7047-4f09-8f91-f1d86732a930" ], "x-ms-correlation-request-id": [ - "50486ee9-7636-40a1-819e-7d79055c6f84" + "8c785276-1e25-49ac-99b5-997d9cb16aeb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102401Z:50486ee9-7636-40a1-819e-7d79055c6f84" + "CENTRALUSEUAP:20210418T134425Z:8c785276-1e25-49ac-99b5-997d9cb16aeb" ], "Date": [ - "Thu, 16 Jan 2020 10:24:00 GMT" + "Sun, 18 Apr 2021 13:44:24 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -24890,29 +24044,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:23:59.9882249Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "478ba7d7-3df5-43f6-81d7-c5368bfc16cd-2020-01-16 10:24:11Z-Ps" + "9391ecb5-e365-4e4b-a857-390382c5ccce" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166651231)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771451231)\\/\",\"ClientRequestId\":\"478ba7d7-3df5-43f6-81d7-c5368bfc16cd-2020-01-16 10:24:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BnCdbluiUTDQ/SSJyXYaVPEPkCaQV9Mukn/ypaENvUM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749876501)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354676501)\\/\",\"ClientRequestId\":\"2ca650b0-efb2-44bf-aa9e-c081d075acf6-2021-04-18 13:44:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5F7hVK57IHjxKerwDFJ3BDTky7ZTWOIIGRWYMxhjn3c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24923,38 +24077,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11676" + "11407" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "478ba7d7-3df5-43f6-81d7-c5368bfc16cd-2020-01-16 10:24:11Z-Ps 1/16/2020 10:24:11 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "478ba7d7-3df5-43f6-81d7-c5368bfc16cd-2020-01-16 10:24:11Z-Ps" + "x-ms-request-id": [ + "033e4626-18e1-4fea-976b-ee98008ed7f2" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "9391ecb5-e365-4e4b-a857-390382c5ccce" ], "x-ms-correlation-request-id": [ - "9ab31200-6922-4e8c-9707-acbf22afc462" + "033e4626-18e1-4fea-976b-ee98008ed7f2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102411Z:9ab31200-6922-4e8c-9707-acbf22afc462" + "CENTRALUSEUAP:20210418T134436Z:033e4626-18e1-4fea-976b-ee98008ed7f2" ], "Date": [ - "Thu, 16 Jan 2020 10:24:11 GMT" + "Sun, 18 Apr 2021 13:44:36 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -24963,29 +24114,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:23:59.9882249Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e021c4c-611b-46af-af9f-c7de5813e651-2020-01-16 10:24:21Z-Ps" + "ba7e00b2-376f-4384-9072-5bcf1565c1ce" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166661937)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771461937)\\/\",\"ClientRequestId\":\"0e021c4c-611b-46af-af9f-c7de5813e651-2020-01-16 10:24:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+mTPvg7Dz2Z9kxmzRmHTGq9H+WwMtH0S3UhCJp92Yhw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749887235)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354687235)\\/\",\"ClientRequestId\":\"45e750f1-8361-42e8-a18f-1f14558f64ad-2021-04-18 13:44:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qzLyl+2r8EHPwcxNTWnWkyF0e3kYt4JSWLBppnni1bo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24996,38 +24147,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11674" + "11406" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "0e021c4c-611b-46af-af9f-c7de5813e651-2020-01-16 10:24:21Z-Ps 1/16/2020 10:24:22 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "0e021c4c-611b-46af-af9f-c7de5813e651-2020-01-16 10:24:21Z-Ps" + "x-ms-request-id": [ + "a31a407c-1bfb-4d3d-ad78-5ca60bbb4c2e" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "ba7e00b2-376f-4384-9072-5bcf1565c1ce" ], "x-ms-correlation-request-id": [ - "c044ba8f-262e-4aac-9c98-8a994e27f038" + "a31a407c-1bfb-4d3d-ad78-5ca60bbb4c2e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102422Z:c044ba8f-262e-4aac-9c98-8a994e27f038" + "CENTRALUSEUAP:20210418T134447Z:a31a407c-1bfb-4d3d-ad78-5ca60bbb4c2e" ], "Date": [ - "Thu, 16 Jan 2020 10:24:22 GMT" + "Sun, 18 Apr 2021 13:44:46 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -25036,29 +24184,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:23:59.9882249Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8860f777-6fff-4aea-ad9e-75040fcde14a-2020-01-16 10:24:32Z-Ps" + "b69da733-b88e-43df-a4b3-400ee2e29d2d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166672588)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771472588)\\/\",\"ClientRequestId\":\"8860f777-6fff-4aea-ad9e-75040fcde14a-2020-01-16 10:24:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tPcbwJo1kOknXW/89BUCdA5XaHypA/YZ5ahCKAkvU78=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749897626)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354697626)\\/\",\"ClientRequestId\":\"811988d2-ae53-44ed-94e2-9e97895c8ee8-2021-04-18 13:44:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tNhZOQxJDlRYvFHZRJx4E2jCMMF0i2t61luH+6Kbfzs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25069,38 +24217,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11673" + "11405" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "8860f777-6fff-4aea-ad9e-75040fcde14a-2020-01-16 10:24:32Z-Ps 1/16/2020 10:24:32 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "8860f777-6fff-4aea-ad9e-75040fcde14a-2020-01-16 10:24:32Z-Ps" + "x-ms-request-id": [ + "17f1e9f6-d902-44a1-9b7a-14545cd1feff" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "b69da733-b88e-43df-a4b3-400ee2e29d2d" ], "x-ms-correlation-request-id": [ - "faffa8b5-52cb-445f-9c2b-7c361f6da7cb" + "17f1e9f6-d902-44a1-9b7a-14545cd1feff" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102433Z:faffa8b5-52cb-445f-9c2b-7c361f6da7cb" + "CENTRALUSEUAP:20210418T134457Z:17f1e9f6-d902-44a1-9b7a-14545cd1feff" ], "Date": [ - "Thu, 16 Jan 2020 10:24:32 GMT" + "Sun, 18 Apr 2021 13:44:56 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -25109,29 +24254,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:23:59.9882249Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f31fbd4-2905-456a-b292-fd41bcabdc23-2020-01-16 10:24:43Z-Ps" + "c87e7558-6466-4e34-8d1f-a4bcb86a5f5b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166683171)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771483171)\\/\",\"ClientRequestId\":\"0f31fbd4-2905-456a-b292-fd41bcabdc23-2020-01-16 10:24:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yDCC7TJq75BFcACxps+Xbdw7gXw+lRhuMBe0hOs5ti4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749908016)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354708016)\\/\",\"ClientRequestId\":\"d9dca44d-21c2-4c7f-b312-9433136d8cd8-2021-04-18 13:45:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MpVVXxD6oQPhfUs9353rRf3L3VLfMSbGRthgjrYXezU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25142,38 +24287,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11672" + "11460" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "0f31fbd4-2905-456a-b292-fd41bcabdc23-2020-01-16 10:24:43Z-Ps 1/16/2020 10:24:43 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "0f31fbd4-2905-456a-b292-fd41bcabdc23-2020-01-16 10:24:43Z-Ps" + "x-ms-request-id": [ + "7f489625-dead-4c75-8470-187e0cf9de46" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "c87e7558-6466-4e34-8d1f-a4bcb86a5f5b" ], "x-ms-correlation-request-id": [ - "8997f156-ffde-4935-a00a-9aa9fc77a2ec" + "7f489625-dead-4c75-8470-187e0cf9de46" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102443Z:8997f156-ffde-4935-a00a-9aa9fc77a2ec" + "CENTRALUSEUAP:20210418T134508Z:7f489625-dead-4c75-8470-187e0cf9de46" ], "Date": [ - "Thu, 16 Jan 2020 10:24:43 GMT" + "Sun, 18 Apr 2021 13:45:07 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -25182,29 +24324,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:23:59.9882249Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "403aa685-6963-45f7-a285-cdeebcd2a5b6-2020-01-16 10:24:53Z-Ps" + "1a0eae32-6e01-4e10-b0f5-083d30464ab2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166693950)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771493950)\\/\",\"ClientRequestId\":\"403aa685-6963-45f7-a285-cdeebcd2a5b6-2020-01-16 10:24:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2ithv0OzdhpWYemBkqNnxJGGWMvjtPtLMTKFy3aIlsA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749918394)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354718394)\\/\",\"ClientRequestId\":\"b55c4c62-8be9-419b-b2ce-02bb95c97f17-2021-04-18 13:45:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4mae+Ze9/Ato4/Zhz/l0YFoPCSlfwUTFbSQl4sEf2cs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25215,38 +24357,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11671" + "11459" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "403aa685-6963-45f7-a285-cdeebcd2a5b6-2020-01-16 10:24:53Z-Ps 1/16/2020 10:24:54 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "403aa685-6963-45f7-a285-cdeebcd2a5b6-2020-01-16 10:24:53Z-Ps" + "x-ms-request-id": [ + "36fe5ba6-5f75-4acc-9818-979b375cd6b3" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "1a0eae32-6e01-4e10-b0f5-083d30464ab2" ], "x-ms-correlation-request-id": [ - "3500bb49-ed85-445e-bf71-e426d38373ee" + "36fe5ba6-5f75-4acc-9818-979b375cd6b3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102454Z:3500bb49-ed85-445e-bf71-e426d38373ee" + "CENTRALUSEUAP:20210418T134518Z:36fe5ba6-5f75-4acc-9818-979b375cd6b3" ], "Date": [ - "Thu, 16 Jan 2020 10:24:54 GMT" + "Sun, 18 Apr 2021 13:45:18 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -25255,29 +24394,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:23:59.9882249Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a92245ae-a4d1-40cc-a34e-e4ccaf79b2f4-2020-01-16 10:25:04Z-Ps" + "dbd70028-8107-41cc-817a-0a896a07f443" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166704793)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771504793)\\/\",\"ClientRequestId\":\"a92245ae-a4d1-40cc-a34e-e4ccaf79b2f4-2020-01-16 10:25:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FfEgkvuWraeYSR1WTB7q4CiGqxMBq6GaXHV0pvBGNsc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749928778)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354728778)\\/\",\"ClientRequestId\":\"4236e25c-7ccb-49fb-b726-c6efce8110ae-2021-04-18 13:45:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XXQ17Hr9NOoIOL5lTHczPSq1XxyNDzKIZj3LSuvGIL4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25288,38 +24427,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11673" + "11458" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "a92245ae-a4d1-40cc-a34e-e4ccaf79b2f4-2020-01-16 10:25:04Z-Ps 1/16/2020 10:25:05 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "a92245ae-a4d1-40cc-a34e-e4ccaf79b2f4-2020-01-16 10:25:04Z-Ps" + "x-ms-request-id": [ + "5b9106b3-3fb1-419b-a858-930cc2b4fcce" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "dbd70028-8107-41cc-817a-0a896a07f443" ], "x-ms-correlation-request-id": [ - "a691a974-23cd-49bc-a2d8-c110cc1fa164" + "5b9106b3-3fb1-419b-a858-930cc2b4fcce" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102505Z:a691a974-23cd-49bc-a2d8-c110cc1fa164" + "CENTRALUSEUAP:20210418T134529Z:5b9106b3-3fb1-419b-a858-930cc2b4fcce" ], "Date": [ - "Thu, 16 Jan 2020 10:25:04 GMT" + "Sun, 18 Apr 2021 13:45:29 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -25328,29 +24464,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:23:59.9882249Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42db09d4-eff5-43f6-b7f3-104edb93f4f5-2020-01-16 10:25:15Z-Ps" + "85064576-d68e-4bae-810a-26eb4befdc6b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166715444)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771515444)\\/\",\"ClientRequestId\":\"42db09d4-eff5-43f6-b7f3-104edb93f4f5-2020-01-16 10:25:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gWBk9LXJe0b7Au73rpuKrhc6MCR9Nt9kR1ESaxA8Kw8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749939188)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354739188)\\/\",\"ClientRequestId\":\"18c8a80a-23f6-464e-8f7a-d7541770180f-2021-04-18 13:45:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8e3JWcd8RnCN83Qw7q07ChHzY0PiawSFoR5sXYEwIys=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25360,39 +24496,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11457" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "42db09d4-eff5-43f6-b7f3-104edb93f4f5-2020-01-16 10:25:15Z-Ps 1/16/2020 10:25:15 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "42db09d4-eff5-43f6-b7f3-104edb93f4f5-2020-01-16 10:25:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "ce9dc154-9d40-4505-9eac-845efb4bd370" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11672" + "x-ms-client-request-id": [ + "85064576-d68e-4bae-810a-26eb4befdc6b" ], "x-ms-correlation-request-id": [ - "37e4e1a5-3415-4a51-b166-2ffe97fa7f01" + "ce9dc154-9d40-4505-9eac-845efb4bd370" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102515Z:37e4e1a5-3415-4a51-b166-2ffe97fa7f01" + "CENTRALUSEUAP:20210418T134539Z:ce9dc154-9d40-4505-9eac-845efb4bd370" ], "Date": [ - "Thu, 16 Jan 2020 10:25:15 GMT" + "Sun, 18 Apr 2021 13:45:39 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -25401,29 +24534,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:23:59.9882249Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e332923-af35-4cfc-8434-86390e7cc7c0-2020-01-16 10:25:26Z-Ps" + "185ba237-a6b9-42fa-a768-c29503aafd67" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166726135)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771526135)\\/\",\"ClientRequestId\":\"9e332923-af35-4cfc-8434-86390e7cc7c0-2020-01-16 10:25:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FM1o+FooKK3rNpxis31NNeMagVyk3ohalrUrgOo62j8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749949575)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354749575)\\/\",\"ClientRequestId\":\"b3ca0b17-42d4-4906-a310-9f97f1cfb143-2021-04-18 13:45:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YPBdfWjgnFrdMaCXblf0ZDdBwpuHW4+lqV0vMEJm6qo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25434,38 +24567,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11671" + "11456" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "9e332923-af35-4cfc-8434-86390e7cc7c0-2020-01-16 10:25:26Z-Ps 1/16/2020 10:25:27 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "9e332923-af35-4cfc-8434-86390e7cc7c0-2020-01-16 10:25:26Z-Ps" + "x-ms-request-id": [ + "aca3c245-ccd7-485e-89b6-62a5e79d5b46" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "185ba237-a6b9-42fa-a768-c29503aafd67" ], "x-ms-correlation-request-id": [ - "d5d9654c-d4f5-4d27-8165-5beeab1c926b" + "aca3c245-ccd7-485e-89b6-62a5e79d5b46" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102527Z:d5d9654c-d4f5-4d27-8165-5beeab1c926b" + "CENTRALUSEUAP:20210418T134549Z:aca3c245-ccd7-485e-89b6-62a5e79d5b46" ], "Date": [ - "Thu, 16 Jan 2020 10:25:26 GMT" + "Sun, 18 Apr 2021 13:45:49 GMT" ], "Content-Length": [ - "7465" + "8301" ], "Content-Type": [ "application/json" @@ -25474,29 +24604,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:23:59.9882249Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "502f0369-4389-4ff1-bc71-cd1b56229fdb-2020-01-16 10:25:37Z-Ps" + "33a67ebd-9e81-4755-9b19-fce1f8d2df60" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166737961)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771537961)\\/\",\"ClientRequestId\":\"502f0369-4389-4ff1-bc71-cd1b56229fdb-2020-01-16 10:25:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hN5R2g2W1XlgHeM+bzFiTO9U0QOTbmxxEygVUJ2cwbI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749959987)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354759987)\\/\",\"ClientRequestId\":\"0bb65171-93fd-4ee7-a0e6-4384d2a78818-2021-04-18 13:45:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"c54DyAKm9YsXb2mpzgj8DtB8afOcklBCGDXFZGwsy80=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25507,38 +24637,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11670" + "11455" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "502f0369-4389-4ff1-bc71-cd1b56229fdb-2020-01-16 10:25:37Z-Ps 1/16/2020 10:25:38 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "502f0369-4389-4ff1-bc71-cd1b56229fdb-2020-01-16 10:25:37Z-Ps" + "x-ms-request-id": [ + "68943f2e-9b13-483e-9f6c-7bcec5ddde16" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "33a67ebd-9e81-4755-9b19-fce1f8d2df60" ], "x-ms-correlation-request-id": [ - "58d2e0a9-1d2a-4b6f-a163-aac3d8bfb747" + "68943f2e-9b13-483e-9f6c-7bcec5ddde16" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102538Z:58d2e0a9-1d2a-4b6f-a163-aac3d8bfb747" + "CENTRALUSEUAP:20210418T134600Z:68943f2e-9b13-483e-9f6c-7bcec5ddde16" ], "Date": [ - "Thu, 16 Jan 2020 10:25:38 GMT" + "Sun, 18 Apr 2021 13:46:00 GMT" ], "Content-Length": [ - "7465" + "9073" ], "Content-Type": [ "application/json" @@ -25547,29 +24674,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:23:59.9882249Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f523afb7-f5e1-4aed-847e-79d396946400\",\r\n \"name\": \"f523afb7-f5e1-4aed-847e-79d396946400\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisksIrCompletion\",\r\n \"friendlyName\": \"Add disks complete initial replication\",\r\n \"state\": \"Failed\",\r\n \"stateDescription\": \"Failed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:45:49.8420958Z\",\r\n \"endTime\": \"2021-04-18T13:45:50Z\",\r\n \"allowedActions\": [\r\n \"Restart\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"name\": \"abdcc188-8389-4821-a210-bb9f2a7f7d00\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:07.7897998Z\",\r\n \"endTime\": \"2021-04-18T13:31:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"name\": \"344998ed-db76-4793-8bd4-1378eb8e6458\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:44.4871523Z\",\r\n \"endTime\": \"2021-04-18T12:56:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"name\": \"27d39e16-9448-4d83-b09f-45d2ad3267b0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:42:22.2728913Z\",\r\n \"endTime\": \"2021-04-18T12:42:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1022\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"name\": \"f5bd7cb0-7cda-43b9-88ab-e77fcf411b36\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:58.5046632Z\",\r\n \"endTime\": \"2021-04-18T12:42:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"name\": \"0193acec-beb6-4d00-a099-e327fe539b5b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:56.8038531Z\",\r\n \"endTime\": \"2021-04-18T12:40:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"targetObjectName\": \"TestA2APolicy11022\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"name\": \"22f1242a-5772-4bf7-be95-5e25fec159db\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:54.8057842Z\",\r\n \"endTime\": \"2021-04-18T12:40:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"name\": \"9a4f30a3-933a-41cb-a289-b6257950ef80\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:40:52.7185472Z\",\r\n \"endTime\": \"2021-04-18T12:40:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"targetObjectName\": \"A2APrimaryContainer1022\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"name\": \"db16f67e-74b1-4cd1-a0d3-4017a4cd1abc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:39:28.2735851Z\",\r\n \"endTime\": \"2021-04-18T12:40:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"name\": \"28cc20af-fa73-40e2-9dee-85f32aa243a4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T12:38:04.3401735Z\",\r\n \"endTime\": \"2021-04-18T12:39:10Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1022\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9jMWE0YzgyNy1jMGNmLTQxZWUtYWQ5Yi0xYzRlOWEyMzA0MTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec012647-1224-432b-8d6a-e3148f37f1e2-2020-01-16 10:25:48Z-Ps" + "79c9a9f3-ef17-4e40-87aa-5cf0d7e6b100" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166748577)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771548577)\\/\",\"ClientRequestId\":\"ec012647-1224-432b-8d6a-e3148f37f1e2-2020-01-16 10:25:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"psFNqGCGdpoUttC92LpHxDMIhw4asa/1eGDH9vf4ZXk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749106862)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353906862)\\/\",\"ClientRequestId\":\"e7026bbb-779c-4ca9-91e8-f9ee93191cb2-2021-04-18 13:31:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Yg6nYpULSX/1nMvTZkteViTcQHI9c3+SBu4AqA5NPyM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25580,38 +24707,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11668" + "11406" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "ec012647-1224-432b-8d6a-e3148f37f1e2-2020-01-16 10:25:48Z-Ps 1/16/2020 10:25:48 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ec012647-1224-432b-8d6a-e3148f37f1e2-2020-01-16 10:25:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "79c9a9f3-ef17-4e40-87aa-5cf0d7e6b100" ], "x-ms-correlation-request-id": [ - "182eb909-1b38-49f1-8f05-730dd10c8919" + "fb293320-23e9-47a9-b20e-315dc37bf427" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102549Z:182eb909-1b38-49f1-8f05-730dd10c8919" + "CENTRALUSEUAP:20210418T133147Z:fb293320-23e9-47a9-b20e-315dc37bf427" ], "Date": [ - "Thu, 16 Jan 2020 10:25:48 GMT" + "Sun, 18 Apr 2021 13:31:46 GMT" ], "Content-Length": [ - "7465" + "3084" ], "Content-Type": [ "application/json" @@ -25620,29 +24744,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:23:59.9882249Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CompleteInitialReplicationTask\",\r\n \"name\": \"CompleteInitialReplication\",\r\n \"startTime\": \"2021-04-18T13:31:45.1861354Z\",\r\n \"endTime\": \"2021-04-18T13:31:45.4461377Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationPreflightChecksTask\",\r\n \"name\": \"FailWorkflowOnIRFailureTask\",\r\n \"startTime\": \"2021-04-18T13:31:45.4461377Z\",\r\n \"endTime\": \"2021-04-18T13:31:45.546138Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationTask\",\r\n \"name\": \"ReplicaConfiguration\",\r\n \"startTime\": \"2021-04-18T13:31:45.546138Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete network and post-replication configuration\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9jMWE0YzgyNy1jMGNmLTQxZWUtYWQ5Yi0xYzRlOWEyMzA0MTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "faca5ceb-2e0e-4cc5-bd07-96c47b6e82d0-2020-01-16 10:25:59Z-Ps" + "f2d5a985-643d-43e2-985e-454db2a8bade" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166759237)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771559237)\\/\",\"ClientRequestId\":\"faca5ceb-2e0e-4cc5-bd07-96c47b6e82d0-2020-01-16 10:25:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kCllAJ59OP3WFKB1zieYY5zzGveVoixfQWnU/c02qRw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749117273)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353917273)\\/\",\"ClientRequestId\":\"dec58668-0107-4d25-8a07-a097b72f592f-2021-04-18 13:31:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"toNCYBABhO0FaFAt80oB3jv7s1mSUjkFYVEbdefKpGE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25653,38 +24777,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11666" + "11404" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "faca5ceb-2e0e-4cc5-bd07-96c47b6e82d0-2020-01-16 10:25:59Z-Ps 1/16/2020 10:25:59 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "faca5ceb-2e0e-4cc5-bd07-96c47b6e82d0-2020-01-16 10:25:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f2d5a985-643d-43e2-985e-454db2a8bade" ], "x-ms-correlation-request-id": [ - "39dafaa7-4151-48aa-b34e-895da4e7c0e7" + "3a27c381-8fca-4690-9235-12423967bc07" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102559Z:39dafaa7-4151-48aa-b34e-895da4e7c0e7" + "CENTRALUSEUAP:20210418T133157Z:3a27c381-8fca-4690-9235-12423967bc07" ], "Date": [ - "Thu, 16 Jan 2020 10:25:59 GMT" + "Sun, 18 Apr 2021 13:31:56 GMT" ], "Content-Length": [ - "7465" + "3129" ], "Content-Type": [ "application/json" @@ -25693,29 +24814,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:23:59.9882249Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"name\": \"c1a4c827-c0cf-41ee-ad9b-1c4e9a230418\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1d29d061-1c13-431a-994f-cf4767f3545a ActivityId: 27647df2-e822-46d3-9318-2a2cfbcaf9cf\",\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CompleteInitialReplicationTask\",\r\n \"name\": \"CompleteInitialReplication\",\r\n \"startTime\": \"2021-04-18T13:31:45.1861354Z\",\r\n \"endTime\": \"2021-04-18T13:31:45.4461377Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationPreflightChecksTask\",\r\n \"name\": \"FailWorkflowOnIRFailureTask\",\r\n \"startTime\": \"2021-04-18T13:31:45.4461377Z\",\r\n \"endTime\": \"2021-04-18T13:31:45.546138Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationTask\",\r\n \"name\": \"ReplicaConfiguration\",\r\n \"startTime\": \"2021-04-18T13:31:45.546138Z\",\r\n \"endTime\": \"2021-04-18T13:31:48.4611579Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete network and post-replication configuration\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2021-04-18T13:31:48.4611579Z\",\r\n \"endTime\": \"2021-04-18T13:31:48.696161Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:31:44.6737354Z\",\r\n \"endTime\": \"2021-04-18T13:31:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2avm1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99ef9c89-fd1c-4503-83fd-2910ce323066-2020-01-16 10:26:09Z-Ps" + "8eafd2fd-4225-4b11-9334-4fa300f8fde1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166769983)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771569983)\\/\",\"ClientRequestId\":\"99ef9c89-fd1c-4503-83fd-2910ce323066-2020-01-16 10:26:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bQtOLPS06zaOLJd86apxy8a0GA4zK+EpIO3ttnpD9PU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749117815)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353917815)\\/\",\"ClientRequestId\":\"d0a815e5-2dbd-4f3e-b450-b472099be081-2021-04-18 13:31:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xQR/xaGPNaOp0WAaBeLNdl+rP4CjIysFA2MO6mEIIDs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25726,38 +24847,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11665" + "11403" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "99ef9c89-fd1c-4503-83fd-2910ce323066-2020-01-16 10:26:09Z-Ps 1/16/2020 10:26:11 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "8eafd2fd-4225-4b11-9334-4fa300f8fde1 4/18/2021 1:31:58 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "99ef9c89-fd1c-4503-83fd-2910ce323066-2020-01-16 10:26:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8eafd2fd-4225-4b11-9334-4fa300f8fde1" ], "x-ms-correlation-request-id": [ - "a2d532f0-bef0-432b-9d33-3a3d3ee936bd" + "d4a0509f-390d-493a-bf23-9196e5b4de26" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102611Z:a2d532f0-bef0-432b-9d33-3a3d3ee936bd" + "CENTRALUSEUAP:20210418T133158Z:d4a0509f-390d-493a-bf23-9196e5b4de26" ], "Date": [ - "Thu, 16 Jan 2020 10:26:10 GMT" + "Sun, 18 Apr 2021 13:31:57 GMT" ], "Content-Length": [ - "7465" + "8299" ], "Content-Type": [ "application/json" @@ -25766,29 +24884,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:23:59.9882249Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 86,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2021-04-18T13:31:34.7608513Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2086,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:31:43.8800929Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5e4fd16-2619-479e-822e-f46ef732edb0-2020-01-16 10:26:21Z-Ps" + "05978f49-1069-44f3-932a-b887c82b5b62" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166781592)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771581592)\\/\",\"ClientRequestId\":\"c5e4fd16-2619-479e-822e-f46ef732edb0-2020-01-16 10:26:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0p1u59+6SSMJdBl8g0fADJfB0o1S3xsUiUQYZPsQyYY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749157052)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353957052)\\/\",\"ClientRequestId\":\"6eb715d3-0c4f-4145-8bde-ff5d71ea1c06-2021-04-18 13:32:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3LOiwBzfaYo/PV94AfM/6tZ0MzJM228tWVwfb++imcg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25798,39 +24916,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11663" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "c5e4fd16-2619-479e-822e-f46ef732edb0-2020-01-16 10:26:21Z-Ps 1/16/2020 10:26:21 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "05978f49-1069-44f3-932a-b887c82b5b62 4/18/2021 1:32:37 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c5e4fd16-2619-479e-822e-f46ef732edb0-2020-01-16 10:26:21Z-Ps" + "05978f49-1069-44f3-932a-b887c82b5b62" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11402" ], "x-ms-correlation-request-id": [ - "52a0fadb-cfc0-4958-a65e-697287293c2d" + "f29404fb-1ac1-4965-ad92-f1bfc58f1da5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102622Z:52a0fadb-cfc0-4958-a65e-697287293c2d" + "CENTRALUSEUAP:20210418T133237Z:f29404fb-1ac1-4965-ad92-f1bfc58f1da5" ], "Date": [ - "Thu, 16 Jan 2020 10:26:21 GMT" + "Sun, 18 Apr 2021 13:32:37 GMT" ], "Content-Length": [ - "7465" + "8299" ], "Content-Type": [ "application/json" @@ -25839,29 +24954,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.95654296875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:23:59.9882249Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 124,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:21:26.1595155Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 86,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2021-04-18T13:31:34.7608513Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2086,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:31:43.8800929Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3797d09-3c56-48b7-bb6a-2efd41d8c084-2020-01-16 10:26:32Z-Ps" + "e3a66c64-87ad-4d2f-90fa-72e22091673a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166792259)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771592259)\\/\",\"ClientRequestId\":\"f3797d09-3c56-48b7-bb6a-2efd41d8c084-2020-01-16 10:26:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Nud1lSq0xFwYx3XrGPql5/Ro9jHXkBwufh7GKrUm4bI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749167707)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353967707)\\/\",\"ClientRequestId\":\"cd3941da-13cf-431c-8f57-e88a2ffb2efe-2021-04-18 13:32:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pxviYSR2uMaYByACGrNMLJQxhv+Pc0ot9Mw7E5yPQS8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25872,38 +24987,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11662" + "11401" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "f3797d09-3c56-48b7-bb6a-2efd41d8c084-2020-01-16 10:26:32Z-Ps 1/16/2020 10:26:33 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "e3a66c64-87ad-4d2f-90fa-72e22091673a 4/18/2021 1:32:48 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f3797d09-3c56-48b7-bb6a-2efd41d8c084-2020-01-16 10:26:32Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e3a66c64-87ad-4d2f-90fa-72e22091673a" ], "x-ms-correlation-request-id": [ - "dcb372a7-1e87-45dc-bb60-17518624b291" + "c75274c7-2956-4f84-8bf6-c7a41db7614f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102633Z:dcb372a7-1e87-45dc-bb60-17518624b291" + "CENTRALUSEUAP:20210418T133248Z:c75274c7-2956-4f84-8bf6-c7a41db7614f" ], "Date": [ - "Thu, 16 Jan 2020 10:26:32 GMT" + "Sun, 18 Apr 2021 13:32:47 GMT" ], "Content-Length": [ - "7464" + "8299" ], "Content-Type": [ "application/json" @@ -25912,29 +25024,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 86,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2021-04-18T13:31:34.7608513Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2086,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:31:43.8800929Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46e985c1-fdc8-413c-93f3-e23d62aadd83-2020-01-16 10:26:43Z-Ps" + "ddebf1a5-617d-441d-9e19-67d7da3ba99c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166803926)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771603926)\\/\",\"ClientRequestId\":\"46e985c1-fdc8-413c-93f3-e23d62aadd83-2020-01-16 10:26:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oqsHhsN3HJ+2H+uVTfwu80u11y4WLsdiPYpP9qCiDeI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749178421)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353978421)\\/\",\"ClientRequestId\":\"e0328c2f-383a-41e7-8c36-d23f4e149449-2021-04-18 13:32:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4XhR9ntnGKfKJamNxCRcTm1NMjQNWAmFc7iRDK6LPeg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25945,38 +25057,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11661" + "11400" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "46e985c1-fdc8-413c-93f3-e23d62aadd83-2020-01-16 10:26:43Z-Ps 1/16/2020 10:26:44 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "ddebf1a5-617d-441d-9e19-67d7da3ba99c 4/18/2021 1:32:58 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "46e985c1-fdc8-413c-93f3-e23d62aadd83-2020-01-16 10:26:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ddebf1a5-617d-441d-9e19-67d7da3ba99c" ], "x-ms-correlation-request-id": [ - "9c03b366-a9b2-476a-8863-8096dbb1d647" + "f05c1f2b-ec6f-452a-8695-2da24a59ff0f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102644Z:9c03b366-a9b2-476a-8863-8096dbb1d647" + "CENTRALUSEUAP:20210418T133258Z:f05c1f2b-ec6f-452a-8695-2da24a59ff0f" ], "Date": [ - "Thu, 16 Jan 2020 10:26:43 GMT" + "Sun, 18 Apr 2021 13:32:58 GMT" ], "Content-Length": [ - "7464" + "8299" ], "Content-Type": [ "application/json" @@ -25985,29 +25094,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 86,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2021-04-18T13:31:34.7608513Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2086,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:31:43.8800929Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "000c5c99-5b2a-44b7-83ed-433e31a9c663-2020-01-16 10:26:54Z-Ps" + "03a9a46f-ce22-4760-bccb-40434d813254" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166814613)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771614613)\\/\",\"ClientRequestId\":\"000c5c99-5b2a-44b7-83ed-433e31a9c663-2020-01-16 10:26:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"68Vsv8g/thbYowcHIYcwOU2UXqz9UFQvh7bhUUVcmzI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749188945)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353988945)\\/\",\"ClientRequestId\":\"bd72ea40-a043-4a2a-8719-250c3b821e8f-2021-04-18 13:33:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Df1sI6ay9IC7Ui9ekzBlv9tyx0wirxtzNUMuiOzWDpI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26018,38 +25127,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11660" + "11399" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "000c5c99-5b2a-44b7-83ed-433e31a9c663-2020-01-16 10:26:54Z-Ps 1/16/2020 10:26:55 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "03a9a46f-ce22-4760-bccb-40434d813254 4/18/2021 1:33:09 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "000c5c99-5b2a-44b7-83ed-433e31a9c663-2020-01-16 10:26:54Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "03a9a46f-ce22-4760-bccb-40434d813254" ], "x-ms-correlation-request-id": [ - "5b6aadc7-4296-47d9-81d3-9700d2a554c9" + "75357173-7465-4d37-ba0f-26df993f589e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102655Z:5b6aadc7-4296-47d9-81d3-9700d2a554c9" + "CENTRALUSEUAP:20210418T133309Z:75357173-7465-4d37-ba0f-26df993f589e" ], "Date": [ - "Thu, 16 Jan 2020 10:26:55 GMT" + "Sun, 18 Apr 2021 13:33:09 GMT" ], "Content-Length": [ - "7464" + "8299" ], "Content-Type": [ "application/json" @@ -26058,29 +25164,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 86,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2086,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:31:43.8800929Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48a0c432-cfbb-4164-bf8c-47c0d05100d2-2020-01-16 10:27:05Z-Ps" + "d2ef30d0-9499-456c-81f3-52247ad1e7f4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166825256)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771625256)\\/\",\"ClientRequestId\":\"48a0c432-cfbb-4164-bf8c-47c0d05100d2-2020-01-16 10:27:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"F2vM7oYjXoz/QHRoeQlxHXPMncatDYbyECvpLZbg+xo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749199493)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619353999493)\\/\",\"ClientRequestId\":\"fa152dfc-3892-4a06-9221-fcb77f0d5e70-2021-04-18 13:33:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dAiVQFlcA/PcJwmqQ8a2nPpa9ngav9OkidbxlB4DAHA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26091,38 +25197,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11659" + "11398" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "48a0c432-cfbb-4164-bf8c-47c0d05100d2-2020-01-16 10:27:05Z-Ps 1/16/2020 10:27:05 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "d2ef30d0-9499-456c-81f3-52247ad1e7f4 4/18/2021 1:33:19 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "48a0c432-cfbb-4164-bf8c-47c0d05100d2-2020-01-16 10:27:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d2ef30d0-9499-456c-81f3-52247ad1e7f4" ], "x-ms-correlation-request-id": [ - "c0ba4fef-9e71-42a0-a809-8ab402738c66" + "89a5a6aa-c1c7-4eed-a228-fa8d67214a4f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102705Z:c0ba4fef-9e71-42a0-a809-8ab402738c66" + "CENTRALUSEUAP:20210418T133319Z:89a5a6aa-c1c7-4eed-a228-fa8d67214a4f" ], "Date": [ - "Thu, 16 Jan 2020 10:27:05 GMT" + "Sun, 18 Apr 2021 13:33:19 GMT" ], "Content-Length": [ - "7464" + "8283" ], "Content-Type": [ "application/json" @@ -26131,29 +25234,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5cbf0e2-331f-4de3-aefe-ffae69ce937f-2020-01-16 10:27:15Z-Ps" + "3b207b83-55f4-4994-9cd7-606967470b78" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166835923)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771635923)\\/\",\"ClientRequestId\":\"c5cbf0e2-331f-4de3-aefe-ffae69ce937f-2020-01-16 10:27:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"86Pcqsnix6+up+wXWFTN6NDeD2Qj62afEAPF/b7k/Xk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749210025)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354010025)\\/\",\"ClientRequestId\":\"87d71ad4-234f-4ba8-a3b0-ab2e189f2eeb-2021-04-18 13:33:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JAjSa3GkXC7WQ0T9FwX2F/8CDzbCSjQ1OanwJZ2eqnc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26164,38 +25267,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11656" + "11397" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "c5cbf0e2-331f-4de3-aefe-ffae69ce937f-2020-01-16 10:27:15Z-Ps 1/16/2020 10:27:16 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "3b207b83-55f4-4994-9cd7-606967470b78 4/18/2021 1:33:30 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c5cbf0e2-331f-4de3-aefe-ffae69ce937f-2020-01-16 10:27:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3b207b83-55f4-4994-9cd7-606967470b78" ], "x-ms-correlation-request-id": [ - "0061a134-53d9-4db0-a1e4-216410e1bae8" + "bed18103-156e-4fbd-9662-95e6f2387fa9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102716Z:0061a134-53d9-4db0-a1e4-216410e1bae8" + "CENTRALUSEUAP:20210418T133330Z:bed18103-156e-4fbd-9662-95e6f2387fa9" ], "Date": [ - "Thu, 16 Jan 2020 10:27:15 GMT" + "Sun, 18 Apr 2021 13:33:29 GMT" ], "Content-Length": [ - "7464" + "8283" ], "Content-Type": [ "application/json" @@ -26204,29 +25304,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fff8a10a-4a7b-428d-9703-5b6010235701-2020-01-16 10:27:26Z-Ps" + "a9c63d87-5ace-4ff4-bfad-668cf7262179" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166846536)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771646536)\\/\",\"ClientRequestId\":\"fff8a10a-4a7b-428d-9703-5b6010235701-2020-01-16 10:27:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UZFuy3oUhfgxBdnU0b5GEfhlkcP88BaoNnvHWBhRyz0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749220559)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354020559)\\/\",\"ClientRequestId\":\"f90da75e-c9e8-405f-9363-750ecc780693-2021-04-18 13:33:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EiozD7BqoPINSYaIPE7ko9qCbUIzfWtnwg1Ru7soPWo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26236,39 +25336,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11396" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "fff8a10a-4a7b-428d-9703-5b6010235701-2020-01-16 10:27:26Z-Ps 1/16/2020 10:27:27 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "a9c63d87-5ace-4ff4-bfad-668cf7262179 4/18/2021 1:33:40 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "fff8a10a-4a7b-428d-9703-5b6010235701-2020-01-16 10:27:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11655" + "a9c63d87-5ace-4ff4-bfad-668cf7262179" ], "x-ms-correlation-request-id": [ - "f46a7889-efda-4cba-9251-652a1fd98213" + "3e969e80-4e4b-46bb-ac41-b10c655f3cd5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102727Z:f46a7889-efda-4cba-9251-652a1fd98213" + "CENTRALUSEUAP:20210418T133340Z:3e969e80-4e4b-46bb-ac41-b10c655f3cd5" ], "Date": [ - "Thu, 16 Jan 2020 10:27:27 GMT" + "Sun, 18 Apr 2021 13:33:40 GMT" ], "Content-Length": [ - "7464" + "8283" ], "Content-Type": [ "application/json" @@ -26277,29 +25374,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d2ea1b6-c6cd-4b5a-8560-33a0566e2a7a-2020-01-16 10:27:37Z-Ps" + "31a3be1c-564b-4c98-a0f1-00f98692ab72" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166857925)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771657925)\\/\",\"ClientRequestId\":\"6d2ea1b6-c6cd-4b5a-8560-33a0566e2a7a-2020-01-16 10:27:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NxbP7m6eGbytlahaijMHyZJl6sXOhJr17r7uCSlAi0E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749231153)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354031153)\\/\",\"ClientRequestId\":\"ffb289f6-4164-4bb4-82da-7565322533ef-2021-04-18 13:33:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Y09ea2xquGc69z+IT0LmYhS/kRDBsNx2lAk4L/BqQqw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26310,38 +25407,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11654" + "11395" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "6d2ea1b6-c6cd-4b5a-8560-33a0566e2a7a-2020-01-16 10:27:37Z-Ps 1/16/2020 10:27:38 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "31a3be1c-564b-4c98-a0f1-00f98692ab72 4/18/2021 1:33:51 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "6d2ea1b6-c6cd-4b5a-8560-33a0566e2a7a-2020-01-16 10:27:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "31a3be1c-564b-4c98-a0f1-00f98692ab72" ], "x-ms-correlation-request-id": [ - "1093d3e2-5229-4a9b-b543-ccba35c9cdd3" + "1f35c581-3d17-4dde-9449-06fb321bf55b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102738Z:1093d3e2-5229-4a9b-b543-ccba35c9cdd3" + "CENTRALUSEUAP:20210418T133351Z:1f35c581-3d17-4dde-9449-06fb321bf55b" ], "Date": [ - "Thu, 16 Jan 2020 10:27:37 GMT" + "Sun, 18 Apr 2021 13:33:50 GMT" ], "Content-Length": [ - "7464" + "8283" ], "Content-Type": [ "application/json" @@ -26350,29 +25444,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b67839a-67f4-4c51-b468-4ff147b831e7-2020-01-16 10:27:48Z-Ps" + "a91c0cb5-06d3-4b09-9f19-7db9f205afe3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166868554)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771668554)\\/\",\"ClientRequestId\":\"7b67839a-67f4-4c51-b468-4ff147b831e7-2020-01-16 10:27:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jMmnkX1l/mnM0SxL4SF06CcGerZEy7q0NteU3JPNh7k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749241657)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354041657)\\/\",\"ClientRequestId\":\"e5ab124b-4be3-4f4a-bd86-6c4452692e29-2021-04-18 13:34:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"07nqEIEhtSh8RBBKh4/JTvI0AHa76SEqtnc4JjnXVfo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26383,38 +25477,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11653" + "11394" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "7b67839a-67f4-4c51-b468-4ff147b831e7-2020-01-16 10:27:48Z-Ps 1/16/2020 10:27:49 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "a91c0cb5-06d3-4b09-9f19-7db9f205afe3 4/18/2021 1:34:01 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7b67839a-67f4-4c51-b468-4ff147b831e7-2020-01-16 10:27:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a91c0cb5-06d3-4b09-9f19-7db9f205afe3" ], "x-ms-correlation-request-id": [ - "8175e03b-7940-4463-bbcb-a2d20e606b0d" + "4f995a23-19dd-4f7d-ad73-0beabe2e841e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102749Z:8175e03b-7940-4463-bbcb-a2d20e606b0d" + "CENTRALUSEUAP:20210418T133401Z:4f995a23-19dd-4f7d-ad73-0beabe2e841e" ], "Date": [ - "Thu, 16 Jan 2020 10:27:48 GMT" + "Sun, 18 Apr 2021 13:34:01 GMT" ], "Content-Length": [ - "7464" + "8283" ], "Content-Type": [ "application/json" @@ -26423,29 +25514,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9dfad85b-e5c0-4a40-b1eb-f5dcfdbfd159-2020-01-16 10:27:59Z-Ps" + "48bb5f2c-538a-4c6d-b8fc-6d1266efed10" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166879373)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771679373)\\/\",\"ClientRequestId\":\"9dfad85b-e5c0-4a40-b1eb-f5dcfdbfd159-2020-01-16 10:27:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IyEsQdJNawHPxlIf6095Jn2f5eO0d5lGN+qWnuHDFPA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749252197)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354052197)\\/\",\"ClientRequestId\":\"d4731598-db41-4549-ab81-ce715b1d4dc1-2021-04-18 13:34:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lMcYAzx5eJJi1L3XsAJvCkjEG48mdf8FagSpAcQTwlM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26456,38 +25547,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11652" + "11393" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "9dfad85b-e5c0-4a40-b1eb-f5dcfdbfd159-2020-01-16 10:27:59Z-Ps 1/16/2020 10:27:59 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "48bb5f2c-538a-4c6d-b8fc-6d1266efed10 4/18/2021 1:34:12 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9dfad85b-e5c0-4a40-b1eb-f5dcfdbfd159-2020-01-16 10:27:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "48bb5f2c-538a-4c6d-b8fc-6d1266efed10" ], "x-ms-correlation-request-id": [ - "8776b6e8-8c50-4429-b34e-d08629be6c33" + "42354171-1f64-471f-8383-3efb2ce6f583" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102800Z:8776b6e8-8c50-4429-b34e-d08629be6c33" + "CENTRALUSEUAP:20210418T133412Z:42354171-1f64-471f-8383-3efb2ce6f583" ], "Date": [ - "Thu, 16 Jan 2020 10:27:59 GMT" + "Sun, 18 Apr 2021 13:34:11 GMT" ], "Content-Length": [ - "7464" + "8283" ], "Content-Type": [ "application/json" @@ -26496,29 +25584,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9495bb4a-466b-4bd9-ad27-747dd02245e3-2020-01-16 10:28:10Z-Ps" + "5bad2c97-422b-4e4d-ae20-ef6f652cd7ee" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166890157)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771690157)\\/\",\"ClientRequestId\":\"9495bb4a-466b-4bd9-ad27-747dd02245e3-2020-01-16 10:28:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5oFNXxjkwtEBTHCD4AgB5z06chPxfb/rRtGy4q6fy74=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749262820)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354062820)\\/\",\"ClientRequestId\":\"9b021a22-a303-4c5f-9464-14b65c68fba3-2021-04-18 13:34:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1Sp0FbhKbvMKX0fO8xsrl6Qwtpv+VHXvGA/yFbibGgI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26529,38 +25617,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11650" + "11392" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "9495bb4a-466b-4bd9-ad27-747dd02245e3-2020-01-16 10:28:10Z-Ps 1/16/2020 10:28:10 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "5bad2c97-422b-4e4d-ae20-ef6f652cd7ee 4/18/2021 1:34:23 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9495bb4a-466b-4bd9-ad27-747dd02245e3-2020-01-16 10:28:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5bad2c97-422b-4e4d-ae20-ef6f652cd7ee" ], "x-ms-correlation-request-id": [ - "40c6c024-b968-46dd-9d13-cd3aef22d8fa" + "4d988589-45ff-47a5-8320-7ab7a6496a09" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102810Z:40c6c024-b968-46dd-9d13-cd3aef22d8fa" + "CENTRALUSEUAP:20210418T133423Z:4d988589-45ff-47a5-8320-7ab7a6496a09" ], "Date": [ - "Thu, 16 Jan 2020 10:28:09 GMT" + "Sun, 18 Apr 2021 13:34:22 GMT" ], "Content-Length": [ - "7464" + "8283" ], "Content-Type": [ "application/json" @@ -26569,29 +25654,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06436a08-4225-4d5c-b787-d7cb35b94627-2020-01-16 10:28:20Z-Ps" + "6638990d-7765-4275-aa78-c9e3abc04b9a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166900904)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771700904)\\/\",\"ClientRequestId\":\"06436a08-4225-4d5c-b787-d7cb35b94627-2020-01-16 10:28:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cenp2Gqed21vHK5dM2hP6Lcati446otzp6U+V04Ft7Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749273356)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354073356)\\/\",\"ClientRequestId\":\"cca44c36-6b6c-4c69-8e9e-7cab9d4c9d11-2021-04-18 13:34:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fti3DeF7lar2YwupvBaI+W9oIcb3dOsyeEsF+x7Gv/0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26602,38 +25687,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11649" + "11391" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "06436a08-4225-4d5c-b787-d7cb35b94627-2020-01-16 10:28:20Z-Ps 1/16/2020 10:28:21 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "6638990d-7765-4275-aa78-c9e3abc04b9a 4/18/2021 1:34:33 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "06436a08-4225-4d5c-b787-d7cb35b94627-2020-01-16 10:28:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6638990d-7765-4275-aa78-c9e3abc04b9a" ], "x-ms-correlation-request-id": [ - "e13deb01-09fb-402e-9d35-18b95cca92a1" + "26ecb045-5220-4a91-b597-007a091910f8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102821Z:e13deb01-09fb-402e-9d35-18b95cca92a1" + "CENTRALUSEUAP:20210418T133433Z:26ecb045-5220-4a91-b597-007a091910f8" ], "Date": [ - "Thu, 16 Jan 2020 10:28:21 GMT" + "Sun, 18 Apr 2021 13:34:33 GMT" ], "Content-Length": [ - "7464" + "8283" ], "Content-Type": [ "application/json" @@ -26642,29 +25724,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6bbd128-8ddd-4a95-a266-aa3847a03277-2020-01-16 10:28:31Z-Ps" + "fd9e327c-8d0a-459d-a109-cd83ee750cd3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166911666)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771711666)\\/\",\"ClientRequestId\":\"b6bbd128-8ddd-4a95-a266-aa3847a03277-2020-01-16 10:28:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mS1MNEShGP56Z6qOmpUPyF/n2BVu2xrNtd9eWf6XvCY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749283872)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354083872)\\/\",\"ClientRequestId\":\"9388b8c2-a712-4db0-8202-3701606fb71d-2021-04-18 13:34:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BrXtu/StMrIdBw911gS0FPgY8/rS/1FmgpRqW0LIG9U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26675,38 +25757,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11648" + "11390" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "b6bbd128-8ddd-4a95-a266-aa3847a03277-2020-01-16 10:28:31Z-Ps 1/16/2020 10:28:32 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "fd9e327c-8d0a-459d-a109-cd83ee750cd3 4/18/2021 1:34:44 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b6bbd128-8ddd-4a95-a266-aa3847a03277-2020-01-16 10:28:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "fd9e327c-8d0a-459d-a109-cd83ee750cd3" ], "x-ms-correlation-request-id": [ - "1cddc271-1d7a-4ec3-bb6e-d362bc3884d3" + "8d74e211-2c86-4d5b-9f22-892f6bc6700f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102832Z:1cddc271-1d7a-4ec3-bb6e-d362bc3884d3" + "CENTRALUSEUAP:20210418T133444Z:8d74e211-2c86-4d5b-9f22-892f6bc6700f" ], "Date": [ - "Thu, 16 Jan 2020 10:28:31 GMT" + "Sun, 18 Apr 2021 13:34:43 GMT" ], "Content-Length": [ - "7464" + "8283" ], "Content-Type": [ "application/json" @@ -26715,29 +25794,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9b523aa-df8b-4142-ba13-02d4bf0eeb98-2020-01-16 10:28:42Z-Ps" + "81681761-9ae2-4dcc-a877-e4c30b1b1938" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166922406)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771722406)\\/\",\"ClientRequestId\":\"b9b523aa-df8b-4142-ba13-02d4bf0eeb98-2020-01-16 10:28:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HurF3jiWwJepFL2fOd6ub+rwPnWs1sKJcywQbv7uqes=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749294411)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354094411)\\/\",\"ClientRequestId\":\"fc0e9363-931e-480d-b805-ac53eb91a2d0-2021-04-18 13:34:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8AUpLhgwBRa1WJVUS8/FHcroknllM/F574dPFnB4XD8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26748,38 +25827,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11647" + "11389" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "b9b523aa-df8b-4142-ba13-02d4bf0eeb98-2020-01-16 10:28:42Z-Ps 1/16/2020 10:28:42 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "81681761-9ae2-4dcc-a877-e4c30b1b1938 4/18/2021 1:34:54 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b9b523aa-df8b-4142-ba13-02d4bf0eeb98-2020-01-16 10:28:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "81681761-9ae2-4dcc-a877-e4c30b1b1938" ], "x-ms-correlation-request-id": [ - "f2afded0-ef58-44e2-94b2-c38292c2f38e" + "88f1bc6d-5239-43d6-9dfc-9e76a601b75b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102843Z:f2afded0-ef58-44e2-94b2-c38292c2f38e" + "CENTRALUSEUAP:20210418T133454Z:88f1bc6d-5239-43d6-9dfc-9e76a601b75b" ], "Date": [ - "Thu, 16 Jan 2020 10:28:42 GMT" + "Sun, 18 Apr 2021 13:34:54 GMT" ], "Content-Length": [ - "7464" + "8283" ], "Content-Type": [ "application/json" @@ -26788,29 +25864,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f8da97c-487b-4182-a4e7-8179c0b09688-2020-01-16 10:28:53Z-Ps" + "8c58c298-0c12-46d6-8270-def5c4c60424" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166933140)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771733140)\\/\",\"ClientRequestId\":\"0f8da97c-487b-4182-a4e7-8179c0b09688-2020-01-16 10:28:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vUG2mC7LEW4//8dD6hKAogRudJHIT1qNSx2aurTdatY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749304985)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354104985)\\/\",\"ClientRequestId\":\"d5aa9079-dd2f-4e6e-af12-e5109cec6773-2021-04-18 13:35:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3cWO/eSrjOgjv9I6/pcbIKt6pbvwYHO/AibRJ+LBgo0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26820,39 +25896,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11395" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "0f8da97c-487b-4182-a4e7-8179c0b09688-2020-01-16 10:28:53Z-Ps 1/16/2020 10:28:53 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "8c58c298-0c12-46d6-8270-def5c4c60424 4/18/2021 1:35:05 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "0f8da97c-487b-4182-a4e7-8179c0b09688-2020-01-16 10:28:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11646" + "8c58c298-0c12-46d6-8270-def5c4c60424" ], "x-ms-correlation-request-id": [ - "08d8ea18-e634-4cff-a94c-0dad5c10119f" + "f92c1dec-217e-4d33-b548-f7602ad37b49" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102853Z:08d8ea18-e634-4cff-a94c-0dad5c10119f" + "CENTRALUSEUAP:20210418T133505Z:f92c1dec-217e-4d33-b548-f7602ad37b49" ], "Date": [ - "Thu, 16 Jan 2020 10:28:53 GMT" + "Sun, 18 Apr 2021 13:35:05 GMT" ], "Content-Length": [ - "7464" + "8283" ], "Content-Type": [ "application/json" @@ -26861,29 +25934,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db7facc0-10d1-4c3d-9905-5b752c07e9d2-2020-01-16 10:29:03Z-Ps" + "9669d6ec-a6ce-4a7f-9487-33e35748d235" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166943866)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771743866)\\/\",\"ClientRequestId\":\"db7facc0-10d1-4c3d-9905-5b752c07e9d2-2020-01-16 10:29:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mZEhn12Z+zKbYE/8ze9Iwn+rfM9x//yZv5ShlNU5j8M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749315514)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354115514)\\/\",\"ClientRequestId\":\"ef8a55f3-f0b8-416f-b241-c8c2859b4c44-2021-04-18 13:35:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tJN3PKJvWuQ5stxOmwz/jkD0pQOcg8BxVXDi/jaa9fE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26894,38 +25967,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11645" + "11394" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "db7facc0-10d1-4c3d-9905-5b752c07e9d2-2020-01-16 10:29:03Z-Ps 1/16/2020 10:29:05 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "9669d6ec-a6ce-4a7f-9487-33e35748d235 4/18/2021 1:35:15 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "db7facc0-10d1-4c3d-9905-5b752c07e9d2-2020-01-16 10:29:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9669d6ec-a6ce-4a7f-9487-33e35748d235" ], "x-ms-correlation-request-id": [ - "060f946a-2055-403b-b99a-baa1a59fcd0a" + "ac4ff6eb-7f78-4202-9b25-a8694bde6a94" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102905Z:060f946a-2055-403b-b99a-baa1a59fcd0a" + "CENTRALUSEUAP:20210418T133515Z:ac4ff6eb-7f78-4202-9b25-a8694bde6a94" ], "Date": [ - "Thu, 16 Jan 2020 10:29:04 GMT" + "Sun, 18 Apr 2021 13:35:15 GMT" ], "Content-Length": [ - "7464" + "8283" ], "Content-Type": [ "application/json" @@ -26934,29 +26004,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20d97dbe-8a2c-416e-a6b8-c6aec008e0ab-2020-01-16 10:29:15Z-Ps" + "dc57523a-c668-47e8-89d9-b791011be32b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166955747)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771755747)\\/\",\"ClientRequestId\":\"20d97dbe-8a2c-416e-a6b8-c6aec008e0ab-2020-01-16 10:29:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lR9XrI0CVVvgjP0S3zbHhZ+Nuk4M5xXDU7/qCfZGR80=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749326031)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354126031)\\/\",\"ClientRequestId\":\"7f49c220-6c5b-492a-a6ff-8152bd73655a-2021-04-18 13:35:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yWBTJA6lmGval/ZN4Q4wbOvORiC4fybsX6k+p1U045o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26967,38 +26037,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11644" + "11393" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "20d97dbe-8a2c-416e-a6b8-c6aec008e0ab-2020-01-16 10:29:15Z-Ps 1/16/2020 10:29:16 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "dc57523a-c668-47e8-89d9-b791011be32b 4/18/2021 1:35:26 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "20d97dbe-8a2c-416e-a6b8-c6aec008e0ab-2020-01-16 10:29:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "dc57523a-c668-47e8-89d9-b791011be32b" ], "x-ms-correlation-request-id": [ - "a829252a-3a97-482f-bb9e-b47f03fd7589" + "efa1de6c-18c4-4e6e-9f8a-65026af49883" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102916Z:a829252a-3a97-482f-bb9e-b47f03fd7589" + "CENTRALUSEUAP:20210418T133526Z:efa1de6c-18c4-4e6e-9f8a-65026af49883" ], "Date": [ - "Thu, 16 Jan 2020 10:29:15 GMT" + "Sun, 18 Apr 2021 13:35:25 GMT" ], "Content-Length": [ - "7464" + "8283" ], "Content-Type": [ "application/json" @@ -27007,29 +26074,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c8519c3-2bfd-4577-8e74-c23200daec81-2020-01-16 10:29:26Z-Ps" + "f06d6258-8cdd-414b-b07b-c8e287549f51" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166966387)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771766387)\\/\",\"ClientRequestId\":\"2c8519c3-2bfd-4577-8e74-c23200daec81-2020-01-16 10:29:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"62ZzGLEgbZxDlm2CfN4qIX4du2evJVvIRVWLLUyXydE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749336580)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354136580)\\/\",\"ClientRequestId\":\"01b32735-790c-448b-b544-856cdc326724-2021-04-18 13:35:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BUPyIeMzYeuCI/dC7/oTSiekqb3G3xQbhp2Y1cZByDo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27040,38 +26107,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11641" + "11392" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "2c8519c3-2bfd-4577-8e74-c23200daec81-2020-01-16 10:29:26Z-Ps 1/16/2020 10:29:26 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "f06d6258-8cdd-414b-b07b-c8e287549f51 4/18/2021 1:35:36 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2c8519c3-2bfd-4577-8e74-c23200daec81-2020-01-16 10:29:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f06d6258-8cdd-414b-b07b-c8e287549f51" ], "x-ms-correlation-request-id": [ - "4b95024e-2683-4e2d-a0b6-f6a76d78f591" + "cb3d53e5-353f-4b1a-89a7-9c48d855f0ee" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102926Z:4b95024e-2683-4e2d-a0b6-f6a76d78f591" + "CENTRALUSEUAP:20210418T133536Z:cb3d53e5-353f-4b1a-89a7-9c48d855f0ee" ], "Date": [ - "Thu, 16 Jan 2020 10:29:25 GMT" + "Sun, 18 Apr 2021 13:35:36 GMT" ], "Content-Length": [ - "7464" + "8283" ], "Content-Type": [ "application/json" @@ -27080,29 +26144,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d6945fd-520a-4d80-a0c8-2580746697d6-2020-01-16 10:29:37Z-Ps" + "6b1835da-877f-4478-86e6-54f41dc8dd91" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166977043)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771777043)\\/\",\"ClientRequestId\":\"9d6945fd-520a-4d80-a0c8-2580746697d6-2020-01-16 10:29:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qz37V02OysnEPRvYxH1CkIIwDMrj9820jAOw/m3Glp8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749347123)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354147123)\\/\",\"ClientRequestId\":\"836706e3-dabd-46f5-8ba8-c4f0421be699-2021-04-18 13:35:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3DfpJV726KLOsrbNsSXsnPp6eu74pl+hEvzMStk7S+c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27113,38 +26177,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11637" + "11391" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "9d6945fd-520a-4d80-a0c8-2580746697d6-2020-01-16 10:29:37Z-Ps 1/16/2020 10:29:38 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "6b1835da-877f-4478-86e6-54f41dc8dd91 4/18/2021 1:35:47 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9d6945fd-520a-4d80-a0c8-2580746697d6-2020-01-16 10:29:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6b1835da-877f-4478-86e6-54f41dc8dd91" ], "x-ms-correlation-request-id": [ - "20c4b34b-14b0-4377-9f9d-aefef0d20394" + "1d08e0a7-c0c9-4fcf-bcd2-174dd6316663" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102938Z:20c4b34b-14b0-4377-9f9d-aefef0d20394" + "CENTRALUSEUAP:20210418T133547Z:1d08e0a7-c0c9-4fcf-bcd2-174dd6316663" ], "Date": [ - "Thu, 16 Jan 2020 10:29:38 GMT" + "Sun, 18 Apr 2021 13:35:47 GMT" ], "Content-Length": [ - "7464" + "8283" ], "Content-Type": [ "application/json" @@ -27153,29 +26214,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d43c029-fa3f-4af9-9bbc-74f99cc228a8-2020-01-16 10:29:48Z-Ps" + "821ad6da-af61-41b4-84a0-361a19943140" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166988302)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771788302)\\/\",\"ClientRequestId\":\"3d43c029-fa3f-4af9-9bbc-74f99cc228a8-2020-01-16 10:29:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9Qd6zSN4ziHxDN4BE8A5NS7+ZRgYX49atoHhmFjmoUA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749357632)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354157632)\\/\",\"ClientRequestId\":\"90a6d1ef-e83e-4963-9e1c-2b6b90ae2c7d-2021-04-18 13:35:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZnmPMogZsoq2qMQ7/bEgNQ/5F0iSey1r0mbIB0nmqBw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27186,38 +26247,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11633" + "11390" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "3d43c029-fa3f-4af9-9bbc-74f99cc228a8-2020-01-16 10:29:48Z-Ps 1/16/2020 10:29:48 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "821ad6da-af61-41b4-84a0-361a19943140 4/18/2021 1:35:57 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3d43c029-fa3f-4af9-9bbc-74f99cc228a8-2020-01-16 10:29:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "821ad6da-af61-41b4-84a0-361a19943140" ], "x-ms-correlation-request-id": [ - "251a41be-2927-473a-b60c-bf07e5df9015" + "34ddbca5-6bd1-44f3-8bea-9c7928723663" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102948Z:251a41be-2927-473a-b60c-bf07e5df9015" + "CENTRALUSEUAP:20210418T133557Z:34ddbca5-6bd1-44f3-8bea-9c7928723663" ], "Date": [ - "Thu, 16 Jan 2020 10:29:48 GMT" + "Sun, 18 Apr 2021 13:35:57 GMT" ], "Content-Length": [ - "7464" + "8283" ], "Content-Type": [ "application/json" @@ -27226,29 +26284,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e29ca158-565b-499f-84d9-6b822c819ad4-2020-01-16 10:29:58Z-Ps" + "1f7e2ddd-ee30-4535-878c-15ebc4cac7e4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579166998934)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771798934)\\/\",\"ClientRequestId\":\"e29ca158-565b-499f-84d9-6b822c819ad4-2020-01-16 10:29:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8z1gUMtz4eRTGi6K88JPkRBvD8vGVK3mhu+pkIJ6Edk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749368118)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354168118)\\/\",\"ClientRequestId\":\"dbe393f0-8baa-417b-92c1-5ff5b1fcd4fc-2021-04-18 13:36:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Yp3aZC3/pg4jEnPXaTttOtt9Xe9vUvpp8boXqaonJ54=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27259,38 +26317,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11632" + "11389" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "e29ca158-565b-499f-84d9-6b822c819ad4-2020-01-16 10:29:58Z-Ps 1/16/2020 10:29:59 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "1f7e2ddd-ee30-4535-878c-15ebc4cac7e4 4/18/2021 1:36:08 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e29ca158-565b-499f-84d9-6b822c819ad4-2020-01-16 10:29:58Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1f7e2ddd-ee30-4535-878c-15ebc4cac7e4" ], "x-ms-correlation-request-id": [ - "9a86d503-33d2-4ddf-acd2-6a07e2db9130" + "b340f491-d75a-4c04-9b3b-2d0a619e48f2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102959Z:9a86d503-33d2-4ddf-acd2-6a07e2db9130" + "CENTRALUSEUAP:20210418T133608Z:b340f491-d75a-4c04-9b3b-2d0a619e48f2" ], "Date": [ - "Thu, 16 Jan 2020 10:29:59 GMT" + "Sun, 18 Apr 2021 13:36:07 GMT" ], "Content-Length": [ - "7464" + "8283" ], "Content-Type": [ "application/json" @@ -27299,29 +26354,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:25:30.5054834Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "312f69f0-61c4-4a7f-8b79-808f3384881f-2020-01-16 10:30:09Z-Ps" + "ba209022-8dcc-4691-85b7-65c9090a0ef5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167009486)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771809486)\\/\",\"ClientRequestId\":\"312f69f0-61c4-4a7f-8b79-808f3384881f-2020-01-16 10:30:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CoGDzR8AMBAZOEwijlhwfHQgfF2wliReeyLfuGawrTs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749378629)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354178629)\\/\",\"ClientRequestId\":\"dd9caed6-c1f2-4bfe-bc91-efda6e2e20a1-2021-04-18 13:36:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ei+RsGTj7AU3NOfboLwtqVE3Zkc81pV2DnoSgSFaKqI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27332,38 +26387,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11634" + "11388" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "312f69f0-61c4-4a7f-8b79-808f3384881f-2020-01-16 10:30:09Z-Ps 1/16/2020 10:30:09 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "ba209022-8dcc-4691-85b7-65c9090a0ef5 4/18/2021 1:36:18 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "312f69f0-61c4-4a7f-8b79-808f3384881f-2020-01-16 10:30:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ba209022-8dcc-4691-85b7-65c9090a0ef5" ], "x-ms-correlation-request-id": [ - "3a000ae9-2809-45f7-a81a-587aa85d4815" + "e25e7ead-ae4c-4683-b175-eefe132bbd10" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103009Z:3a000ae9-2809-45f7-a81a-587aa85d4815" + "CENTRALUSEUAP:20210418T133618Z:e25e7ead-ae4c-4683-b175-eefe132bbd10" ], "Date": [ - "Thu, 16 Jan 2020 10:30:09 GMT" + "Sun, 18 Apr 2021 13:36:18 GMT" ], "Content-Length": [ - "7463" + "8283" ], "Content-Type": [ "application/json" @@ -27372,29 +26424,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:30:01.943279Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d49c55c-80a8-4ffa-b44d-75b00779f276-2020-01-16 10:30:20Z-Ps" + "b1eea2c9-e584-4a89-8dea-99d78491913e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167020127)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771820127)\\/\",\"ClientRequestId\":\"6d49c55c-80a8-4ffa-b44d-75b00779f276-2020-01-16 10:30:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vhKQ7x2+fjQXBKLniTFoLGY8kcdg8ajPKLF6U4ZE+/k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749390368)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354190368)\\/\",\"ClientRequestId\":\"0a0aa9b9-9681-4e67-920a-5ced76b9689a-2021-04-18 13:36:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WzloT+9abKnTAaDFsulxYXkiiivP62bZpQcLhnW0zEI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27404,39 +26456,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11387" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "6d49c55c-80a8-4ffa-b44d-75b00779f276-2020-01-16 10:30:20Z-Ps 1/16/2020 10:30:20 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "b1eea2c9-e584-4a89-8dea-99d78491913e 4/18/2021 1:36:30 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "6d49c55c-80a8-4ffa-b44d-75b00779f276-2020-01-16 10:30:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11633" + "b1eea2c9-e584-4a89-8dea-99d78491913e" ], "x-ms-correlation-request-id": [ - "488f086f-97cd-4d3e-b805-1e8b85d0bdb4" + "40d351d2-5522-4fc7-91c1-db781989c5a8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103020Z:488f086f-97cd-4d3e-b805-1e8b85d0bdb4" + "CENTRALUSEUAP:20210418T133630Z:40d351d2-5522-4fc7-91c1-db781989c5a8" ], "Date": [ - "Thu, 16 Jan 2020 10:30:20 GMT" + "Sun, 18 Apr 2021 13:36:30 GMT" ], "Content-Length": [ - "7463" + "8283" ], "Content-Type": [ "application/json" @@ -27445,29 +26494,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.1416015625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:30:01.943279Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 128,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:26:30.0744651Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6214a791-26c2-49fc-a445-1073a9f50ea7-2020-01-16 10:30:30Z-Ps" + "bb5b849f-0a16-4974-8ce5-0fcd10e7291f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167030780)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771830780)\\/\",\"ClientRequestId\":\"6214a791-26c2-49fc-a445-1073a9f50ea7-2020-01-16 10:30:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"K5bS7xT4X28zSba604xbeMj4jE+LG0Rq+DWyGYu8w8U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749401182)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354201182)\\/\",\"ClientRequestId\":\"f332218a-280b-4630-a2de-76c0905a1196-2021-04-18 13:36:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ab7F1hBLxq19n/j1v/SRCiYp++bxVEak1H7JdrEf3wk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27478,38 +26527,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11631" + "11386" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "6214a791-26c2-49fc-a445-1073a9f50ea7-2020-01-16 10:30:30Z-Ps 1/16/2020 10:30:32 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "bb5b849f-0a16-4974-8ce5-0fcd10e7291f 4/18/2021 1:36:41 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "6214a791-26c2-49fc-a445-1073a9f50ea7-2020-01-16 10:30:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bb5b849f-0a16-4974-8ce5-0fcd10e7291f" ], "x-ms-correlation-request-id": [ - "78a31d3a-7f2a-4fe0-adf0-c873affc6b52" + "027ddf35-eef3-4e94-aa70-7e305f6ed63a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103032Z:78a31d3a-7f2a-4fe0-adf0-c873affc6b52" + "CENTRALUSEUAP:20210418T133641Z:027ddf35-eef3-4e94-aa70-7e305f6ed63a" ], "Date": [ - "Thu, 16 Jan 2020 10:30:32 GMT" + "Sun, 18 Apr 2021 13:36:41 GMT" ], "Content-Length": [ - "8400" + "8283" ], "Content-Type": [ "application/json" @@ -27518,29 +26564,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Warning\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitProviderErrorOnReplica\",\r\n \"errorType\": \"8020\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"153039\",\r\n \"summaryMessage\": \"One or more disk(s) are available for protection\",\r\n \"errorMessage\": \"One or more disk(s) are available for add disks protection.\",\r\n \"possibleCauses\": \"One or more disk(s) were recently added to the virtual machine or initialized.\",\r\n \"recommendedAction\": \"\\n 1. To protect the disk(s). Go to Replicated items > VM > Disks > click on unprotected disk >Enable Replication.\\n 2. To dismiss the warning. Go to Replicated items > VM > Click on the dismiss alert under overview section.\\n Refer https://aka.ms/a2a_error_153039 for details.\\n \",\r\n \"creationTimeUtc\": \"2020-01-16T10:30:29.1540827Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"3:8020\",\r\n \"customerResolvability\": \"Allowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": [\r\n {\r\n \"diskLunId\": 6\r\n }\r\n ],\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.869140625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:30:01.943279Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 366,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:30:28.1793171Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d941cde3-726e-4202-9a82-1cade3b09e0c-2020-01-16 10:42:22Z-Ps" + "238f0f97-df4b-476d-9cc8-e03cff625274" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167742115)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772542115)\\/\",\"ClientRequestId\":\"d941cde3-726e-4202-9a82-1cade3b09e0c-2020-01-16 10:42:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LkPMT7ej+UoWaXyqfxBh3nAGUaRbTY8Sr/adwDAKJ1w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749413014)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354213014)\\/\",\"ClientRequestId\":\"5d724967-19bc-47c1-8200-a0ed36566f59-2021-04-18 13:36:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"r0q933dry9JIaIUSJpN0b7F6WETZGeun+BuP89+0VCg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27551,38 +26597,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11610" + "11385" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "d941cde3-726e-4202-9a82-1cade3b09e0c-2020-01-16 10:42:22Z-Ps 1/16/2020 10:42:22 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "238f0f97-df4b-476d-9cc8-e03cff625274 4/18/2021 1:36:53 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d941cde3-726e-4202-9a82-1cade3b09e0c-2020-01-16 10:42:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "238f0f97-df4b-476d-9cc8-e03cff625274" ], "x-ms-correlation-request-id": [ - "6e71db17-1214-4c99-bdcf-69096a9fd766" + "806da92b-6eec-4ae5-aee6-92272db17600" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104222Z:6e71db17-1214-4c99-bdcf-69096a9fd766" + "CENTRALUSEUAP:20210418T133653Z:806da92b-6eec-4ae5-aee6-92272db17600" ], "Date": [ - "Thu, 16 Jan 2020 10:42:22 GMT" + "Sun, 18 Apr 2021 13:36:52 GMT" ], "Content-Length": [ - "10307" + "8283" ], "Content-Type": [ "application/json" @@ -27591,29 +26634,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Warning\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitProviderErrorOnReplica\",\r\n \"errorType\": \"8021\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"153040\",\r\n \"summaryMessage\": \"Addition of one or more disk(s) for protection failed.\",\r\n \"errorMessage\": \"The latest recovery point is not consistent with the current set of the protected disk(s).\",\r\n \"possibleCauses\": \"The add disk operation has failed.\",\r\n \"recommendedAction\": \"\\n If the add disk operation has failed, please retry the failed job.\\n Refer https://aka.ms/a2a_error_153040 for details.\\n \",\r\n \"creationTimeUtc\": \"2020-01-16T10:41:52.6056084Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"3:8021\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitProviderErrorOnReplica\",\r\n \"errorType\": \"8022\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"153041\",\r\n \"summaryMessage\": \"The add disk initial replication has failed.\",\r\n \"errorMessage\": \"The add disk initial replication has failed for disks: (a2aDataDisk102).\",\r\n \"possibleCauses\": \"Replication of new added disk has failed.\",\r\n \"recommendedAction\": \"\\n Try removing the disks with failed initial replication status. \\n Refer https://aka.ms/a2a_error_153041 for details.\\n \",\r\n \"creationTimeUtc\": \"2020-01-16T10:41:52.6056084Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"3:8022\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/disks/a2aDataDisk102\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aDataDisk102-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aDataDisk102\",\r\n \"diskCapacityInBytes\": 21474836480,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cachedisk1\",\r\n \"diskType\": \"Data\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.0,\r\n \"diskState\": \"InitialReplicationFailed\",\r\n \"allowedDiskLevelOperation\": [\r\n \"RemoveDisk\"\r\n ],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aDataDisk102\",\r\n \"tfoDiskName\": \"a2aDataDisk102-ASRtest\"\r\n },\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.134765625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:42:14.6118584Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 366,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:30:28.1793171Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b298588-adbf-4a0b-9625-3716c4fcffff-2020-01-16 10:48:40Z-Ps" + "b52c17a4-72a8-4b0c-964d-b141d0a50f71" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579168120672)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772920672)\\/\",\"ClientRequestId\":\"0b298588-adbf-4a0b-9625-3716c4fcffff-2020-01-16 10:48:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vQck06SqnHm67raBuMdVwfxY7FLnpyQwWjcyIi/biiw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618749423786)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354223786)\\/\",\"ClientRequestId\":\"7c18a6c1-ef26-4c9c-9b0a-54347ff7da84-2021-04-18 13:37:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"L7vVhTJhMa6RsPiMJCjREqQ199O5GCnNtgA/1LlUCbg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27624,38 +26667,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11576" + "11384" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "0b298588-adbf-4a0b-9625-3716c4fcffff-2020-01-16 10:48:40Z-Ps 1/16/2020 10:48:41 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "b52c17a4-72a8-4b0c-964d-b141d0a50f71 4/18/2021 1:37:04 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "0b298588-adbf-4a0b-9625-3716c4fcffff-2020-01-16 10:48:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b52c17a4-72a8-4b0c-964d-b141d0a50f71" ], "x-ms-correlation-request-id": [ - "44b71183-e8da-47ce-964b-a4aa2da882d0" + "b4c8a2a6-5699-43d7-83f7-8b6d0477868c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104841Z:44b71183-e8da-47ce-964b-a4aa2da882d0" + "CENTRALUSEUAP:20210418T133704Z:b4c8a2a6-5699-43d7-83f7-8b6d0477868c" ], "Date": [ - "Thu, 16 Jan 2020 10:48:40 GMT" + "Sun, 18 Apr 2021 13:37:03 GMT" ], "Content-Length": [ - "8401" + "8283" ], "Content-Type": [ "application/json" @@ -27664,32 +26704,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102\",\r\n \"name\": \"a2aVM102\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM102\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationRecoveryServicesProviders/a82d4d70-7237-5f93-a33f-e4cabd00e278\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer102\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer102\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Warning\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM102'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-01-16T10:19:40.4841853Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitProviderErrorOnReplica\",\r\n \"errorType\": \"8020\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"153039\",\r\n \"summaryMessage\": \"One or more disk(s) are available for protection\",\r\n \"errorMessage\": \"One or more disk(s) are available for add disks protection.\",\r\n \"possibleCauses\": \"One or more disk(s) were recently added to the virtual machine or initialized.\",\r\n \"recommendedAction\": \"\\n 1. To protect the disk(s). Go to Replicated items > VM > Disks > click on unprotected disk >Enable Replication.\\n 2. To dismiss the warning. Go to Replicated items > VM > Click on the dismiss alert under overview section.\\n Refer https://aka.ms/a2a_error_153039 for details.\\n \",\r\n \"creationTimeUtc\": \"2020-01-16T10:48:36.8896297Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"errorId\": \"3:8020\",\r\n \"customerResolvability\": \"Allowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationPolicies/TestA2APolicy1102\",\r\n \"policyFriendlyName\": \"TestA2APolicy1102\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/virtualmachines/a2avm102\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"b802b95f-d3f8-4e03-a6f4-61ebef002b89\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2ed40d49-13a8-4804-b952-08c82961e39f\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": [\r\n {\r\n \"diskLunId\": 6\r\n }\r\n ],\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm102/providers/microsoft.compute/disks/a2avm102_osdisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102/providers/Microsoft.Compute/disks/a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cache102\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.134765625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941\",\r\n \"tfoDiskName\": \"a2aVM102_OsDisk_1_01faa4f7264141cc933222ddc1d3c941-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM102\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"947877df-cf38-5ae2-bce8-f35b2965319d\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Network/networkInterfaces/a2aVM102\",\r\n \"vMSubnetName\": \"a2aVM102\",\r\n \"vMNetworkName\": \"a2avm102\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg102/providers/microsoft.network/virtualnetworks/a2arecoverynetwork102\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-01-16T10:48:17.3823112Z\",\r\n \"agentVersion\": \"9.31.5449.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"121e6abf-b388-4de9-91e2-4d6a70b7dccb\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 911,\r\n \"lastRpoCalculatedTime\": \"2020-01-16T10:44:33.3175358Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM102-test\",\r\n \"recoveryAzureGeneration\": \"V1\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aRecoveryFabric102/replicationProtectionContainers/A2ARecoveryContainer102\",\r\n \"eventCorrelationId\": \"5cb78337-c395-40eb-a10b-8d304bf04228\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/disks/a2aDataDisk102?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9kaXNrcy9hMmFEYXRhRGlzazEwMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 20\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac564d06-c656-4d70-a4ec-6340896c9f61" + "a1bd2619-f417-4f10-95f7-b0b9147cb850" ], "Accept-Language": [ "en-US" ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749434333)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354234333)\\/\",\"ClientRequestId\":\"aa122b9c-c57d-406c-9bc0-f51a2dd3d204-2021-04-18 13:37:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bLU44wmoeAgcaPmLw5gTVg9lSk7J521qK8OW0hFomJU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "152" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27699,70 +26736,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/DiskOperations/b9e842fa-a655-47aa-b8f2-e381d0982a53?monitor=true&api-version=2019-07-01" - ], - "Retry-After": [ - "2" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/DiskOperations/b9e842fa-a655-47aa-b8f2-e381d0982a53?api-version=2019-07-01" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999" + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-served-by": [ - "e099ad47-a7c5-433a-8028-6775dd247eb4_132146166431443482" - ], "x-ms-request-id": [ - "b9e842fa-a655-47aa-b8f2-e381d0982a53" + "a1bd2619-f417-4f10-95f7-b0b9147cb850 4/18/2021 1:37:14 PM" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-client-request-id": [ + "a1bd2619-f417-4f10-95f7-b0b9147cb850" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11383" ], "x-ms-correlation-request-id": [ - "dd22072c-b4bd-4c3f-b93e-ca596dc84b11" + "a792fbae-acdb-42ba-8c2e-8007e7149a60" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101954Z:dd22072c-b4bd-4c3f-b93e-ca596dc84b11" - ], - "X-Content-Type-Options": [ - "nosniff" + "CENTRALUSEUAP:20210418T133714Z:a792fbae-acdb-42ba-8c2e-8007e7149a60" ], "Date": [ - "Thu, 16 Jan 2020 10:19:53 GMT" + "Sun, 18 Apr 2021 13:37:14 GMT" ], "Content-Length": [ - "247" + "8283" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aDataDisk102\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 20,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 1.4208984375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:33:05.0703339Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 73,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:33:10.8569858Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/DiskOperations/b9e842fa-a655-47aa-b8f2-e381d0982a53?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL0Rpc2tPcGVyYXRpb25zL2I5ZTg0MmZhLWE2NTUtNDdhYS1iOGYyLWUzODFkMDk4MmE1Mz9hcGktdmVyc2lvbj0yMDE5LTA3LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d4842249-c9a3-4f36-915e-89cb6f934929" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749446408)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354246408)\\/\",\"ClientRequestId\":\"e9259e24-983e-40a9-ab15-88c34bed3c2d-2021-04-18 13:37:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"h5X+MdijhtLuWapEnS9h7qNqSoWIRgzXT7Gp+NH6ApM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27772,61 +26806,67 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;49963,Microsoft.Compute/GetOperation30Min;398786" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11382" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-served-by": [ - "e099ad47-a7c5-433a-8028-6775dd247eb4_132146166431443482" - ], "x-ms-request-id": [ - "30a60ffb-ada9-4cad-af6c-bbf05db6c829" + "d4842249-c9a3-4f36-915e-89cb6f934929 4/18/2021 1:37:26 PM" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "x-ms-client-request-id": [ + "d4842249-c9a3-4f36-915e-89cb6f934929" ], "x-ms-correlation-request-id": [ - "b858db3f-cdfb-4154-b5ec-e90a5b6851f4" + "5fdf35e3-2dd6-4ff5-b284-ffda72d5fbfc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101956Z:b858db3f-cdfb-4154-b5ec-e90a5b6851f4" - ], - "X-Content-Type-Options": [ - "nosniff" + "CENTRALUSEUAP:20210418T133726Z:5fdf35e3-2dd6-4ff5-b284-ffda72d5fbfc" ], "Date": [ - "Thu, 16 Jan 2020 10:19:56 GMT" + "Sun, 18 Apr 2021 13:37:26 GMT" ], "Content-Length": [ - "1011" + "9260" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-01-16T15:49:53.9172345+05:30\",\r\n \"endTime\": \"2020-01-16T15:49:54.0891414+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"a2aDataDisk102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/disks/a2aDataDisk102\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 20,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-01-16T15:49:53.9172345+05:30\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 21474836480,\r\n \"uniqueId\": \"92fcd4fc-ad2c-4432-a140-0813268b6bc5\"\r\n }\r\n }\r\n },\r\n \"name\": \"b9e842fa-a655-47aa-b8f2-e381d0982a53\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Warning\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitProviderErrorOnReplica\",\r\n \"errorType\": \"8020\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"153039\",\r\n \"summaryMessage\": \"One or more disk(s) are available for protection\",\r\n \"errorMessage\": \"One or more disk(s) are available for add disks protection.\",\r\n \"possibleCauses\": \"One or more disk(s) were recently added to the virtual machine or initialized.\",\r\n \"recommendedAction\": \"\\n 1. To protect the disk(s). Go to Replicated items > VM > Disks > click on unprotected disk >Enable Replication.\\n 2. To dismiss the warning. Go to Replicated items > VM > Click on the dismiss alert under overview section.\\n Refer https://aka.ms/a2a_error_153039 for details.\\n \",\r\n \"creationTimeUtc\": \"2021-04-18T13:37:25.3891577Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"3:8020\",\r\n \"customerResolvability\": \"Allowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": [\r\n {\r\n \"diskLunId\": 6,\r\n \"diskAutoProtectionStatus\": \"Disabled\"\r\n }\r\n ],\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 2.59326171875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:37:03.1242643Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 327,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:37:24.889589Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/disks/a2aDataDisk102?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9kaXNrcy9hMmFEYXRhRGlzazEwMj9hcGktdmVyc2lvbj0yMDE5LTA3LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "e8de1e8a-2aaf-4174-9961-3da3c097a6df" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749980807)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354780807)\\/\",\"ClientRequestId\":\"cfd34455-2ffd-4fc6-9073-eea6f9b5427e-2021-04-18 13:46:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/5At+GzcukVSsSHy2c9oHEa2k81ZIUm2lTY/wNKm9r4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27836,61 +26876,67 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;4999,Microsoft.Compute/LowCostGet30Min;39995" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11453" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-served-by": [ - "e099ad47-a7c5-433a-8028-6775dd247eb4_132146166431443482" - ], "x-ms-request-id": [ - "dda39193-dbaf-4773-ae56-e06b6dde87d7" + "e8de1e8a-2aaf-4174-9961-3da3c097a6df 4/18/2021 1:46:21 PM" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "x-ms-client-request-id": [ + "e8de1e8a-2aaf-4174-9961-3da3c097a6df" ], "x-ms-correlation-request-id": [ - "57be1912-245b-4301-b943-72b260605b58" + "4089b2c8-e12a-4779-8102-86f137eabcbe" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T101956Z:57be1912-245b-4301-b943-72b260605b58" - ], - "X-Content-Type-Options": [ - "nosniff" + "CENTRALUSEUAP:20210418T134621Z:4089b2c8-e12a-4779-8102-86f137eabcbe" ], "Date": [ - "Thu, 16 Jan 2020 10:19:56 GMT" + "Sun, 18 Apr 2021 13:46:20 GMT" ], "Content-Length": [ - "786" + "11137" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aDataDisk102\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/disks/a2aDataDisk102\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 20,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2020-01-16T15:49:53.9172345+05:30\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 21474836480,\r\n \"uniqueId\": \"92fcd4fc-ad2c-4432-a140-0813268b6bc5\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Warning\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitProviderErrorOnReplica\",\r\n \"errorType\": \"8021\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"153040\",\r\n \"summaryMessage\": \"Addition of one or more disk(s) for protection failed.\",\r\n \"errorMessage\": \"The latest recovery point is not consistent with the current set of the protected disk(s).\",\r\n \"possibleCauses\": \"The add disk operation has failed.\",\r\n \"recommendedAction\": \"\\n If the add disk operation has failed, please retry the failed job.\\n Refer https://aka.ms/a2a_error_153040 for details.\\n \",\r\n \"creationTimeUtc\": \"2021-04-18T13:45:48.8647412Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"3:8021\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitProviderErrorOnReplica\",\r\n \"errorType\": \"8022\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"153041\",\r\n \"summaryMessage\": \"The add disk initial replication has failed.\",\r\n \"errorMessage\": \"The add disk initial replication has failed for disks: (a2aDataDisk1022).\",\r\n \"possibleCauses\": \"Replication of new added disk has failed.\",\r\n \"recommendedAction\": \"\\n Try removing the disks with failed initial replication status. \\n Refer https://aka.ms/a2a_error_153041 for details.\\n \",\r\n \"creationTimeUtc\": \"2021-04-18T13:45:48.8647412Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"3:8022\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/disks/a2aDataDisk1022\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aDataDisk1022-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aDataDisk1022\",\r\n \"diskCapacityInBytes\": 21474836480,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cachedisk1\",\r\n \"diskType\": \"Data\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.0,\r\n \"diskState\": \"InitialReplicationFailed\",\r\n \"allowedDiskLevelOperation\": [\r\n \"RemoveDisk\"\r\n ],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aDataDisk1022\",\r\n \"tfoDiskName\": \"a2aDataDisk1022-ASRtest\"\r\n },\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.3486328125,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T13:45:07.9211775Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 327,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T13:37:24.889589Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/operations/c001d836-1123-4dbd-86dd-8473933b23d8?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYzAwMWQ4MzYtMTEyMy00ZGJkLTg2ZGQtODQ3MzkzM2IyM2Q4P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c8a1c776-e443-44cf-9bb0-f0d6c90241fc" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618751783692)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356583692)\\/\",\"ClientRequestId\":\"eec007f9-e612-417c-af8d-7f6afcd7749f-2021-04-18 14:16:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PNCVN7NrpPixjcmd5vi8X27wGJUBFfw6r/NLthMC5xo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27900,70 +26946,70 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11650" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5bd10dd7-c2b9-4087-a25b-74374b35ce67" + "c8a1c776-e443-44cf-9bb0-f0d6c90241fc 4/18/2021 2:16:24 PM" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "X-Content-Type-Options": [ + "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "x-ms-client-request-id": [ + "c8a1c776-e443-44cf-9bb0-f0d6c90241fc" ], "x-ms-correlation-request-id": [ - "1f482b44-ac3f-46fd-9b03-00ff4e9b595b" + "c7332a06-b097-4352-9aca-4f45d3efaa4f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T102030Z:1f482b44-ac3f-46fd-9b03-00ff4e9b595b" - ], - "X-Content-Type-Options": [ - "nosniff" + "CENTRALUSEUAP:20210418T141624Z:c7332a06-b097-4352-9aca-4f45d3efaa4f" ], "Date": [ - "Thu, 16 Jan 2020 10:20:29 GMT" + "Sun, 18 Apr 2021 14:16:23 GMT" ], "Content-Length": [ - "184" + "9261" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-01-16T15:49:58.5060782+05:30\",\r\n \"endTime\": \"2020-01-16T15:50:05.9904305+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"c001d836-1123-4dbd-86dd-8473933b23d8\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022\",\r\n \"name\": \"a2aVM1022\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1022\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationRecoveryServicesProviders/70ae84a2-f242-5701-a0a2-fbed1dec0bed\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1022\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1022\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Warning\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1022'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T13:31:49.175125Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n },\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitProviderErrorOnReplica\",\r\n \"errorType\": \"8020\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"Replication\",\r\n \"errorCode\": \"153039\",\r\n \"summaryMessage\": \"One or more disk(s) are available for protection\",\r\n \"errorMessage\": \"One or more disk(s) are available for add disks protection.\",\r\n \"possibleCauses\": \"One or more disk(s) were recently added to the virtual machine or initialized.\",\r\n \"recommendedAction\": \"\\n 1. To protect the disk(s). Go to Replicated items > VM > Disks > click on unprotected disk >Enable Replication.\\n 2. To dismiss the warning. Go to Replicated items > VM > Click on the dismiss alert under overview section.\\n Refer https://aka.ms/a2a_error_153039 for details.\\n \",\r\n \"creationTimeUtc\": \"2021-04-18T14:16:15.0284272Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"errorId\": \"3:8020\",\r\n \"customerResolvability\": \"Allowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationPolicies/TestA2APolicy11022\",\r\n \"policyFriendlyName\": \"TestA2APolicy11022\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/virtualmachines/a2avm1022\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"8ac1affc-d457-4422-9891-021fc63e59f6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"35d028c4-4419-45aa-a0df-0e262ac5895c\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": [\r\n {\r\n \"diskLunId\": 6,\r\n \"diskAutoProtectionStatus\": \"Disabled\"\r\n }\r\n ],\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1022/providers/microsoft.compute/disks/a2avm1022_osdisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022/providers/Microsoft.Compute/disks/a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cache1022\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.0107421875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a\",\r\n \"tfoDiskName\": \"a2aVM1022_OsDisk_1_b59c02a5472248b1aa6d4fb04290bb5a-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1022\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"94a09d1d-8670-5719-8be9-337b48d010e0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/networkInterfaces/a2aVM1022\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Network/virtualNetworks/a2aVM1022\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1022/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1022\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1022\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1022\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T14:15:14.9593927Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T12:41:00Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"6445376d-83b4-4a71-918f-5b8c63a282e2\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2568,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T14:14:45.9579251Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1022-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aRecoveryFabric1022/replicationProtectionContainers/A2ARecoveryContainer1022\",\r\n \"eventCorrelationId\": \"6d54c71a-7bd1-4de5-894f-0b65aea2b012\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cachedisk1?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvY2FjaGVkaXNrMT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/disks/a2aDataDisk1022?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZGlza3MvYTJhRGF0YURpc2sxMDIyP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 20\r\n },\r\n \"location\": \"eastus\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9d801e7d-cb9a-4f58-96b5-51cc63bb5300" + "b809f2fd-8ee2-4d80-acab-8a766b871186" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "98" + "152" ] }, "ResponseHeaders": { @@ -27974,59 +27020,72 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/westus/asyncoperations/2a7f0ac1-a978-45b0-8b26-2b4600b21b0e?monitor=true&api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/DiskOperations/e2808d04-755f-4267-900f-8c17e9a7af72?monitor=true&api-version=2020-09-30" ], "Retry-After": [ - "17" + "2" ], - "x-ms-request-id": [ - "2a7f0ac1-a978-45b0-8b26-2b4600b21b0e" + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/DiskOperations/e2808d04-755f-4267-900f-8c17e9a7af72?api-version=2020-09-30" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateUpdateDisks3Min;999,Microsoft.Compute/CreateUpdateDisks30Min;7999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "62a21b9e-d69d-42f4-a01f-82d1993d8df3_132397762509968072" + ], + "x-ms-request-id": [ + "e2808d04-755f-4267-900f-8c17e9a7af72" + ], "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-correlation-request-id": [ - "4d1f1d08-8dcd-4592-9c68-1b69bd7caf2c" + "8f103914-45db-4b27-836b-b911f2506772" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103039Z:4d1f1d08-8dcd-4592-9c68-1b69bd7caf2c" + "CENTRALUSEUAP:20210418T133202Z:8f103914-45db-4b27-836b-b911f2506772" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 10:30:39 GMT" + "Sun, 18 Apr 2021 13:32:01 GMT" + ], + "Content-Length": [ + "248" ], "Content-Type": [ - "text/plain; charset=utf-8" + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"a2aDataDisk1022\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 20,\r\n \"provisioningState\": \"Updating\",\r\n \"isArmResource\": true\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/westus/asyncoperations/2a7f0ac1-a978-45b0-8b26-2b4600b21b0e?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy8yYTdmMGFjMS1hOTc4LTQ1YjAtOGIyNi0yYjQ2MDBiMjFiMGU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/DiskOperations/e2808d04-755f-4267-900f-8c17e9a7af72?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL0Rpc2tPcGVyYXRpb25zL2UyODA4ZDA0LTc1NWYtNDI2Ny05MDBmLThjMTdlOWE3YWY3Mj9hcGktdmVyc2lvbj0yMDIwLTA5LTMw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b809f2fd-8ee2-4d80-acab-8a766b871186" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -28036,60 +27095,64 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/westus/asyncoperations/2a7f0ac1-a978-45b0-8b26-2b4600b21b0e?monitor=true&api-version=2017-10-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "34ea27e8-fc4a-4d33-a6bf-c5fd3785303f" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;49997,Microsoft.Compute/GetOperation30Min;399995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "62a21b9e-d69d-42f4-a01f-82d1993d8df3_132397762509968072" + ], + "x-ms-request-id": [ + "11670a07-a09e-43d9-bee3-c7dd5146faba" + ], "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11987" ], "x-ms-correlation-request-id": [ - "9c8c8a67-1eaa-4a63-b70e-d8cbd7e7f826" + "bb0a2c1e-0f39-4421-804b-f0296e6bb57e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103056Z:9c8c8a67-1eaa-4a63-b70e-d8cbd7e7f826" + "CENTRALUSEUAP:20210418T133204Z:bb0a2c1e-0f39-4421-804b-f0296e6bb57e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 10:30:56 GMT" + "Sun, 18 Apr 2021 13:32:04 GMT" + ], + "Content-Length": [ + "1054" ], "Content-Type": [ - "text/plain; charset=utf-8" + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"startTime\": \"2021-04-18T19:02:02.0293466+05:30\",\r\n \"endTime\": \"2021-04-18T19:02:02.1699652+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"output\": {\r\n \"name\": \"a2aDataDisk1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/disks/a2aDataDisk1022\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 20,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-18T19:02:02.0293466+05:30\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 21474836480,\r\n \"uniqueId\": \"d262e747-89fc-43b1-b3db-9d9ad2697886\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n }\r\n },\r\n \"name\": \"e2808d04-755f-4267-900f-8c17e9a7af72\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/westus/asyncoperations/2a7f0ac1-a978-45b0-8b26-2b4600b21b0e?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy8yYTdmMGFjMS1hOTc4LTQ1YjAtOGIyNi0yYjQ2MDBiMjFiMGU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/disks/a2aDataDisk1022?api-version=2020-09-30", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvZGlza3MvYTJhRGF0YURpc2sxMDIyP2FwaS12ZXJzaW9uPTIwMjAtMDktMzA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b809f2fd-8ee2-4d80-acab-8a766b871186" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -28099,60 +27162,4547 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/westus/asyncoperations/2a7f0ac1-a978-45b0-8b26-2b4600b21b0e?monitor=true&api-version=2017-10-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "8e2d0ea1-38b9-4cfb-9639-89e28dde98ae" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;14997,Microsoft.Compute/LowCostGet30Min;119979" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-served-by": [ + "62a21b9e-d69d-42f4-a01f-82d1993d8df3_132397762509968072" + ], + "x-ms-request-id": [ + "61139db3-c4ed-4bcd-a2b3-bee9a4d1a8aa" + ], "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11986" ], "x-ms-correlation-request-id": [ - "be1cde55-fd7d-4507-b844-64e163e55bf8" + "53c680af-5acf-41e8-a7d8-c697e028ebc5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103100Z:be1cde55-fd7d-4507-b844-64e163e55bf8" + "CENTRALUSEUAP:20210418T133204Z:53c680af-5acf-41e8-a7d8-c697e028ebc5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 16 Jan 2020 10:30:59 GMT" + "Sun, 18 Apr 2021 13:32:04 GMT" + ], + "Content-Length": [ + "829" ], "Content-Type": [ - "text/plain; charset=utf-8" + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aDataDisk1022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/disks/a2aDataDisk1022\",\r\n \"type\": \"Microsoft.Compute/disks\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"creationData\": {\r\n \"createOption\": \"Empty\"\r\n },\r\n \"diskSizeGB\": 20,\r\n \"diskIOPSReadWrite\": 500,\r\n \"diskMBpsReadWrite\": 60,\r\n \"encryption\": {\r\n \"type\": \"EncryptionAtRestWithPlatformKey\"\r\n },\r\n \"timeCreated\": \"2021-04-18T19:02:02.0293466+05:30\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"diskState\": \"Unattached\",\r\n \"diskSizeBytes\": 21474836480,\r\n \"uniqueId\": \"d262e747-89fc-43b1-b3db-9d9ad2697886\",\r\n \"networkAccessPolicy\": \"AllowAll\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/458ed324-df34-4ae8-a386-1d4539bc2087?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNDU4ZWQzMjQtZGYzNC00YWU4LWEzODYtMWQ0NTM5YmMyMDg3P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a790487c-53b4-4539-b751-b5003f2c2dfe" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29994" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "20f4a77b-9753-4146-99ce-c1f06c2c36ad" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "fa37b3dd-944c-4fdc-b84e-04c35ef8656f" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T133236Z:fa37b3dd-944c-4fdc-b84e-04c35ef8656f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 13:32:36 GMT" + ], + "Content-Length": [ + "183" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-04-18T19:02:05.758155+05:30\",\r\n \"endTime\": \"2021-04-18T19:02:11.7113252+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"458ed324-df34-4ae8-a386-1d4539bc2087\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cachedisk1?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2NhY2hlZGlzazE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ea774fd9-59d3-4e29-9f40-bdab97141ea0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "98" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/8bc59593-f490-4de3-b4c7-5fadbc2fcef6?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "8bc59593-f490-4de3-b4c7-5fadbc2fcef6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "c6b0c847-7b9c-4695-9a95-bb109d186f15" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T133731Z:c6b0c847-7b9c-4695-9a95-bb109d186f15" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 13:37:31 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/8bc59593-f490-4de3-b4c7-5fadbc2fcef6?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy84YmM1OTU5My1mNDkwLTRkZTMtYjRjNy01ZmFkYmMyZmNlZjY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "95730371-441b-4f55-b7a3-31be16604aa5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "a00a6661-3439-4a42-bcf8-601e43521d01" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T133748Z:a00a6661-3439-4a42-bcf8-601e43521d01" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 13:37:48 GMT" + ], + "Content-Length": [ + "1040" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cachedisk1\",\r\n \"name\": \"cachedisk1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-18T13:37:30.2218773Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-18T13:37:30.2218773Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-04-18T13:37:30.1124989Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cachedisk1.blob.core.windows.net/\",\r\n \"queue\": \"https://cachedisk1.queue.core.windows.net/\",\r\n \"table\": \"https://cachedisk1.table.core.windows.net/\",\r\n \"file\": \"https://cachedisk1.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022/addDisks?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyL2FkZERpc2tzP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"vmDisks\": [],\r\n \"vmManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/disks/a2aDataDisk1022\",\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cachedisk1\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1022\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99877972-f22c-45fe-93e1-3f067f6767df" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749469177)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354269177)\\/\",\"ClientRequestId\":\"3cecf3f3-6d83-49ae-92e6-c07f3e95b083-2021-04-18 13:37:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iF4lKSyR+l5KvIsYmmAN4g1hSrdfNj+G0BRAOwayYNM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "751" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022/operationresults/bed2d556-c4ee-48c5-a355-f5f762b18abd?api-version=2021-02-10" + ], + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationOperationStatus/bed2d556-c4ee-48c5-a355-f5f762b18abd?api-version=2021-02-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "99877972-f22c-45fe-93e1-3f067f6767df" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "b6f812ca-05b0-4d4b-8421-6ea5090ab1b9" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T133749Z:b6f812ca-05b0-4d4b-8421-6ea5090ab1b9" + ], + "Date": [ + "Sun, 18 Apr 2021 13:37:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9iZWQyZDU1Ni1jNGVlLTQ4YzUtYTM1NS1mNWY3NjJiMThhYmQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "99877972-f22c-45fe-93e1-3f067f6767df" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749469944)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354269944)\\/\",\"ClientRequestId\":\"5da6e695-224a-491b-b9b5-791ef2dd1e11-2021-04-18 13:37:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iazQ7LkkHq5gIloYT2sy2SKq6UH3MgPNjKjzAWWqggg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11381" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "99877972-f22c-45fe-93e1-3f067f6767df" + ], + "x-ms-correlation-request-id": [ + "63ded6cd-a85d-4273-a41e-df991cc6a69a" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T133750Z:63ded6cd-a85d-4273-a41e-df991cc6a69a" + ], + "Date": [ + "Sun, 18 Apr 2021 13:37:49 GMT" + ], + "Content-Length": [ + "2599" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:37:49.8435426Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9iZWQyZDU1Ni1jNGVlLTQ4YzUtYTM1NS1mNWY3NjJiMThhYmQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d326e379-4228-4b5b-9e88-6432cdaf768c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749470354)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354270354)\\/\",\"ClientRequestId\":\"4bf31d0f-2fba-4f4c-b16c-0872edc9bdab-2021-04-18 13:37:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tyrQLOzlB1T4vX7jDXsHHHC+9nvAzaU5mFt3xELrgqM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11380" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d326e379-4228-4b5b-9e88-6432cdaf768c" + ], + "x-ms-correlation-request-id": [ + "8858823d-630a-4074-a4b9-51acf00cc9bf" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T133750Z:8858823d-630a-4074-a4b9-51acf00cc9bf" + ], + "Date": [ + "Sun, 18 Apr 2021 13:37:50 GMT" + ], + "Content-Length": [ + "2599" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:37:49.8435426Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9iZWQyZDU1Ni1jNGVlLTQ4YzUtYTM1NS1mNWY3NjJiMThhYmQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8c56b907-7229-47e6-bfe0-ea1f639bb232" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749490723)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354290723)\\/\",\"ClientRequestId\":\"a8abdb71-3842-47d9-aeff-9dc2f92b4ab8-2021-04-18 13:38:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"h7vasaBox8q9ZvsptIrY94puKuaZQHtOakn656WlDXg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11379" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "8c56b907-7229-47e6-bfe0-ea1f639bb232" + ], + "x-ms-correlation-request-id": [ + "ca7ef466-559a-4ce3-aca1-2c33a3f727e0" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T133810Z:ca7ef466-559a-4ce3-aca1-2c33a3f727e0" + ], + "Date": [ + "Sun, 18 Apr 2021 13:38:09 GMT" + ], + "Content-Length": [ + "2615" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.6686014Z\",\r\n \"endTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9iZWQyZDU1Ni1jNGVlLTQ4YzUtYTM1NS1mNWY3NjJiMThhYmQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f5fe1ffc-1b4e-43e0-abf8-2f9345bdd5c6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749511120)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354311120)\\/\",\"ClientRequestId\":\"a35018c4-4da2-4f81-b6e7-4533a6a5ee7d-2021-04-18 13:38:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yitQ+gI8GLvaa/mvi3FzmUSurkj21PE+ZdwPsUsmA/g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11378" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "f5fe1ffc-1b4e-43e0-abf8-2f9345bdd5c6" + ], + "x-ms-correlation-request-id": [ + "4d72fa8c-e865-4f43-acd1-64347cf3b66b" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T133831Z:4d72fa8c-e865-4f43-acd1-64347cf3b66b" + ], + "Date": [ + "Sun, 18 Apr 2021 13:38:31 GMT" + ], + "Content-Length": [ + "2615" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.6686014Z\",\r\n \"endTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9iZWQyZDU1Ni1jNGVlLTQ4YzUtYTM1NS1mNWY3NjJiMThhYmQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c242eed9-6c1e-464e-a545-da04b38becc7" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749531507)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354331507)\\/\",\"ClientRequestId\":\"277030ac-62a3-448d-8384-6bcf173b54c3-2021-04-18 13:38:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WwW9MmY5RMb0BIfG4v8JO72t1oq151bFJPuTtTSv51E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11377" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c242eed9-6c1e-464e-a545-da04b38becc7" + ], + "x-ms-correlation-request-id": [ + "1042e069-3586-4018-a51d-dcd5c8e01197" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T133851Z:1042e069-3586-4018-a51d-dcd5c8e01197" + ], + "Date": [ + "Sun, 18 Apr 2021 13:38:51 GMT" + ], + "Content-Length": [ + "2631" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.6686014Z\",\r\n \"endTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"endTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9iZWQyZDU1Ni1jNGVlLTQ4YzUtYTM1NS1mNWY3NjJiMThhYmQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3f4e7899-e132-4ccd-8570-668be0364293" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749551901)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354351901)\\/\",\"ClientRequestId\":\"8c46aa4a-73bb-4a7c-99ae-c5cabf6f797d-2021-04-18 13:39:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KdblBX84vAb2Dlo6lYNzd4hWgp4yLa5nAs3bufroETo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11376" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "3f4e7899-e132-4ccd-8570-668be0364293" + ], + "x-ms-correlation-request-id": [ + "6917dd71-5fd9-4d48-ba8b-be415d10d52e" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T133912Z:6917dd71-5fd9-4d48-ba8b-be415d10d52e" + ], + "Date": [ + "Sun, 18 Apr 2021 13:39:11 GMT" + ], + "Content-Length": [ + "2631" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.6686014Z\",\r\n \"endTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"endTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9iZWQyZDU1Ni1jNGVlLTQ4YzUtYTM1NS1mNWY3NjJiMThhYmQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "34f28e34-26bb-4991-ad6f-8d6491ccd555" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749572312)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354372312)\\/\",\"ClientRequestId\":\"0de5f0ea-948c-4721-b524-a4452cc83d91-2021-04-18 13:39:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4ZFm4XU3Xo0XqGPgDodpFDOBVgn/cRl/ggxNG9R6ER4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11375" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "34f28e34-26bb-4991-ad6f-8d6491ccd555" + ], + "x-ms-correlation-request-id": [ + "3a0d7279-3ce5-4ffd-93e3-3671729a3066" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T133932Z:3a0d7279-3ce5-4ffd-93e3-3671729a3066" + ], + "Date": [ + "Sun, 18 Apr 2021 13:39:32 GMT" + ], + "Content-Length": [ + "2631" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.6686014Z\",\r\n \"endTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"endTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9iZWQyZDU1Ni1jNGVlLTQ4YzUtYTM1NS1mNWY3NjJiMThhYmQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe96db57-fb8b-4f23-b891-40556ee96043" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749592703)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354392703)\\/\",\"ClientRequestId\":\"09cecd97-b186-44f8-9afb-993473dcbf81-2021-04-18 13:39:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xKg/oL3M2fooJ/b8GoulURBJyytUj9MCWVVzL6FhJ6k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11374" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "fe96db57-fb8b-4f23-b891-40556ee96043" + ], + "x-ms-correlation-request-id": [ + "9be77067-974f-40c5-a16b-e3c74bd770b0" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T133952Z:9be77067-974f-40c5-a16b-e3c74bd770b0" + ], + "Date": [ + "Sun, 18 Apr 2021 13:39:52 GMT" + ], + "Content-Length": [ + "2631" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.6686014Z\",\r\n \"endTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"endTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9iZWQyZDU1Ni1jNGVlLTQ4YzUtYTM1NS1mNWY3NjJiMThhYmQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "91a0a469-1ae7-423a-9781-73570e9c5744" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749613076)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354413076)\\/\",\"ClientRequestId\":\"ff3a882e-b0ad-4075-9fb8-0c2c598f6aa6-2021-04-18 13:40:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nbI5p6Hjh95nOkwHY/DByX4TaaPIC9yAf6TE7SWwV7Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11426" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "91a0a469-1ae7-423a-9781-73570e9c5744" + ], + "x-ms-correlation-request-id": [ + "11911af4-9598-44fb-8e84-ba94a86886a6" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134013Z:11911af4-9598-44fb-8e84-ba94a86886a6" + ], + "Date": [ + "Sun, 18 Apr 2021 13:40:13 GMT" + ], + "Content-Length": [ + "2631" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.6686014Z\",\r\n \"endTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"endTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9iZWQyZDU1Ni1jNGVlLTQ4YzUtYTM1NS1mNWY3NjJiMThhYmQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9340375e-72c9-4a5b-959a-938fa87172f0" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749633508)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354433508)\\/\",\"ClientRequestId\":\"2706f64b-4063-4750-aa06-6d392bb31a98-2021-04-18 13:40:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ee3wjhigR1+CC50eLf/R9KJkcEvnwnwPBJq0YTBGAr0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11425" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "9340375e-72c9-4a5b-959a-938fa87172f0" + ], + "x-ms-correlation-request-id": [ + "98845be2-85a2-432f-854d-10b079e8912b" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134033Z:98845be2-85a2-432f-854d-10b079e8912b" + ], + "Date": [ + "Sun, 18 Apr 2021 13:40:33 GMT" + ], + "Content-Length": [ + "2631" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.6686014Z\",\r\n \"endTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"endTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9iZWQyZDU1Ni1jNGVlLTQ4YzUtYTM1NS1mNWY3NjJiMThhYmQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "15c57d1d-4620-4704-88b0-512236af0698" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749653921)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354453921)\\/\",\"ClientRequestId\":\"b80d2a52-f8ad-4fd6-9137-c9ab65924075-2021-04-18 13:40:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"N5hHG5BguMRVUXA04kXWRKiebxHdzmpVT48wPkRinBo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11424" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "15c57d1d-4620-4704-88b0-512236af0698" + ], + "x-ms-correlation-request-id": [ + "c7d18705-5c43-4aad-811b-ed8d23893a06" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134054Z:c7d18705-5c43-4aad-811b-ed8d23893a06" + ], + "Date": [ + "Sun, 18 Apr 2021 13:40:53 GMT" + ], + "Content-Length": [ + "2631" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.6686014Z\",\r\n \"endTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"endTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9iZWQyZDU1Ni1jNGVlLTQ4YzUtYTM1NS1mNWY3NjJiMThhYmQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "37c372b1-78dd-4bcf-a3cc-6557a9e2f27e" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749674328)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354474328)\\/\",\"ClientRequestId\":\"5d3d55b8-51ff-44b5-a575-7b93cae93a9d-2021-04-18 13:41:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Dw0D8XHXigmFIM41Y98hHMiSJef+yp9WT9c19nuJNNU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11423" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "37c372b1-78dd-4bcf-a3cc-6557a9e2f27e" + ], + "x-ms-correlation-request-id": [ + "e6ef2edb-b915-4730-9c0b-3eaedf16d326" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134114Z:e6ef2edb-b915-4730-9c0b-3eaedf16d326" + ], + "Date": [ + "Sun, 18 Apr 2021 13:41:14 GMT" + ], + "Content-Length": [ + "2631" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.6686014Z\",\r\n \"endTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"endTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9iZWQyZDU1Ni1jNGVlLTQ4YzUtYTM1NS1mNWY3NjJiMThhYmQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "960e193b-c493-4faf-9b20-9418f002c4e4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749694753)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354494753)\\/\",\"ClientRequestId\":\"5de11e28-45c1-466f-b26e-4548aa7cafc0-2021-04-18 13:41:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"v6GXA76BDUkIBIZxIzO1RNwkmplf4+nMGCj2LM95bxk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11422" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "960e193b-c493-4faf-9b20-9418f002c4e4" + ], + "x-ms-correlation-request-id": [ + "795ae4ad-0f34-4394-ae2b-574700d00cc5" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134134Z:795ae4ad-0f34-4394-ae2b-574700d00cc5" + ], + "Date": [ + "Sun, 18 Apr 2021 13:41:34 GMT" + ], + "Content-Length": [ + "2631" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.6686014Z\",\r\n \"endTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"endTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9iZWQyZDU1Ni1jNGVlLTQ4YzUtYTM1NS1mNWY3NjJiMThhYmQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2034dc76-dbcb-4b56-b913-c6acc939c89d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749715161)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354515161)\\/\",\"ClientRequestId\":\"9a686faa-b695-4fbc-bfe8-cdd40040f3b3-2021-04-18 13:41:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GXY7d2K5BeWCMR9w0g0+FVFkUDgi61ivPKcsZfHkwao=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "2034dc76-dbcb-4b56-b913-c6acc939c89d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11421" + ], + "x-ms-correlation-request-id": [ + "1a928418-42e9-4a33-854b-81aff38729e6" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134155Z:1a928418-42e9-4a33-854b-81aff38729e6" + ], + "Date": [ + "Sun, 18 Apr 2021 13:41:54 GMT" + ], + "Content-Length": [ + "2631" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.6686014Z\",\r\n \"endTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"endTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9iZWQyZDU1Ni1jNGVlLTQ4YzUtYTM1NS1mNWY3NjJiMThhYmQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "421d1073-9d91-47e9-96eb-96697594e741" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749735541)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354535541)\\/\",\"ClientRequestId\":\"8e2f8116-5d1d-4f33-8d36-90fff95a5532-2021-04-18 13:42:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zcehMcm3CCukYGVws/we0dBpkJIIg3N+ZZM+cHTujL8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11420" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "421d1073-9d91-47e9-96eb-96697594e741" + ], + "x-ms-correlation-request-id": [ + "52e54e73-021e-4f27-9fad-ccf993718368" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134215Z:52e54e73-021e-4f27-9fad-ccf993718368" + ], + "Date": [ + "Sun, 18 Apr 2021 13:42:15 GMT" + ], + "Content-Length": [ + "2631" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.6686014Z\",\r\n \"endTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"endTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9iZWQyZDU1Ni1jNGVlLTQ4YzUtYTM1NS1mNWY3NjJiMThhYmQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97a75337-b724-4345-adc0-49f3d5cbc133" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749756188)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354556188)\\/\",\"ClientRequestId\":\"9c3ac01d-e5e4-431c-96f8-ec03efe3fb5a-2021-04-18 13:42:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gghmhgw4x/Kn6vRvuULG6lXdC2Muit2XpHJJxNHrQJk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11419" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "97a75337-b724-4345-adc0-49f3d5cbc133" + ], + "x-ms-correlation-request-id": [ + "2af66ce2-cfe2-416d-8a00-171d1104b3a0" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134236Z:2af66ce2-cfe2-416d-8a00-171d1104b3a0" + ], + "Date": [ + "Sun, 18 Apr 2021 13:42:35 GMT" + ], + "Content-Length": [ + "2661" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"name\": \"bed2d556-c4ee-48c5-a355-f5f762b18abd\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.6686014Z\",\r\n \"endTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2021-04-18T13:37:58.7786026Z\",\r\n \"endTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2021-04-18T13:38:33.6344891Z\",\r\n \"endTime\": \"2021-04-18T13:42:35.7995303Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:37:49.5771327Z\",\r\n \"endTime\": \"2021-04-18T13:42:35Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Storage/storageAccounts/cachedisk1?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2NhY2hlZGlzazE/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98137a25-bdb6-4e5f-9881-dd2cfeda433f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "87117d2d-f571-4d83-ae8a-f93b193bca53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "d478ea0c-4099-4741-9420-1949fe7dd551" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134240Z:d478ea0c-4099-4741-9420-1949fe7dd551" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 13:42:39 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f523afb7-f5e1-4aed-847e-79d396946400?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy9mNTIzYWZiNy1mNWUxLTRhZWQtODQ3ZS03OWQzOTY5NDY0MDA/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "67f6aa93-97db-48a5-b25e-5fc1c89dbee8" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749960372)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354760372)\\/\",\"ClientRequestId\":\"a9ea8700-d806-42e9-ba58-b98da66cd926-2021-04-18 13:46:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YTMjh0kA1Tzp1UNLfTh0Jvj8NEBdPyTKHYEXTZ5UG0Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11454" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f523afb7-f5e1-4aed-847e-79d396946400" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "67f6aa93-97db-48a5-b25e-5fc1c89dbee8" + ], + "x-ms-correlation-request-id": [ + "fad6b297-1d3f-4b51-89a2-2d14b2eeecf8" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134600Z:fad6b297-1d3f-4b51-89a2-2d14b2eeecf8" + ], + "Date": [ + "Sun, 18 Apr 2021 13:46:00 GMT" + ], + "Content-Length": [ + "3449" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/f523afb7-f5e1-4aed-847e-79d396946400\",\r\n \"name\": \"f523afb7-f5e1-4aed-847e-79d396946400\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\",\r\n \"scenarioName\": \"AddDisksIrCompletion\",\r\n \"friendlyName\": \"Add disks complete initial replication\",\r\n \"state\": \"Failed\",\r\n \"stateDescription\": \"Failed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksCompleteIrTask\",\r\n \"name\": \"AddDisksCompleteIrTask\",\r\n \"startTime\": \"2021-04-18T13:45:50.2259444Z\",\r\n \"endTime\": \"2021-04-18T13:45:50.2259444Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Completing initial replication for add disks\",\r\n \"state\": \"Failed\",\r\n \"stateDescription\": \"Failed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": [\r\n {\r\n \"serviceErrorDetails\": {\r\n \"code\": \"45035\",\r\n \"message\": \"Resync for the virtual machine 'a2aVM1022' failed.\",\r\n \"possibleCauses\": \"Check the provider error(s) for more information.\",\r\n \"recommendedAction\": \"Resolve the error(s) and retry the resync operation.\",\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\"\r\n },\r\n \"providerErrorDetails\": {\r\n \"errorCode\": 512,\r\n \"errorMessage\": \"Internal Service Error (HvrStorageAccountNotFound-0)\",\r\n \"errorId\": \"d38c37ed-ceb5-4559-b672-5ee2c62bc08f\",\r\n \"possibleCauses\": \"Check the error details for more information.\",\r\n \"recommendedAction\": \"Retry the operation. If the issue persists, contact support.\"\r\n },\r\n \"errorLevel\": \"Error\",\r\n \"creationTime\": \"2021-04-18T13:45:50.1859444Z\",\r\n \"taskId\": \"AddDisksCompleteIrTask\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"errors\": [\r\n {\r\n \"serviceErrorDetails\": {\r\n \"code\": \"45035\",\r\n \"message\": \"Resync for the virtual machine 'a2aVM1022' failed.\",\r\n \"possibleCauses\": \"Check the provider error(s) for more information.\",\r\n \"recommendedAction\": \"Resolve the error(s) and retry the resync operation.\",\r\n \"activityId\": \"99877972-f22c-45fe-93e1-3f067f6767df ActivityId: b6f812ca-05b0-4d4b-8421-6ea5090ab1b9\"\r\n },\r\n \"providerErrorDetails\": {\r\n \"errorCode\": 512,\r\n \"errorMessage\": \"Internal Service Error (HvrStorageAccountNotFound-0)\",\r\n \"errorId\": \"d38c37ed-ceb5-4559-b672-5ee2c62bc08f\",\r\n \"possibleCauses\": \"Check the error details for more information.\",\r\n \"recommendedAction\": \"Retry the operation. If the issue persists, contact support.\"\r\n },\r\n \"errorLevel\": \"Error\",\r\n \"creationTime\": \"2021-04-18T13:45:50.1859444Z\",\r\n \"taskId\": \"AddDisksCompleteIrTask\"\r\n }\r\n ],\r\n \"startTime\": \"2021-04-18T13:45:49.8420958Z\",\r\n \"endTime\": \"2021-04-18T13:45:50Z\",\r\n \"allowedActions\": [\r\n \"Restart\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2aVM1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022/removeDisks?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTAyMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIyL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMDIyL3JlbW92ZURpc2tzP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"vmDisksUris\": [],\r\n \"vmManagedDisksIds\": [\r\n \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1022/providers/Microsoft.Compute/disks/a2aDataDisk1022\"\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ebaacb3b-9f3d-461c-8806-650a8d205574" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749982772)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354782772)\\/\",\"ClientRequestId\":\"fe692f4a-2b76-4070-aa55-42624145b00b-2021-04-18 13:46:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OpFGE5lqk+EH9GJW7oVUzAJBVSs1sfAoR+pYltmT01c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "302" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationFabrics/a2aPrimaryFabric1022/replicationProtectionContainers/A2APrimaryContainer1022/replicationProtectedItems/a2aVM1022/operationresults/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10" + ], + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationOperationStatus/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "ebaacb3b-9f3d-461c-8806-650a8d205574" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "79f06675-c817-4d70-8b98-e857800378fd" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134623Z:79f06675-c817-4d70-8b98-e857800378fd" + ], + "Date": [ + "Sun, 18 Apr 2021 13:46:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ebaacb3b-9f3d-461c-8806-650a8d205574" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749983731)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354783731)\\/\",\"ClientRequestId\":\"57c70fb0-6621-4ad2-a811-5397b01acff4-2021-04-18 13:46:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/pY/rik/bSUXm2jF3Wf3Zaz8YbsMKewAAOsOTkXq2r8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11452" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "ebaacb3b-9f3d-461c-8806-650a8d205574" + ], + "x-ms-correlation-request-id": [ + "22fff20e-f568-4fee-ab6d-9b821b3e6d14" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134623Z:22fff20e-f568-4fee-ab6d-9b821b3e6d14" + ], + "Date": [ + "Sun, 18 Apr 2021 13:46:23 GMT" + ], + "Content-Length": [ + "737" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": null,\r\n \"friendlyName\": null,\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"allowedActions\": [],\r\n \"targetObjectId\": null,\r\n \"targetObjectName\": null,\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e26b8055-b732-4caa-8b3a-d8f11048631b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618749984127)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354784127)\\/\",\"ClientRequestId\":\"e9fa6f31-d77c-49ea-90ab-ae59b4141122-2021-04-18 13:46:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"S/g4YnA/l6cTxs4xOcLZaTSF71W5fzS5eebNe0YzAeQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11451" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e26b8055-b732-4caa-8b3a-d8f11048631b" + ], + "x-ms-correlation-request-id": [ + "795f74e2-b2a7-4130-aede-8705a100472d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134624Z:795f74e2-b2a7-4130-aede-8705a100472d" + ], + "Date": [ + "Sun, 18 Apr 2021 13:46:23 GMT" + ], + "Content-Length": [ + "2232" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.0393423Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "744d5875-faf5-4e78-871c-47ea1153af0f" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750004524)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354804524)\\/\",\"ClientRequestId\":\"466fdbe6-91e0-449e-b722-f6d86766d30a-2021-04-18 13:46:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"i5+mSADSwia2iCcLqcgSyUNr3a6gWk7ABzhc1hZ5pf4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "744d5875-faf5-4e78-871c-47ea1153af0f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11450" + ], + "x-ms-correlation-request-id": [ + "9697748f-aa48-4d96-9233-560b69c37701" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134644Z:9697748f-aa48-4d96-9233-560b69c37701" + ], + "Date": [ + "Sun, 18 Apr 2021 13:46:44 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35465c51-1144-4bef-885c-cb06e7a8db00" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750024939)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354824939)\\/\",\"ClientRequestId\":\"34db9031-0afd-4354-b9a2-ed100429fde4-2021-04-18 13:47:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Fkc+Q7sVlsakWHWSCvIQ9hb9RQvcawxNandNXYFJIgo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11449" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "35465c51-1144-4bef-885c-cb06e7a8db00" + ], + "x-ms-correlation-request-id": [ + "0203a399-5cf1-4e68-a536-110aa9a8971d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134705Z:0203a399-5cf1-4e68-a536-110aa9a8971d" + ], + "Date": [ + "Sun, 18 Apr 2021 13:47:04 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b0eaeb92-5b9c-4ef5-bbc6-2c6c3e523cdd" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750045463)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354845463)\\/\",\"ClientRequestId\":\"42862b95-7bfd-4d69-bfbe-b479f3f54581-2021-04-18 13:47:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"32eHa/pkayGnmmq0EogyEUsanWjqxh1VEsXRC6H2nZQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11448" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b0eaeb92-5b9c-4ef5-bbc6-2c6c3e523cdd" + ], + "x-ms-correlation-request-id": [ + "6575072e-5860-42fa-9538-2c8e8f5dd083" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134725Z:6575072e-5860-42fa-9538-2c8e8f5dd083" + ], + "Date": [ + "Sun, 18 Apr 2021 13:47:25 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6c82e7d-1e90-499a-8693-e20109be83cb" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750065859)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354865859)\\/\",\"ClientRequestId\":\"8a7e707c-8e45-4805-bef7-201132140583-2021-04-18 13:47:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"i8bIYXsnqINzGtBVDIwW0GHeOE5CZ7MPFlwC2NrnduI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11447" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e6c82e7d-1e90-499a-8693-e20109be83cb" + ], + "x-ms-correlation-request-id": [ + "ca00c15d-3188-4fa8-8a71-36f649cf52e2" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134746Z:ca00c15d-3188-4fa8-8a71-36f649cf52e2" + ], + "Date": [ + "Sun, 18 Apr 2021 13:47:45 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "916a0209-8b67-4d6a-a52e-049b90c08aa5" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750086269)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354886269)\\/\",\"ClientRequestId\":\"9e16a30f-2cdb-429b-8dbe-c76168a062f6-2021-04-18 13:48:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Do08xSCD9d6MF6Oj6niCDBIUVrl/Ly7k/YmUQ2icFb4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11446" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "916a0209-8b67-4d6a-a52e-049b90c08aa5" + ], + "x-ms-correlation-request-id": [ + "ed33963e-6349-45e4-a19c-a41302832470" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134806Z:ed33963e-6349-45e4-a19c-a41302832470" + ], + "Date": [ + "Sun, 18 Apr 2021 13:48:05 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c97b5ff-bb6a-40e0-acc3-df133e250eae" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750106659)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354906659)\\/\",\"ClientRequestId\":\"ff10d06b-5bde-488b-a5c7-d5f156266740-2021-04-18 13:48:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"a0ukvvIhbPP4HbOo7AldRTCW62lifnnNFP5VsTFtHFw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11445" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "4c97b5ff-bb6a-40e0-acc3-df133e250eae" + ], + "x-ms-correlation-request-id": [ + "c622601f-14b9-4e35-86e0-d0c259d58955" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134826Z:c622601f-14b9-4e35-86e0-d0c259d58955" + ], + "Date": [ + "Sun, 18 Apr 2021 13:48:26 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "22b9d336-b93a-4d21-8c10-148baa77a28f" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750127050)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354927050)\\/\",\"ClientRequestId\":\"f4b1c51e-87da-45ae-9b58-157d4ae3341d-2021-04-18 13:48:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8TN/Uhc7ymlzwn02bD+lTuZKiTjGUtECRGs4GdusaiU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11444" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "22b9d336-b93a-4d21-8c10-148baa77a28f" + ], + "x-ms-correlation-request-id": [ + "b4f93c7c-199e-4651-9a48-0a5124685f2f" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134847Z:b4f93c7c-199e-4651-9a48-0a5124685f2f" + ], + "Date": [ + "Sun, 18 Apr 2021 13:48:47 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1aa87ac3-02fb-4987-a053-ce263922e21f" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750147428)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354947428)\\/\",\"ClientRequestId\":\"4441442f-240c-4c33-bf5f-400150f99ef5-2021-04-18 13:49:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oBogdZG4mYYEByNVgdzoaWJRdVJilOzNODXQbzTBOWk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11443" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "1aa87ac3-02fb-4987-a053-ce263922e21f" + ], + "x-ms-correlation-request-id": [ + "c755abdf-70ea-4565-a29e-00d24cebf287" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134907Z:c755abdf-70ea-4565-a29e-00d24cebf287" + ], + "Date": [ + "Sun, 18 Apr 2021 13:49:07 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d940e9d-a841-48b2-bfb8-11bfaae8a7ce" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750167835)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354967835)\\/\",\"ClientRequestId\":\"94b3a5c3-04ce-4c6f-8add-6c63bc41ae40-2021-04-18 13:49:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"K8DxOG9uRjnrbw3fjGumAhl5PyrdO32yhf8+AsDrYmY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11442" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "4d940e9d-a841-48b2-bfb8-11bfaae8a7ce" + ], + "x-ms-correlation-request-id": [ + "e2024b26-83c2-4ac3-b64c-445c66007976" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134928Z:e2024b26-83c2-4ac3-b64c-445c66007976" + ], + "Date": [ + "Sun, 18 Apr 2021 13:49:27 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7824574a-8408-4d8e-911c-73571516abe5" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750188224)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619354988224)\\/\",\"ClientRequestId\":\"bc5c9937-2d8b-4faa-b507-7280c9ae1a00-2021-04-18 13:49:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2AXW/f6v5wsv4MPisSzTv98Adoaumh5A8nzV7Ddxr9A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11441" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "7824574a-8408-4d8e-911c-73571516abe5" + ], + "x-ms-correlation-request-id": [ + "d4211235-aabf-411b-b5ee-5fc910575f9d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T134948Z:d4211235-aabf-411b-b5ee-5fc910575f9d" + ], + "Date": [ + "Sun, 18 Apr 2021 13:49:48 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad7c80ef-d4b0-4931-b626-b455ac49b3b4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750209520)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355009520)\\/\",\"ClientRequestId\":\"29da5b93-f52c-46dd-84f0-1619831f905e-2021-04-18 13:50:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NPMOA5P3GLcFtbhXlKesnIKMaWlPWK7xiQ6T0nSswHQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11470" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "ad7c80ef-d4b0-4931-b626-b455ac49b3b4" + ], + "x-ms-correlation-request-id": [ + "607286c8-679b-4272-97a3-3d7c7c2fd39f" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135009Z:607286c8-679b-4272-97a3-3d7c7c2fd39f" + ], + "Date": [ + "Sun, 18 Apr 2021 13:50:09 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02ad08c1-d971-4c1a-9b62-c2efa6da8831" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750229903)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355029903)\\/\",\"ClientRequestId\":\"6808ea86-4942-4dd7-8dc3-1dd7103fa2bd-2021-04-18 13:50:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vlax8o3duOGn+2j5F0nksvknn8IVR3Lo82h3tXAKpCU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11469" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "02ad08c1-d971-4c1a-9b62-c2efa6da8831" + ], + "x-ms-correlation-request-id": [ + "5c94bd8c-83c6-47f0-9ed9-3e955b77397a" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135030Z:5c94bd8c-83c6-47f0-9ed9-3e955b77397a" + ], + "Date": [ + "Sun, 18 Apr 2021 13:50:29 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae2eb115-db8f-4478-96fc-5cce5952b93d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750250407)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355050407)\\/\",\"ClientRequestId\":\"7eea17d9-4eeb-4b6b-a20d-84ab8584538c-2021-04-18 13:50:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LEpPXDNkL3qTqUAgfiVLVyUZfjmEz1JSNqRVmWso3XU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11468" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "ae2eb115-db8f-4478-96fc-5cce5952b93d" + ], + "x-ms-correlation-request-id": [ + "c0ad5ac8-597a-4806-93fc-fd60f6ec64cf" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135050Z:c0ad5ac8-597a-4806-93fc-fd60f6ec64cf" + ], + "Date": [ + "Sun, 18 Apr 2021 13:50:50 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c523bc66-fd1d-4e6b-907c-a0ac0de1c8da" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750270796)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355070796)\\/\",\"ClientRequestId\":\"a620aa0e-c220-492b-b88e-580fb12f7716-2021-04-18 13:51:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"S9COguLr4SKLZb2V4D9EklEuQCpTqqYbO77IZJznl7U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11467" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c523bc66-fd1d-4e6b-907c-a0ac0de1c8da" + ], + "x-ms-correlation-request-id": [ + "892b92da-472e-4673-9fd3-1c9813c2c0af" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135111Z:892b92da-472e-4673-9fd3-1c9813c2c0af" + ], + "Date": [ + "Sun, 18 Apr 2021 13:51:10 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e12edce4-4bb0-4bb0-950d-797b9d8a3696" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750291185)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355091185)\\/\",\"ClientRequestId\":\"187017ae-b743-483c-9750-ea22ae76552d-2021-04-18 13:51:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"an7DDM5TjdqKsB6GG4WEN4LfrEJF88Ha9Q37iWMfv6U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e12edce4-4bb0-4bb0-950d-797b9d8a3696" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11466" + ], + "x-ms-correlation-request-id": [ + "759f4765-85d3-4b2f-b63f-1a4aa0d22be8" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135131Z:759f4765-85d3-4b2f-b63f-1a4aa0d22be8" + ], + "Date": [ + "Sun, 18 Apr 2021 13:51:31 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "50ba76bc-06b4-4764-b8ea-8b52d01d9149" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750311562)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355111562)\\/\",\"ClientRequestId\":\"3ee8a751-2009-43be-a689-f823f2115064-2021-04-18 13:51:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"t/3BRoo/LervC0VOl4ocaccRrpaReWQ8aifIDKxe+QU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11465" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "50ba76bc-06b4-4764-b8ea-8b52d01d9149" + ], + "x-ms-correlation-request-id": [ + "ea4d66cf-9eca-426a-b4d5-8c51af6f0f21" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135152Z:ea4d66cf-9eca-426a-b4d5-8c51af6f0f21" + ], + "Date": [ + "Sun, 18 Apr 2021 13:51:51 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d65abe6-aa9e-413f-9419-a0c28c17c6d5" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750332225)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355132225)\\/\",\"ClientRequestId\":\"42cc210b-04a3-4571-9dbe-f3ef268021de-2021-04-18 13:52:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/CW6GCsp36j53XNn9wBrOs0pgsuNSu08857SYQFwUQs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11464" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "8d65abe6-aa9e-413f-9419-a0c28c17c6d5" + ], + "x-ms-correlation-request-id": [ + "428e3d45-295e-4831-8082-d9fa4994e437" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135212Z:428e3d45-295e-4831-8082-d9fa4994e437" + ], + "Date": [ + "Sun, 18 Apr 2021 13:52:11 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "62f42033-2f38-4572-8117-2364b04e30aa" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750352623)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355152623)\\/\",\"ClientRequestId\":\"ab72ca52-083e-4f42-a9b5-d0c2fe3bbf1f-2021-04-18 13:52:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"47j6wcSM0mQyYYqokSISPhqggYS5TxAMdmKSdEXmEyc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11463" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "62f42033-2f38-4572-8117-2364b04e30aa" + ], + "x-ms-correlation-request-id": [ + "6cc4a217-9dce-469a-b6bd-1f1cb8b1c46e" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135232Z:6cc4a217-9dce-469a-b6bd-1f1cb8b1c46e" + ], + "Date": [ + "Sun, 18 Apr 2021 13:52:32 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38304383-54ef-4869-8d12-3b9331c4a133" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750373027)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355173027)\\/\",\"ClientRequestId\":\"11388936-d64e-4168-9389-3f4f3fdf0235-2021-04-18 13:52:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4XvE8q+RgJrICbAm4t2Dx96nyvxhpaF2vZS8bn2weLs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11462" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "38304383-54ef-4869-8d12-3b9331c4a133" + ], + "x-ms-correlation-request-id": [ + "e26a370c-32bc-4a0a-955c-297b59384c45" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135253Z:e26a370c-32bc-4a0a-955c-297b59384c45" + ], + "Date": [ + "Sun, 18 Apr 2021 13:52:53 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d31ff1d1-8703-4673-a3f4-e7bd47110589" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750393436)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355193436)\\/\",\"ClientRequestId\":\"19dc2a81-5522-4ca5-aa7e-cbec81e9c7d9-2021-04-18 13:53:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"O4Dc9R3prqkwQOcmgP0jooW/XDZjickCwBrq22x0N84=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11461" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d31ff1d1-8703-4673-a3f4-e7bd47110589" + ], + "x-ms-correlation-request-id": [ + "dc41f4fe-f0f6-4f44-9cb8-6b2364d08fae" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135313Z:dc41f4fe-f0f6-4f44-9cb8-6b2364d08fae" + ], + "Date": [ + "Sun, 18 Apr 2021 13:53:13 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b3184b6-0a24-4432-8174-e300550f4eee" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750414766)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355214766)\\/\",\"ClientRequestId\":\"b47733b9-397a-4937-9fc2-4816f053b615-2021-04-18 13:53:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rLQGG2lELchFffofnnC4Q0Yff/ErMmftjvnkIIkdhUI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11460" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "6b3184b6-0a24-4432-8174-e300550f4eee" + ], + "x-ms-correlation-request-id": [ + "6aaf5563-9fe1-4a35-b950-02767aa54aad" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135335Z:6aaf5563-9fe1-4a35-b950-02767aa54aad" + ], + "Date": [ + "Sun, 18 Apr 2021 13:53:34 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff08441b-f88d-41bf-8205-cc7ed9f3cf82" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750435204)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355235204)\\/\",\"ClientRequestId\":\"911a4712-151a-4084-82c9-37b7e615aaf7-2021-04-18 13:53:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Jl4jdhmAp8S3d4GzAdJBFutG1SgBTWe8juhv0perUKw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11459" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "ff08441b-f88d-41bf-8205-cc7ed9f3cf82" + ], + "x-ms-correlation-request-id": [ + "42b05d07-5669-4149-a939-f6c5a3e2e31a" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135355Z:42b05d07-5669-4149-a939-f6c5a3e2e31a" + ], + "Date": [ + "Sun, 18 Apr 2021 13:53:55 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e0a7d98d-8a9d-46db-abd4-3d3bce19adbd" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750455607)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355255607)\\/\",\"ClientRequestId\":\"306f1dc0-dea3-40a5-bef5-307f8eae411b-2021-04-18 13:54:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LEXBC0zuNGjzjS5Th4plcR2dOSaLrT0YLFEP9BGQ8iw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11458" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e0a7d98d-8a9d-46db-abd4-3d3bce19adbd" + ], + "x-ms-correlation-request-id": [ + "ced8d794-5c7f-453a-af4e-b956cb14b6c8" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135415Z:ced8d794-5c7f-453a-af4e-b956cb14b6c8" + ], + "Date": [ + "Sun, 18 Apr 2021 13:54:15 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d140b38e-8f4b-460f-8369-c75a7f912613" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750476036)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355276036)\\/\",\"ClientRequestId\":\"69f283b5-b619-466c-87b4-09f87e74ebbe-2021-04-18 13:54:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bqvQCCWVx1hMfIbd+Ba5AgRSnrQkhh/8tEJ3Fy4w9ew=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11457" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d140b38e-8f4b-460f-8369-c75a7f912613" + ], + "x-ms-correlation-request-id": [ + "ecc2379e-319e-43b8-a051-16da5f9acaf4" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135436Z:ecc2379e-319e-43b8-a051-16da5f9acaf4" + ], + "Date": [ + "Sun, 18 Apr 2021 13:54:36 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70e3f7cb-5a75-4678-a991-86e6e65c54bf" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750496432)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355296432)\\/\",\"ClientRequestId\":\"d19acfee-b360-4ff2-8170-beeaa122e3df-2021-04-18 13:54:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BCYrm5SIGlUBZaI21W1x6n/8dqP32kcWXIqV1Xn7cNk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11456" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "70e3f7cb-5a75-4678-a991-86e6e65c54bf" + ], + "x-ms-correlation-request-id": [ + "19fb2d03-b493-4136-b203-cf70ce794c6b" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135456Z:19fb2d03-b493-4136-b203-cf70ce794c6b" + ], + "Date": [ + "Sun, 18 Apr 2021 13:54:56 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "10654b9b-6e5c-4271-956f-87995a6cb087" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750516879)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355316879)\\/\",\"ClientRequestId\":\"b5fd5e80-e2fe-4b8b-8037-f3d989cd643c-2021-04-18 13:55:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ReqqcVGupK99nGK7mua9O0uFdRE/bMdY+M4/mytGfhA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11485" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "10654b9b-6e5c-4271-956f-87995a6cb087" + ], + "x-ms-correlation-request-id": [ + "e25064be-823f-40e0-b19c-fcaf0d8eef16" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135517Z:e25064be-823f-40e0-b19c-fcaf0d8eef16" + ], + "Date": [ + "Sun, 18 Apr 2021 13:55:16 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05f155e5-0817-43f2-afb5-35f04766e704" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750537281)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355337281)\\/\",\"ClientRequestId\":\"c2e10441-657e-4734-9545-c542da8e83a4-2021-04-18 13:55:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8J0df/IhlIfIqgOK4Xet1oI7tw+6d4+ZGLPA4bJUcxM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11484" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "05f155e5-0817-43f2-afb5-35f04766e704" + ], + "x-ms-correlation-request-id": [ + "91aaf2a7-38dc-4d6b-a025-a4f7802e3f4c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135537Z:91aaf2a7-38dc-4d6b-a025-a4f7802e3f4c" + ], + "Date": [ + "Sun, 18 Apr 2021 13:55:37 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1607d921-6f4b-4cff-b148-e62be55b73dd" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750557673)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355357673)\\/\",\"ClientRequestId\":\"3159a8e3-4799-49c0-b055-3f147d29ac10-2021-04-18 13:55:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5fQoFHoNcuQ61f/yvTuxgGOZ4HJ3SGFn9vAjB2pQjUE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11483" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "1607d921-6f4b-4cff-b148-e62be55b73dd" + ], + "x-ms-correlation-request-id": [ + "8431ee35-cf05-4806-863f-54d1d5acff1e" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135557Z:8431ee35-cf05-4806-863f-54d1d5acff1e" + ], + "Date": [ + "Sun, 18 Apr 2021 13:55:57 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e675c6d-eb72-4c8e-ae2a-82ce33d719d1" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750578075)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355378075)\\/\",\"ClientRequestId\":\"c906a7a5-c74f-44ee-a01a-e139d0849cbb-2021-04-18 13:56:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HKJ6grQnGMAzJ+1jfHGK2feCi6xzeNWL0fjvFUng2xo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "4e675c6d-eb72-4c8e-ae2a-82ce33d719d1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11482" + ], + "x-ms-correlation-request-id": [ + "a6063791-12dc-4d34-97e4-4d4116e4dc70" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135618Z:a6063791-12dc-4d34-97e4-4d4116e4dc70" + ], + "Date": [ + "Sun, 18 Apr 2021 13:56:18 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "191499c7-400a-44ee-a31a-035573a81f75" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750598475)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355398475)\\/\",\"ClientRequestId\":\"5aaeca0f-0c5f-4045-8947-1801ad4a974f-2021-04-18 13:56:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7p6j8RKfddCf7gLekR8G20/FgXVi7IV6sAOGks4PEVo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11481" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "191499c7-400a-44ee-a31a-035573a81f75" + ], + "x-ms-correlation-request-id": [ + "4e86873c-f6fc-4647-828b-9f43e34dfb8e" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135638Z:4e86873c-f6fc-4647-828b-9f43e34dfb8e" + ], + "Date": [ + "Sun, 18 Apr 2021 13:56:37 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae1a0b92-72e8-48f7-86b5-c173a8787fbd" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750618990)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355418990)\\/\",\"ClientRequestId\":\"1084bf9a-b27d-41e4-b062-7b85646b8e82-2021-04-18 13:56:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8G5SA9FZGLxF60ojdCrqsdmu/QTGnEPAS0hSWWQ84Hk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11480" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "ae1a0b92-72e8-48f7-86b5-c173a8787fbd" + ], + "x-ms-correlation-request-id": [ + "99e28b9c-e0ac-42ee-93a1-ed3f92e079a8" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135659Z:99e28b9c-e0ac-42ee-93a1-ed3f92e079a8" + ], + "Date": [ + "Sun, 18 Apr 2021 13:56:58 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3de3b30a-fdf4-48b0-9dba-d182beeb7113" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750639364)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355439364)\\/\",\"ClientRequestId\":\"5c18d6b3-81a5-42f7-95f6-59013b361532-2021-04-18 13:57:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QuU31wM8LUwm6mgrO567cFAJyxIpyEOAaxzScS9z4iw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11479" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "3de3b30a-fdf4-48b0-9dba-d182beeb7113" + ], + "x-ms-correlation-request-id": [ + "cef88164-c51d-41d2-a284-37c32ec74882" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135719Z:cef88164-c51d-41d2-a284-37c32ec74882" + ], + "Date": [ + "Sun, 18 Apr 2021 13:57:19 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3bf82b73-a77d-40b2-bd10-86e8e97b2435" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750659768)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355459768)\\/\",\"ClientRequestId\":\"7dbe59be-47e1-4e02-b7b3-7db17b35c8b8-2021-04-18 13:57:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GcN1dtWAYzl4iGQgL6mb+xJMqlRwF0MjD80/mOWy328=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11478" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "3bf82b73-a77d-40b2-bd10-86e8e97b2435" + ], + "x-ms-correlation-request-id": [ + "c16c9cc5-2065-4933-b4cb-abb81746a099" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135739Z:c16c9cc5-2065-4933-b4cb-abb81746a099" + ], + "Date": [ + "Sun, 18 Apr 2021 13:57:39 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5c1300c-1fae-4ee1-a9c7-b2178cb68652" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750680168)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355480168)\\/\",\"ClientRequestId\":\"abcc7482-9633-4332-82fd-79afc36e3bd8-2021-04-18 13:58:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"B4e8wDLY3UpM//HumRVt9vifZXFe1xjE/VtAYzsO5sY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11477" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e5c1300c-1fae-4ee1-a9c7-b2178cb68652" + ], + "x-ms-correlation-request-id": [ + "b65a31b0-1f01-41d9-bd24-a889daf2e213" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135800Z:b65a31b0-1f01-41d9-bd24-a889daf2e213" + ], + "Date": [ + "Sun, 18 Apr 2021 13:58:00 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dd8edd06-9297-4723-8260-24fd8d08c40f" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750700645)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355500645)\\/\",\"ClientRequestId\":\"eac9519b-a7b9-4b5a-b4c1-65f015f5e600-2021-04-18 13:58:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hpl0rtJgA4kJjQVtuBwpBWN/lTAWyDcjMPg+0yOYTGU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11476" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "dd8edd06-9297-4723-8260-24fd8d08c40f" + ], + "x-ms-correlation-request-id": [ + "59da8763-3536-402f-adbc-5cc786dcfe31" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135820Z:59da8763-3536-402f-adbc-5cc786dcfe31" + ], + "Date": [ + "Sun, 18 Apr 2021 13:58:19 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e811a9f2-4cdc-465a-bf29-13d3883a08ec" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750721625)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355521625)\\/\",\"ClientRequestId\":\"74a31a69-90d5-481c-b0dc-3f1490160653-2021-04-18 13:58:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tyAbxq5BWVIqvVcwkrvX6iMZTXoeOx4IRT4t8NgWI70=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11475" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e811a9f2-4cdc-465a-bf29-13d3883a08ec" + ], + "x-ms-correlation-request-id": [ + "4fda0508-5678-4491-a62e-13b17de90f81" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135841Z:4fda0508-5678-4491-a62e-13b17de90f81" + ], + "Date": [ + "Sun, 18 Apr 2021 13:58:41 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "79c71286-eecc-4b7e-8ae1-6ab333e71db3" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750742008)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355542008)\\/\",\"ClientRequestId\":\"700eccf1-a2fd-40a7-b280-586fa9d8eae0-2021-04-18 13:59:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VsBG8WPQ8LkXQtvrlu+vIqLzeRnFTpQ9jiZaafW34jA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11474" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "79c71286-eecc-4b7e-8ae1-6ab333e71db3" + ], + "x-ms-correlation-request-id": [ + "ab17e088-46e7-492f-af94-a75ff39378d0" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135902Z:ab17e088-46e7-492f-af94-a75ff39378d0" + ], + "Date": [ + "Sun, 18 Apr 2021 13:59:01 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b772e644-8bd6-4a8a-b279-1abbe4aeb072" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750762386)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355562386)\\/\",\"ClientRequestId\":\"d2f9df4a-6b23-4c80-bdd6-9a0f90ba22e4-2021-04-18 13:59:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ne8gcJEhW0FreZGbfsmZenWdDfrVjbRa93Lj7wQkbTk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11473" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b772e644-8bd6-4a8a-b279-1abbe4aeb072" + ], + "x-ms-correlation-request-id": [ + "bebda6fe-c65c-4674-ab30-02492b0ff184" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135922Z:bebda6fe-c65c-4674-ab30-02492b0ff184" + ], + "Date": [ + "Sun, 18 Apr 2021 13:59:22 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "82702198-460d-4858-a4ad-595985fa0712" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750782803)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355582803)\\/\",\"ClientRequestId\":\"d5a9b9a6-a91c-442d-99b9-86811b7fa7f0-2021-04-18 13:59:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XDkuk9X+wmC82Kd2dXi2+sl+BZFIM9620iME9UuuZj0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11472" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "82702198-460d-4858-a4ad-595985fa0712" + ], + "x-ms-correlation-request-id": [ + "1b28ab03-81a4-4bd0-8747-185f7148f7c1" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T135942Z:1b28ab03-81a4-4bd0-8747-185f7148f7c1" + ], + "Date": [ + "Sun, 18 Apr 2021 13:59:42 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/westus/asyncoperations/2a7f0ac1-a978-45b0-8b26-2b4600b21b0e?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy8yYTdmMGFjMS1hOTc4LTQ1YjAtOGIyNi0yYjQ2MDBiMjFiMGU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1985338d-8827-4b00-a8f2-eb1ef824bb65" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618750803179)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355603179)\\/\",\"ClientRequestId\":\"de1b3700-2acf-45b7-bede-52925548a91c-2021-04-18 14:00:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BvLgsDibaqHlHe6htpiM3SEqeeSCiZjcCNNLss2YpSI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28162,32 +31712,36 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "f3553a78-f685-4c6b-a42b-32ec42d55577" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11525" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "1985338d-8827-4b00-a8f2-eb1ef824bb65" ], "x-ms-correlation-request-id": [ - "8794df9e-c78a-440d-b1f3-b4478568a2ac" + "57d9dec4-49fb-4bcc-87ed-1bcbc1210498" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103103Z:8794df9e-c78a-440d-b1f3-b4478568a2ac" - ], - "X-Content-Type-Options": [ - "nosniff" + "CENTRALUSEUAP:20210418T140003Z:57d9dec4-49fb-4bcc-87ed-1bcbc1210498" ], "Date": [ - "Thu, 16 Jan 2020 10:31:02 GMT" + "Sun, 18 Apr 2021 14:00:02 GMT" ], "Content-Length": [ - "1039" + "2247" ], "Content-Type": [ "application/json" @@ -28196,35 +31750,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cachedisk1\",\r\n \"name\": \"cachedisk1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-01-16T10:30:38.7909633Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-01-16T10:30:38.7909633Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-01-16T10:30:38.7128258Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cachedisk1.blob.core.windows.net/\",\r\n \"queue\": \"https://cachedisk1.queue.core.windows.net/\",\r\n \"table\": \"https://cachedisk1.table.core.windows.net/\",\r\n \"file\": \"https://cachedisk1.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102/addDisks?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMi9hZGREaXNrcz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"vmDisks\": [],\r\n \"vmManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/disks/a2aDataDisk102\",\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cachedisk1\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG102\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps" + "83f41532-6bc1-4e1b-87f5-487d7a07bf1f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167063742)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771863742)\\/\",\"ClientRequestId\":\"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZwVNF3BdkIqoUGDCjvLFq2xmFCVDG8vb0Cdb5pGnN8M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618750823552)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355623552)\\/\",\"ClientRequestId\":\"444085c4-b0f7-4e78-ba0d-68a82ed66f86-2021-04-18 14:00:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iUXm+SMwpxA8rBWMg0d48WWmQlDYL3vLqWZb0OMWbVI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "747" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28234,73 +31782,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102/operationresults/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11524" ], - "Retry-After": [ - "30" + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationOperationStatus/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "83f41532-6bc1-4e1b-87f5-487d7a07bf1f" ], "x-ms-correlation-request-id": [ - "a8c2eddb-ab1f-4939-a5d4-4a6663c189ea" + "db8fe3f1-b836-4ace-bd3d-5dbdb283a8d8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103106Z:a8c2eddb-ab1f-4939-a5d4-4a6663c189ea" + "CENTRALUSEUAP:20210418T140023Z:db8fe3f1-b836-4ace-bd3d-5dbdb283a8d8" ], "Date": [ - "Thu, 16 Jan 2020 10:31:05 GMT" + "Sun, 18 Apr 2021 14:00:23 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75af861e-a8c7-43a5-b884-b062633e1160-2020-01-16 10:31:06Z-Ps" + "11f95625-53cd-45e5-ac81-c14c79eac8af" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167066183)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771866183)\\/\",\"ClientRequestId\":\"75af861e-a8c7-43a5-b884-b062633e1160-2020-01-16 10:31:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SowWvoJsf9fnUaH/PEx723rNiDUcbrmQUfquzFSdGpE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618750843941)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355643941)\\/\",\"ClientRequestId\":\"2b0b1a6b-33bd-4bd1-8055-b4815980642d-2021-04-18 14:00:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3Gyof8O8Emr7ljTghmOiuLM2T0Ot7k4MrRDEAvboWFw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28311,38 +31853,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11629" + "11523" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "75af861e-a8c7-43a5-b884-b062633e1160-2020-01-16 10:31:06Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "11f95625-53cd-45e5-ac81-c14c79eac8af" ], "x-ms-correlation-request-id": [ - "945f19d3-fd82-4a1e-980c-18ab57f58e23" + "01aafdce-bb21-414c-a360-a9c11e78a06f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103106Z:945f19d3-fd82-4a1e-980c-18ab57f58e23" + "CENTRALUSEUAP:20210418T140044Z:01aafdce-bb21-414c-a360-a9c11e78a06f" ], "Date": [ - "Thu, 16 Jan 2020 10:31:05 GMT" + "Sun, 18 Apr 2021 14:00:44 GMT" ], "Content-Length": [ - "2608" + "2247" ], "Content-Type": [ "application/json" @@ -28351,29 +31890,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:06.0325891Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "618f1fe9-7608-4029-bc82-c1fa29dcc846-2020-01-16 10:31:06Z-Ps" + "4987c752-efae-4658-a81c-6d9b76723b1a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167066560)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771866560)\\/\",\"ClientRequestId\":\"618f1fe9-7608-4029-bc82-c1fa29dcc846-2020-01-16 10:31:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XUYOU/Chz2cbHb6z6DYZeDXPwGx8H66qZvyxPbc1hV0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618750864337)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355664337)\\/\",\"ClientRequestId\":\"29aa1f19-4f11-4c58-9597-c4dcd8ee1353-2021-04-18 14:01:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tHMiitso4hXJpiIP4xgQCFDLWZ8Au9MdGV7O5KVSRJI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28383,39 +31922,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11628" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "618f1fe9-7608-4029-bc82-c1fa29dcc846-2020-01-16 10:31:06Z-Ps" + "4987c752-efae-4658-a81c-6d9b76723b1a" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11522" ], "x-ms-correlation-request-id": [ - "fe3c0413-ef2d-4809-ae58-ddd6166e6de4" + "a26c14ec-48eb-458c-9070-f2b0a981b8b0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103106Z:fe3c0413-ef2d-4809-ae58-ddd6166e6de4" + "CENTRALUSEUAP:20210418T140104Z:a26c14ec-48eb-458c-9070-f2b0a981b8b0" ], "Date": [ - "Thu, 16 Jan 2020 10:31:06 GMT" + "Sun, 18 Apr 2021 14:01:04 GMT" ], "Content-Length": [ - "2608" + "2247" ], "Content-Type": [ "application/json" @@ -28424,29 +31960,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:06.0325891Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9963dd82-a2f8-40e0-bdf1-5f9841fd8d8a-2020-01-16 10:31:27Z-Ps" + "1a1b6e2d-7361-4a44-b271-387ffafe2493" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167087118)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771887118)\\/\",\"ClientRequestId\":\"9963dd82-a2f8-40e0-bdf1-5f9841fd8d8a-2020-01-16 10:31:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0tPZIJKWwLCQAZy2++7tzI4Hi2FqM3y0g5rsi4jAfoM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618750884729)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355684729)\\/\",\"ClientRequestId\":\"9d63c3d7-5398-452e-8a19-ec50e4514ee5-2021-04-18 14:01:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yhpTpExuJWmMV8u6yUkDOFUlXTfDmd1+TNMxcN4eJ2U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28457,38 +31993,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11624" + "11521" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9963dd82-a2f8-40e0-bdf1-5f9841fd8d8a-2020-01-16 10:31:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1a1b6e2d-7361-4a44-b271-387ffafe2493" ], "x-ms-correlation-request-id": [ - "6b7541e3-f695-4e42-abee-83b595cbd456" + "d27c80ca-b87e-4792-a55a-b05a49a71e05" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103128Z:6b7541e3-f695-4e42-abee-83b595cbd456" + "CENTRALUSEUAP:20210418T140125Z:d27c80ca-b87e-4792-a55a-b05a49a71e05" ], "Date": [ - "Thu, 16 Jan 2020 10:31:28 GMT" + "Sun, 18 Apr 2021 14:01:24 GMT" ], "Content-Length": [ - "2624" + "2247" ], "Content-Type": [ "application/json" @@ -28497,29 +32030,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a0e054fe-fe1f-460c-badc-6e43bbc43320-2020-01-16 10:31:48Z-Ps" + "c41bac20-7040-4d49-8a6b-b43ecd8b3a9f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167108803)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771908803)\\/\",\"ClientRequestId\":\"a0e054fe-fe1f-460c-badc-6e43bbc43320-2020-01-16 10:31:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ocV92m/xXAPxTFnJuvByclkjari9B2DtIyAK64UF2F4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618750905220)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355705220)\\/\",\"ClientRequestId\":\"2e73c44a-1325-4fd0-8e18-d4bc4d3034c4-2021-04-18 14:01:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cVY65VhFFlJ5tDDCAxEQuOlW0XMxAarnNaHb/7dyySc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28530,38 +32063,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11622" + "11520" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a0e054fe-fe1f-460c-badc-6e43bbc43320-2020-01-16 10:31:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c41bac20-7040-4d49-8a6b-b43ecd8b3a9f" ], "x-ms-correlation-request-id": [ - "ef6a8ac6-d89d-4ede-95fd-ecb685f78221" + "a954d69f-8552-4160-9a71-2250bc890267" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103149Z:ef6a8ac6-d89d-4ede-95fd-ecb685f78221" + "CENTRALUSEUAP:20210418T140145Z:a954d69f-8552-4160-9a71-2250bc890267" ], "Date": [ - "Thu, 16 Jan 2020 10:31:48 GMT" + "Sun, 18 Apr 2021 14:01:44 GMT" ], "Content-Length": [ - "2624" + "2247" ], "Content-Type": [ "application/json" @@ -28570,29 +32100,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05cde716-fd04-4351-8a72-3ad861c3afa3-2020-01-16 10:32:09Z-Ps" + "b1da5bec-2f19-4c29-92cc-230360bc78f1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167129334)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771929334)\\/\",\"ClientRequestId\":\"05cde716-fd04-4351-8a72-3ad861c3afa3-2020-01-16 10:32:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2hRy+7wSiekcK7gNRs1wkcg3z5YjYh7EFt+UuwAwdQ0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618750925611)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355725611)\\/\",\"ClientRequestId\":\"8c43ea88-e6f8-4e2c-8e29-0b9929fc741e-2021-04-18 14:02:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pbLU95ToD6ZLJhU5CPrMqT/tk5ZY7Nrh2pkos/Owv4U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28603,38 +32133,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11619" + "11519" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "05cde716-fd04-4351-8a72-3ad861c3afa3-2020-01-16 10:32:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b1da5bec-2f19-4c29-92cc-230360bc78f1" ], "x-ms-correlation-request-id": [ - "4dfa7e43-95ee-423c-8f3e-898aaeb1fa37" + "442dbad0-2dbf-4ff3-b27e-67038ce9f3a3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103209Z:4dfa7e43-95ee-423c-8f3e-898aaeb1fa37" + "CENTRALUSEUAP:20210418T140205Z:442dbad0-2dbf-4ff3-b27e-67038ce9f3a3" ], "Date": [ - "Thu, 16 Jan 2020 10:32:08 GMT" + "Sun, 18 Apr 2021 14:02:05 GMT" ], "Content-Length": [ - "2624" + "2247" ], "Content-Type": [ "application/json" @@ -28643,29 +32170,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9915ca2-3309-4764-a1b7-ddc1da26c092-2020-01-16 10:32:29Z-Ps" + "d95a8064-d70b-4dd6-8014-20927032cc86" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167149946)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771949946)\\/\",\"ClientRequestId\":\"b9915ca2-3309-4764-a1b7-ddc1da26c092-2020-01-16 10:32:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tucHahqG+PzPVG7hO6hkLP3my+XIxNXhXznjvzsHCKw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618750945998)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355745998)\\/\",\"ClientRequestId\":\"c068d717-e906-4093-9b04-c9544b72f4e7-2021-04-18 14:02:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jIhS0+ki9LGKYwqBe4wWXosEfImIZ7zaEQp/hkE+rAM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28676,38 +32203,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11616" + "11518" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b9915ca2-3309-4764-a1b7-ddc1da26c092-2020-01-16 10:32:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d95a8064-d70b-4dd6-8014-20927032cc86" ], "x-ms-correlation-request-id": [ - "672a3bda-4949-4cb1-a279-8c06c3fc1e03" + "74c91ead-0e4e-48f2-bc0b-305414a98b1a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103230Z:672a3bda-4949-4cb1-a279-8c06c3fc1e03" + "CENTRALUSEUAP:20210418T140226Z:74c91ead-0e4e-48f2-bc0b-305414a98b1a" ], "Date": [ - "Thu, 16 Jan 2020 10:32:30 GMT" + "Sun, 18 Apr 2021 14:02:25 GMT" ], "Content-Length": [ - "2640" + "2247" ], "Content-Type": [ "application/json" @@ -28716,29 +32240,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35ef8c03-a128-4302-9a19-484af433214e-2020-01-16 10:32:50Z-Ps" + "99b84292-0a43-43a2-9f9a-402b4aac2853" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167170568)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771970568)\\/\",\"ClientRequestId\":\"35ef8c03-a128-4302-9a19-484af433214e-2020-01-16 10:32:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oXgYeiOTaJXt6mLthDuH4jaFAyuwYvwJ3+qhOHCwiOg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618750966376)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355766376)\\/\",\"ClientRequestId\":\"01c6d225-2b1b-4ed9-966e-33009f77170c-2021-04-18 14:02:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KYiSPyPrGumJraFtbAzfxL/qGd10K/x3n3rH5Xn64gQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28748,39 +32272,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11517" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "35ef8c03-a128-4302-9a19-484af433214e-2020-01-16 10:32:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11612" + "99b84292-0a43-43a2-9f9a-402b4aac2853" ], "x-ms-correlation-request-id": [ - "8b85fb73-a8ce-4cc6-86c8-f7d7b6f948f3" + "dab41841-7c7d-49f2-9723-6ae0cb304cf2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103250Z:8b85fb73-a8ce-4cc6-86c8-f7d7b6f948f3" + "CENTRALUSEUAP:20210418T140246Z:dab41841-7c7d-49f2-9723-6ae0cb304cf2" ], "Date": [ - "Thu, 16 Jan 2020 10:32:50 GMT" + "Sun, 18 Apr 2021 14:02:46 GMT" ], "Content-Length": [ - "2640" + "2247" ], "Content-Type": [ "application/json" @@ -28789,29 +32310,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dee715f6-3f5e-44e6-8cfc-91d4b06d620e-2020-01-16 10:33:11Z-Ps" + "66e0cd49-4551-40f0-a074-44c34734abe4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167191067)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579771991067)\\/\",\"ClientRequestId\":\"dee715f6-3f5e-44e6-8cfc-91d4b06d620e-2020-01-16 10:33:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2qxG6Y/hoiiMXnPCnBO2PIM3Vp8wXAI6MIzrf7763lE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618750986798)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355786798)\\/\",\"ClientRequestId\":\"6558f636-6f7b-464e-a2b6-97aa9d61ba64-2021-04-18 14:03:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QyIoE9nI6h8CC15BFMrK9dG0d1RAOGq1vv6XiB5wZTI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28822,38 +32343,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11608" + "11516" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "dee715f6-3f5e-44e6-8cfc-91d4b06d620e-2020-01-16 10:33:11Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "66e0cd49-4551-40f0-a074-44c34734abe4" ], "x-ms-correlation-request-id": [ - "236ae352-22c8-4b0a-af47-eb4090aa1f1d" + "53b4b58a-5e87-49e0-b109-83e64248a9fd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103311Z:236ae352-22c8-4b0a-af47-eb4090aa1f1d" + "CENTRALUSEUAP:20210418T140306Z:53b4b58a-5e87-49e0-b109-83e64248a9fd" ], "Date": [ - "Thu, 16 Jan 2020 10:33:10 GMT" + "Sun, 18 Apr 2021 14:03:06 GMT" ], "Content-Length": [ - "2640" + "2247" ], "Content-Type": [ "application/json" @@ -28862,29 +32380,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca00447d-9f9d-4d5e-b490-bcaa7f5835b7-2020-01-16 10:33:31Z-Ps" + "a0bce817-b5d5-4e13-8cb1-ed740b67b97e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167211582)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772011582)\\/\",\"ClientRequestId\":\"ca00447d-9f9d-4d5e-b490-bcaa7f5835b7-2020-01-16 10:33:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"b28Xg3JmufEy1osxLz6TBCKebJKkdHK7q04osdwZTN8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751007166)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355807166)\\/\",\"ClientRequestId\":\"b474850e-8cdc-4443-aa04-7a9984fc7b03-2021-04-18 14:03:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"L/4GDy9lDJu9VKDnh6AWNg7vC4f6OVnvmG7YW98XzqQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28895,38 +32413,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11606" + "11515" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ca00447d-9f9d-4d5e-b490-bcaa7f5835b7-2020-01-16 10:33:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a0bce817-b5d5-4e13-8cb1-ed740b67b97e" ], "x-ms-correlation-request-id": [ - "8efb2ee6-7d66-4d90-b86f-c996c4142279" + "dd583d70-5c8e-4555-84c7-93c49ad0c9b4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103331Z:8efb2ee6-7d66-4d90-b86f-c996c4142279" + "CENTRALUSEUAP:20210418T140327Z:dd583d70-5c8e-4555-84c7-93c49ad0c9b4" ], "Date": [ - "Thu, 16 Jan 2020 10:33:30 GMT" + "Sun, 18 Apr 2021 14:03:27 GMT" ], "Content-Length": [ - "2640" + "2247" ], "Content-Type": [ "application/json" @@ -28935,29 +32450,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c15c841-38e9-4e42-8cbb-ec4283334dd7-2020-01-16 10:33:52Z-Ps" + "7e5de08f-df8f-4b7b-8d1c-53e46db36a45" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167232115)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772032115)\\/\",\"ClientRequestId\":\"9c15c841-38e9-4e42-8cbb-ec4283334dd7-2020-01-16 10:33:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EPgz/7jgys/aAxliG8NIqFTgsmsBHsa52RWkWRC5Y8o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751027548)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355827548)\\/\",\"ClientRequestId\":\"185de463-2c7b-40ef-856f-16033053a9d8-2021-04-18 14:03:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3vYE+aESB9qkZKzd51iHSwp4xqBUH9pOwUDV151pdvM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28968,38 +32483,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11601" + "11514" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9c15c841-38e9-4e42-8cbb-ec4283334dd7-2020-01-16 10:33:52Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7e5de08f-df8f-4b7b-8d1c-53e46db36a45" ], "x-ms-correlation-request-id": [ - "7b93de32-679a-4d33-af23-471969122773" + "e8287e19-ca4a-4301-849a-fc3d52303780" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103352Z:7b93de32-679a-4d33-af23-471969122773" + "CENTRALUSEUAP:20210418T140347Z:e8287e19-ca4a-4301-849a-fc3d52303780" ], "Date": [ - "Thu, 16 Jan 2020 10:33:52 GMT" + "Sun, 18 Apr 2021 14:03:47 GMT" ], "Content-Length": [ - "2640" + "2247" ], "Content-Type": [ "application/json" @@ -29008,29 +32520,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e54a26c2-8794-4052-bb4a-72df87c69cb1-2020-01-16 10:34:12Z-Ps" + "746083eb-969a-4935-b1e6-6a26c7c7ddd7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167252658)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772052658)\\/\",\"ClientRequestId\":\"e54a26c2-8794-4052-bb4a-72df87c69cb1-2020-01-16 10:34:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"spVCOKEcXT15KuAogzxs/TLWYt7qqifG86FCkxxMWa8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751047913)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355847913)\\/\",\"ClientRequestId\":\"3e518789-b088-42d8-bfdc-83a255e5a16f-2021-04-18 14:04:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gm4l6xrlaEVUWVA0VPzteQbUCAZzsuelf7xnV/ljd9I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29040,39 +32552,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11513" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e54a26c2-8794-4052-bb4a-72df87c69cb1-2020-01-16 10:34:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11597" + "746083eb-969a-4935-b1e6-6a26c7c7ddd7" ], "x-ms-correlation-request-id": [ - "34dd6451-385b-4755-9e6d-5c5d31de6a58" + "04ff07ba-1f74-47ab-9c76-6132f4fe2923" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103413Z:34dd6451-385b-4755-9e6d-5c5d31de6a58" + "CENTRALUSEUAP:20210418T140408Z:04ff07ba-1f74-47ab-9c76-6132f4fe2923" ], "Date": [ - "Thu, 16 Jan 2020 10:34:12 GMT" + "Sun, 18 Apr 2021 14:04:08 GMT" ], "Content-Length": [ - "2640" + "2247" ], "Content-Type": [ "application/json" @@ -29081,29 +32590,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "595aa43a-b15d-460c-b587-ec1313ffb242-2020-01-16 10:34:33Z-Ps" + "98e16c40-3720-4e25-ae88-961cb7535e94" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167273188)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772073188)\\/\",\"ClientRequestId\":\"595aa43a-b15d-460c-b587-ec1313ffb242-2020-01-16 10:34:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hV8GaG/Jz3vhLak2IBueswD7CHzRa70cQ2uHaPiiTO8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751068285)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355868285)\\/\",\"ClientRequestId\":\"bc8b686b-7b66-423c-92f3-ac47ea6057fe-2021-04-18 14:04:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UDiXC+UG6OE0k05nPfG4JzYtyeSEnce+gDaNbakyRaQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29114,38 +32623,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11596" + "11512" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "595aa43a-b15d-460c-b587-ec1313ffb242-2020-01-16 10:34:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "98e16c40-3720-4e25-ae88-961cb7535e94" ], "x-ms-correlation-request-id": [ - "4d2a515c-000e-4e8a-ac88-bb58aa004482" + "5746a9b1-d7a4-4111-9198-1e3adf8e04c3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103433Z:4d2a515c-000e-4e8a-ac88-bb58aa004482" + "CENTRALUSEUAP:20210418T140428Z:5746a9b1-d7a4-4111-9198-1e3adf8e04c3" ], "Date": [ - "Thu, 16 Jan 2020 10:34:32 GMT" + "Sun, 18 Apr 2021 14:04:28 GMT" ], "Content-Length": [ - "2640" + "2247" ], "Content-Type": [ "application/json" @@ -29154,29 +32660,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eadbb34-4273-404e-8607-4d59780a7b53-2020-01-16 10:34:53Z-Ps" + "63ce3c58-1cbc-43cc-8ca5-156cb6f3c2e9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167293680)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772093680)\\/\",\"ClientRequestId\":\"2eadbb34-4273-404e-8607-4d59780a7b53-2020-01-16 10:34:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pydvIGoNOemEyK9VhW2Z6mJ2UJoyB+kf9iwkluLz6hk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751088709)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355888709)\\/\",\"ClientRequestId\":\"bf2bc92f-fae5-45ea-a98d-a02f8c2ae56d-2021-04-18 14:04:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bOPl45dSPA3v8gqPm51hQr7HclJ0HDDatardRN6QjRg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29187,38 +32693,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11594" + "11511" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2eadbb34-4273-404e-8607-4d59780a7b53-2020-01-16 10:34:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "63ce3c58-1cbc-43cc-8ca5-156cb6f3c2e9" ], "x-ms-correlation-request-id": [ - "2f2d40e9-896b-479d-8e9a-14ced1db1bdf" + "8d19df7e-eac5-4063-991e-19c21c8ab755" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103454Z:2f2d40e9-896b-479d-8e9a-14ced1db1bdf" + "CENTRALUSEUAP:20210418T140448Z:8d19df7e-eac5-4063-991e-19c21c8ab755" ], "Date": [ - "Thu, 16 Jan 2020 10:34:53 GMT" + "Sun, 18 Apr 2021 14:04:48 GMT" ], "Content-Length": [ - "2640" + "2247" ], "Content-Type": [ "application/json" @@ -29227,29 +32730,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14db07df-1569-4696-9ec4-5a0a7220decb-2020-01-16 10:35:14Z-Ps" + "a6d410c1-5bce-442e-94c3-e8cc0df5a9a7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167314248)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772114248)\\/\",\"ClientRequestId\":\"14db07df-1569-4696-9ec4-5a0a7220decb-2020-01-16 10:35:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7Xijf6w77GxXQJO5zM7vR59StRsGukH0pkzjUT5TM38=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751109096)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355909096)\\/\",\"ClientRequestId\":\"4af3960c-ee64-4a41-aa22-75bbd11292fd-2021-04-18 14:05:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"W3HTJR3uPtyVNxsvU5FLEq2G/e3HL5LzRIKSDPukLpc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29260,38 +32763,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11629" + "11568" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "14db07df-1569-4696-9ec4-5a0a7220decb-2020-01-16 10:35:14Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a6d410c1-5bce-442e-94c3-e8cc0df5a9a7" ], "x-ms-correlation-request-id": [ - "72638d11-f929-4995-a8a3-4a0dda509d8e" + "55ff9bb6-53e4-4207-93a9-223b730d916b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103514Z:72638d11-f929-4995-a8a3-4a0dda509d8e" + "CENTRALUSEUAP:20210418T140509Z:55ff9bb6-53e4-4207-93a9-223b730d916b" ], "Date": [ - "Thu, 16 Jan 2020 10:35:14 GMT" + "Sun, 18 Apr 2021 14:05:08 GMT" ], "Content-Length": [ - "2640" + "2247" ], "Content-Type": [ "application/json" @@ -29300,29 +32800,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0f0d3f3-cbf6-441c-b5b5-4f9deff7952b-2020-01-16 10:35:34Z-Ps" + "024fd387-42af-45fa-8991-308b10b36308" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167334818)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772134818)\\/\",\"ClientRequestId\":\"f0f0d3f3-cbf6-441c-b5b5-4f9deff7952b-2020-01-16 10:35:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"03A1Sn57i/3CPliI+iro7J90qe671T4QEnraeh2HY/U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751129470)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355929470)\\/\",\"ClientRequestId\":\"553ba181-0af2-42c6-9be7-03e363d407b5-2021-04-18 14:05:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ktxZn/zCItz5dJQhoQRoofjR00e6vFngkntfVdTBZwM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29333,38 +32833,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11628" + "11567" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f0f0d3f3-cbf6-441c-b5b5-4f9deff7952b-2020-01-16 10:35:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "024fd387-42af-45fa-8991-308b10b36308" ], "x-ms-correlation-request-id": [ - "d535328c-a938-427a-adaa-9b287dfcc325" + "e33fc2da-f20c-47d4-b081-64076c5db9e3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103535Z:d535328c-a938-427a-adaa-9b287dfcc325" + "CENTRALUSEUAP:20210418T140529Z:e33fc2da-f20c-47d4-b081-64076c5db9e3" ], "Date": [ - "Thu, 16 Jan 2020 10:35:34 GMT" + "Sun, 18 Apr 2021 14:05:29 GMT" ], "Content-Length": [ - "2640" + "2247" ], "Content-Type": [ "application/json" @@ -29373,29 +32870,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29f9f0f1-d9be-46df-8ba6-a4374119eab7-2020-01-16 10:35:55Z-Ps" + "84093e7b-4c45-4f0c-a3fa-df1553ac096a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167355363)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772155363)\\/\",\"ClientRequestId\":\"29f9f0f1-d9be-46df-8ba6-a4374119eab7-2020-01-16 10:35:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OmPaU3QD6VPGNCFrue8sestBRQber/vkqPFkW5B38Os=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751149959)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355949959)\\/\",\"ClientRequestId\":\"460317de-9074-412f-b05a-b60cf17ae4ac-2021-04-18 14:05:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Y2R7sitIBe9/AZxm/YtShAGJTB9CKQRe/EBlqRZUd/g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29405,39 +32902,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11625" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "29f9f0f1-d9be-46df-8ba6-a4374119eab7-2020-01-16 10:35:55Z-Ps" + "84093e7b-4c45-4f0c-a3fa-df1553ac096a" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11566" ], "x-ms-correlation-request-id": [ - "dd9f3fa6-6249-4bc1-b7f6-143f53e43bfd" + "9e815300-9bd5-48fc-99e6-801161622153" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103556Z:dd9f3fa6-6249-4bc1-b7f6-143f53e43bfd" + "CENTRALUSEUAP:20210418T140550Z:9e815300-9bd5-48fc-99e6-801161622153" ], "Date": [ - "Thu, 16 Jan 2020 10:35:55 GMT" + "Sun, 18 Apr 2021 14:05:50 GMT" ], "Content-Length": [ - "2640" + "2247" ], "Content-Type": [ "application/json" @@ -29446,29 +32940,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cbdaad8-3f2b-445f-a68d-dec45628654e-2020-01-16 10:36:16Z-Ps" + "06740f90-bba6-455c-8af1-39afabb36e9a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167376790)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772176790)\\/\",\"ClientRequestId\":\"3cbdaad8-3f2b-445f-a68d-dec45628654e-2020-01-16 10:36:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AbTY89SsFyLdDln6vCTONoamw/TfgfJuuOzVc/DuT6U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751170360)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355970360)\\/\",\"ClientRequestId\":\"f5b38f0d-17b4-4674-a167-d5cde13a8d7f-2021-04-18 14:06:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sg6IpnAOlKNvAZJIKlYmJgsmsrbWP5JUjsSL53IIq5o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29479,38 +32973,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11624" + "11565" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3cbdaad8-3f2b-445f-a68d-dec45628654e-2020-01-16 10:36:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "06740f90-bba6-455c-8af1-39afabb36e9a" ], "x-ms-correlation-request-id": [ - "95bf2134-819b-4432-b1d6-46ae42e82f0b" + "ae9f6b1a-e9f9-49f3-952f-d5b3704db191" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103618Z:95bf2134-819b-4432-b1d6-46ae42e82f0b" + "CENTRALUSEUAP:20210418T140610Z:ae9f6b1a-e9f9-49f3-952f-d5b3704db191" ], "Date": [ - "Thu, 16 Jan 2020 10:36:17 GMT" + "Sun, 18 Apr 2021 14:06:10 GMT" ], "Content-Length": [ - "2640" + "2247" ], "Content-Type": [ "application/json" @@ -29519,29 +33010,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56589e8f-ca48-4550-9ff2-fbd81f02b2b0-2020-01-16 10:36:38Z-Ps" + "a92ff81b-cb95-47c4-bbe8-db76ce4e7eec" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167398360)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772198360)\\/\",\"ClientRequestId\":\"56589e8f-ca48-4550-9ff2-fbd81f02b2b0-2020-01-16 10:36:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tUGaQBjSqHhcg4KRqrkxO5Gg8JHlbOvu8JwXGio48u4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751190868)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619355990868)\\/\",\"ClientRequestId\":\"16fa0b44-e5ba-4407-8fa2-4e50cf205eb9-2021-04-18 14:06:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lcMx4R1q9zf42uknuJV7wrBeSuCYYFrqq9WESbQ27C4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29552,38 +33043,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11622" + "11564" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "56589e8f-ca48-4550-9ff2-fbd81f02b2b0-2020-01-16 10:36:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a92ff81b-cb95-47c4-bbe8-db76ce4e7eec" ], "x-ms-correlation-request-id": [ - "c982d69d-e68f-4273-9987-88116481abc4" + "cd96a293-ee92-4d04-b59c-3f2b832a7499" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103638Z:c982d69d-e68f-4273-9987-88116481abc4" + "CENTRALUSEUAP:20210418T140631Z:cd96a293-ee92-4d04-b59c-3f2b832a7499" ], "Date": [ - "Thu, 16 Jan 2020 10:36:38 GMT" + "Sun, 18 Apr 2021 14:06:30 GMT" ], "Content-Length": [ - "2640" + "2247" ], "Content-Type": [ "application/json" @@ -29592,29 +33080,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c199832-b817-4d18-af32-928cdc6ea0c5-2020-01-16 10:36:58Z-Ps" + "2ff41385-c4de-49aa-9b2c-087e50dc0d73" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167418860)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772218860)\\/\",\"ClientRequestId\":\"2c199832-b817-4d18-af32-928cdc6ea0c5-2020-01-16 10:36:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ozZizH6CO4+s4xWA0IfGJqH5lxkF0INhm+UWrWsQoP8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751211275)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356011275)\\/\",\"ClientRequestId\":\"411da485-92c7-4804-8186-44f8af95a77b-2021-04-18 14:06:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SlITmfNWU56tv5o4DlNBk5WAPAU9yEopwPTCPooOYtA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29625,38 +33113,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11621" + "11563" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2c199832-b817-4d18-af32-928cdc6ea0c5-2020-01-16 10:36:58Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2ff41385-c4de-49aa-9b2c-087e50dc0d73" ], "x-ms-correlation-request-id": [ - "faffe98f-8a60-43d1-a675-858bec761d06" + "5a1903a3-118f-42f8-8627-f5c79d624cac" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103659Z:faffe98f-8a60-43d1-a675-858bec761d06" + "CENTRALUSEUAP:20210418T140651Z:5a1903a3-118f-42f8-8627-f5c79d624cac" ], "Date": [ - "Thu, 16 Jan 2020 10:36:58 GMT" + "Sun, 18 Apr 2021 14:06:51 GMT" ], "Content-Length": [ - "2640" + "2247" ], "Content-Type": [ "application/json" @@ -29665,29 +33150,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fc1da24-fc2a-49b9-8560-b062e530a723-2020-01-16 10:37:19Z-Ps" + "b53b209d-3296-40f6-a419-a671e75ad682" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167439374)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772239374)\\/\",\"ClientRequestId\":\"7fc1da24-fc2a-49b9-8560-b062e530a723-2020-01-16 10:37:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RNMfLHxA1CKtkKCxFMRZLocIYGJDc5CHGjRk6y0TN6k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751231661)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356031661)\\/\",\"ClientRequestId\":\"463ce589-4d8b-4fbd-9751-b976f028d2c2-2021-04-18 14:07:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1iebT+/zQAQTu+oFNjPD5Z2tFe61xuq7IRRRdYQ8zsI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29698,38 +33183,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11620" + "11562" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7fc1da24-fc2a-49b9-8560-b062e530a723-2020-01-16 10:37:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b53b209d-3296-40f6-a419-a671e75ad682" ], "x-ms-correlation-request-id": [ - "bd90db54-68f9-4a2e-bc12-71eb348a11f2" + "21a58084-3fca-4389-bda3-c4a698519f64" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103719Z:bd90db54-68f9-4a2e-bc12-71eb348a11f2" + "CENTRALUSEUAP:20210418T140711Z:21a58084-3fca-4389-bda3-c4a698519f64" ], "Date": [ - "Thu, 16 Jan 2020 10:37:19 GMT" + "Sun, 18 Apr 2021 14:07:11 GMT" ], "Content-Length": [ - "2640" + "2247" ], "Content-Type": [ "application/json" @@ -29738,29 +33220,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "072317f1-93f2-4ff2-a91d-c9470fc39c3b-2020-01-16 10:37:39Z-Ps" + "ffdcbb24-dec7-41c8-8dcb-9665394452f7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167459922)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772259922)\\/\",\"ClientRequestId\":\"072317f1-93f2-4ff2-a91d-c9470fc39c3b-2020-01-16 10:37:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"J7Pkx82+kC4VprY1oTl190yMrQ4v+fg8N1UqD3lrYfs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751252051)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356052051)\\/\",\"ClientRequestId\":\"43f0fd14-8e6a-458c-afbe-b21ed4d5e88a-2021-04-18 14:07:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qy04HeAngfOzXG686H//hT1my5nx/wpYPx+jK+65u/w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29770,39 +33252,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11561" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "072317f1-93f2-4ff2-a91d-c9470fc39c3b-2020-01-16 10:37:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11619" + "ffdcbb24-dec7-41c8-8dcb-9665394452f7" ], "x-ms-correlation-request-id": [ - "de25aab5-d2ab-4e46-a390-bab5a4946543" + "70058030-fca5-49d2-a88d-1297565b9963" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103740Z:de25aab5-d2ab-4e46-a390-bab5a4946543" + "CENTRALUSEUAP:20210418T140732Z:70058030-fca5-49d2-a88d-1297565b9963" ], "Date": [ - "Thu, 16 Jan 2020 10:37:39 GMT" + "Sun, 18 Apr 2021 14:07:32 GMT" ], "Content-Length": [ - "2640" + "2247" ], "Content-Type": [ "application/json" @@ -29811,29 +33290,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b7110ae-069a-432b-937a-05cb62b73064-2020-01-16 10:38:00Z-Ps" + "b60bd465-e9d9-4c66-b1e9-c5db67a07612" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167480407)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772280407)\\/\",\"ClientRequestId\":\"4b7110ae-069a-432b-937a-05cb62b73064-2020-01-16 10:38:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZVBUBPJJEJb2EvTuEA7JdE8cWWn+KFd/FkI9g4akXG8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751272437)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356072437)\\/\",\"ClientRequestId\":\"924a6121-2dab-4877-aec3-b6e3b842dc57-2021-04-18 14:07:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"anr4v5xc3bnIwSkhVGX4FjeleP4rrEl6+aZQidMIS7A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29844,38 +33323,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11617" + "11560" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "4b7110ae-069a-432b-937a-05cb62b73064-2020-01-16 10:38:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b60bd465-e9d9-4c66-b1e9-c5db67a07612" ], "x-ms-correlation-request-id": [ - "95b11cdf-ddca-4ef1-9f18-63dfdd6c5dd5" + "5d3e0708-6f94-4f6a-aa71-75bbd0487644" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103801Z:95b11cdf-ddca-4ef1-9f18-63dfdd6c5dd5" + "CENTRALUSEUAP:20210418T140752Z:5d3e0708-6f94-4f6a-aa71-75bbd0487644" ], "Date": [ - "Thu, 16 Jan 2020 10:38:01 GMT" + "Sun, 18 Apr 2021 14:07:52 GMT" ], "Content-Length": [ - "2640" + "2247" ], "Content-Type": [ "application/json" @@ -29884,29 +33360,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "189b72c5-ddbf-448d-96ef-0f62b333de86-2020-01-16 10:38:22Z-Ps" + "1fab92da-906f-4618-8c56-1e9774108096" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167502046)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772302046)\\/\",\"ClientRequestId\":\"189b72c5-ddbf-448d-96ef-0f62b333de86-2020-01-16 10:38:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bA1bA9oLZzYDq2fKMdFB5Fxaury8xJUvqxL7khILsjs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751292832)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356092832)\\/\",\"ClientRequestId\":\"addaaf0c-ceec-466c-97dc-0c1ae60cb0a3-2021-04-18 14:08:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"50NdAdZhW+Dvi/+fCz2wmnRXvnrMosdOzFntXZ1cJ9k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29917,38 +33393,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11615" + "11559" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "189b72c5-ddbf-448d-96ef-0f62b333de86-2020-01-16 10:38:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1fab92da-906f-4618-8c56-1e9774108096" ], "x-ms-correlation-request-id": [ - "756b1393-506c-41c6-80ae-65fcd1909bdf" + "8cf416f4-041d-4f0a-82ac-078618e07a14" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103822Z:756b1393-506c-41c6-80ae-65fcd1909bdf" + "CENTRALUSEUAP:20210418T140813Z:8cf416f4-041d-4f0a-82ac-078618e07a14" ], "Date": [ - "Thu, 16 Jan 2020 10:38:22 GMT" + "Sun, 18 Apr 2021 14:08:12 GMT" ], "Content-Length": [ - "2640" + "2247" ], "Content-Type": [ "application/json" @@ -29957,29 +33430,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvMWY4ODQwZjctY2U0NS00ZTVhLTg4NmUtYmY2OWE0NWQyMmRjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c10e04ca-36c6-40a5-a8b1-542c59cde7e5-2020-01-16 10:38:42Z-Ps" + "542b2056-b3bb-449c-90d1-976c73091041" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167522604)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772322604)\\/\",\"ClientRequestId\":\"c10e04ca-36c6-40a5-a8b1-542c59cde7e5-2020-01-16 10:38:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AJpSCZq5eHoPpHuNSilWzRZTk3IxgSJ5Pho/vGZZY1E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751313240)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356113240)\\/\",\"ClientRequestId\":\"6df65f0e-189f-4642-a12c-09a8d2b74ff9-2021-04-18 14:08:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fvybOI1Eg7zAN09vlArGWMp2EfIwL49w/OjXGlQ9dVw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29990,38 +33463,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11613" + "11558" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c10e04ca-36c6-40a5-a8b1-542c59cde7e5-2020-01-16 10:38:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "542b2056-b3bb-449c-90d1-976c73091041" ], "x-ms-correlation-request-id": [ - "81ac8c76-e0b3-472f-8dfa-90255b9be24d" + "7705b34a-31bd-4012-84cd-f6dceaaecd95" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103842Z:81ac8c76-e0b3-472f-8dfa-90255b9be24d" + "CENTRALUSEUAP:20210418T140833Z:7705b34a-31bd-4012-84cd-f6dceaaecd95" ], "Date": [ - "Thu, 16 Jan 2020 10:38:42 GMT" + "Sun, 18 Apr 2021 14:08:33 GMT" ], "Content-Length": [ - "2670" + "2247" ], "Content-Type": [ "application/json" @@ -30030,26 +33500,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"name\": \"1f8840f7-ce45-4e5a-886e-bf69a45d22dc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisks\",\r\n \"friendlyName\": \"Add disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksPreflightTask\",\r\n \"name\": \"AddDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.4544077Z\",\r\n \"endTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to add disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddDisksTask\",\r\n \"name\": \"AddDisksTask\",\r\n \"startTime\": \"2020-01-16T10:31:12.6106597Z\",\r\n \"endTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Adding disk(s) for protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartDisksReplicationTask\",\r\n \"name\": \"StartDisksReplicationTask\",\r\n \"startTime\": \"2020-01-16T10:32:17.6762018Z\",\r\n \"endTime\": \"2020-01-16T10:37:41.7514519Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting disk(s) initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:31:05.7813775Z\",\r\n \"endTime\": \"2020-01-16T10:38:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Storage/storageAccounts/cachedisk1?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvY2FjaGVkaXNrMT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b03d2e3c-9229-4168-aa44-74af808b0409" + "cef96bae-ea66-4891-80a3-c390aca0d4cf" ], "Accept-Language": [ "en-US" ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618751333685)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356133685)\\/\",\"ClientRequestId\":\"1269451e-6958-42dd-930d-e54a5b53bf69-2021-04-18 14:08:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tNYgWVbSwx/yvfJQFUq79AIAXWQ2SC7UJMC5bFYtYJQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30059,63 +33532,67 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "da8c3610-8db0-4461-98b5-01b7a5ea9681" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11557" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "cef96bae-ea66-4891-80a3-c390aca0d4cf" ], "x-ms-correlation-request-id": [ - "aeb29cd6-61b2-4dd6-8974-ab89f8ff3d3a" + "87a61759-3da8-4341-b535-e3fc975ec286" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T103848Z:aeb29cd6-61b2-4dd6-8974-ab89f8ff3d3a" - ], - "X-Content-Type-Options": [ - "nosniff" + "CENTRALUSEUAP:20210418T140853Z:87a61759-3da8-4341-b535-e3fc975ec286" ], "Date": [ - "Thu, 16 Jan 2020 10:38:48 GMT" + "Sun, 18 Apr 2021 14:08:53 GMT" + ], + "Content-Length": [ + "2247" ], "Content-Type": [ - "text/plain; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/d76fa572-30c7-4a65-95bb-00a938cc6690?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvZDc2ZmE1NzItMzBjNy00YTY1LTk1YmItMDBhOTM4Y2M2NjkwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05f1083a-dff0-4a11-9d38-0486b30a11fd-2020-01-16 10:42:01Z-Ps" + "d935d048-66b2-4bdf-b4d6-06464316a014" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167721614)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772521614)\\/\",\"ClientRequestId\":\"05f1083a-dff0-4a11-9d38-0486b30a11fd-2020-01-16 10:42:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pPNKe5YfHn/E0GeEywclGgzbP6bBMr9gTNKqYTzaGrs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751354080)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356154080)\\/\",\"ClientRequestId\":\"df8b3cfb-7a99-49bc-8c71-1ddbd3771f50-2021-04-18 14:09:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/VUnr/g7JMxIvPPqQsJn+efj6w+zO4WdeRyLv1P8u1k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30126,38 +33603,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11611" + "11556" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/d76fa572-30c7-4a65-95bb-00a938cc6690" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "05f1083a-dff0-4a11-9d38-0486b30a11fd-2020-01-16 10:42:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d935d048-66b2-4bdf-b4d6-06464316a014" ], "x-ms-correlation-request-id": [ - "644f8137-3f9c-471a-a569-85c046ae9e44" + "e504c36d-7aaa-457e-ba27-fab36c4dbf1d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104202Z:644f8137-3f9c-471a-a569-85c046ae9e44" + "CENTRALUSEUAP:20210418T140914Z:e504c36d-7aaa-457e-ba27-fab36c4dbf1d" ], "Date": [ - "Thu, 16 Jan 2020 10:42:01 GMT" + "Sun, 18 Apr 2021 14:09:14 GMT" ], "Content-Length": [ - "3504" + "2247" ], "Content-Type": [ "application/json" @@ -30166,35 +33640,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/d76fa572-30c7-4a65-95bb-00a938cc6690\",\r\n \"name\": \"d76fa572-30c7-4a65-95bb-00a938cc6690\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\",\r\n \"scenarioName\": \"AddDisksIrCompletion\",\r\n \"friendlyName\": \"Add disks complete initial replication\",\r\n \"state\": \"Failed\",\r\n \"stateDescription\": \"Failed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddDisksCompleteIrTask\",\r\n \"name\": \"AddDisksCompleteIrTask\",\r\n \"startTime\": \"2020-01-16T10:41:53.8782926Z\",\r\n \"endTime\": \"2020-01-16T10:41:53.8782926Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Completing initial replication for add disks\",\r\n \"state\": \"Failed\",\r\n \"stateDescription\": \"Failed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": [\r\n {\r\n \"serviceErrorDetails\": {\r\n \"code\": \"45035\",\r\n \"message\": \"Resync for the virtual machine 'a2aVM102' failed.\",\r\n \"possibleCauses\": \"Check the provider error(s) for more information.\",\r\n \"recommendedAction\": \"Resolve the error(s) and retry the resync operation.\",\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\"\r\n },\r\n \"providerErrorDetails\": {\r\n \"errorCode\": 512,\r\n \"errorMessage\": \"Internal Service Error (HvrStorageAccountNotFound-0)\",\r\n \"errorId\": \"b2895e3b-e426-4004-b5c8-be21ae4fda43\",\r\n \"possibleCauses\": \"Check the error details for more information.\",\r\n \"recommendedAction\": \"Retry the operation. If the issue persists, contact support.\"\r\n },\r\n \"errorLevel\": \"Error\",\r\n \"creationTime\": \"2020-01-16T10:41:53.8470451Z\",\r\n \"taskId\": \"AddDisksCompleteIrTask\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"errors\": [\r\n {\r\n \"serviceErrorDetails\": {\r\n \"code\": \"45035\",\r\n \"message\": \"Resync for the virtual machine 'a2aVM102' failed.\",\r\n \"possibleCauses\": \"Check the provider error(s) for more information.\",\r\n \"recommendedAction\": \"Resolve the error(s) and retry the resync operation.\",\r\n \"activityId\": \"1e2612e7-2290-43fb-ad6c-c31038395a2c-2020-01-16 10:31:03Z-Ps ActivityId: a8c2eddb-ab1f-4939-a5d4-4a6663c189ea\"\r\n },\r\n \"providerErrorDetails\": {\r\n \"errorCode\": 512,\r\n \"errorMessage\": \"Internal Service Error (HvrStorageAccountNotFound-0)\",\r\n \"errorId\": \"b2895e3b-e426-4004-b5c8-be21ae4fda43\",\r\n \"possibleCauses\": \"Check the error details for more information.\",\r\n \"recommendedAction\": \"Retry the operation. If the issue persists, contact support.\"\r\n },\r\n \"errorLevel\": \"Error\",\r\n \"creationTime\": \"2020-01-16T10:41:53.8470451Z\",\r\n \"taskId\": \"AddDisksCompleteIrTask\"\r\n }\r\n ],\r\n \"startTime\": \"2020-01-16T10:41:53.1762316Z\",\r\n \"endTime\": \"2020-01-16T10:41:53Z\",\r\n \"allowedActions\": [\r\n \"Restart\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2avm102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102/removeDisks?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwMi9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDIvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwMi9yZW1vdmVEaXNrcz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"vmDisksUris\": [],\r\n \"vmManagedDisksIds\": [\r\n \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM102/providers/Microsoft.Compute/disks/a2aDataDisk102\"\r\n ]\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps" + "deb16055-01b3-4528-bcc4-4a5f194def8d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167743826)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772543826)\\/\",\"ClientRequestId\":\"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TrdgUG7oe/nOrCmDnGVwwvYEdLfktXTw9txieTQ/IBE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751374462)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356174462)\\/\",\"ClientRequestId\":\"16c72172-c067-4ac8-9c20-43b177513655-2021-04-18 14:09:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CPIb0LZ85z0/jn+tFnaD0aAvtD5yimcJYeuq3iuiOxc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "300" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30204,73 +33672,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationFabrics/a2aPrimaryFabric102/replicationProtectionContainers/A2APrimaryContainer102/replicationProtectedItems/a2aVM102/operationresults/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11555" ], - "Retry-After": [ - "30" + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationOperationStatus/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "deb16055-01b3-4528-bcc4-4a5f194def8d" ], "x-ms-correlation-request-id": [ - "4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d" + "95d9a48d-ef20-4d26-b214-fe0d3d94aa22" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104226Z:4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d" + "CENTRALUSEUAP:20210418T140934Z:95d9a48d-ef20-4d26-b214-fe0d3d94aa22" ], "Date": [ - "Thu, 16 Jan 2020 10:42:25 GMT" + "Sun, 18 Apr 2021 14:09:34 GMT" + ], + "Content-Length": [ + "2247" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c910b590-876a-4166-9f53-74b975b90160-2020-01-16 10:42:26Z-Ps" + "9a2cb777-6085-4564-8d75-5a53eb988507" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167746060)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772546060)\\/\",\"ClientRequestId\":\"c910b590-876a-4166-9f53-74b975b90160-2020-01-16 10:42:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tzABP6zqcJz4oY6rlwYsz7/nU3BO9dBRBV7Mc/9e2yQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751394901)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356194901)\\/\",\"ClientRequestId\":\"d2bf8285-6f32-40f4-876f-323d046c16c7-2021-04-18 14:09:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HM0eXQtN/vjSUrD6iRJgWag7DMWfImYpsK8JXzSkg2Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30281,38 +33743,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11608" + "11554" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c910b590-876a-4166-9f53-74b975b90160-2020-01-16 10:42:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9a2cb777-6085-4564-8d75-5a53eb988507" ], "x-ms-correlation-request-id": [ - "2e41bb43-e1fa-4f59-a214-d0eec8f824ae" + "a7c7b085-2a3a-403d-b7d5-2a5a1d8e63df" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104226Z:2e41bb43-e1fa-4f59-a214-d0eec8f824ae" + "CENTRALUSEUAP:20210418T140955Z:a7c7b085-2a3a-403d-b7d5-2a5a1d8e63df" ], "Date": [ - "Thu, 16 Jan 2020 10:42:26 GMT" + "Sun, 18 Apr 2021 14:09:54 GMT" ], "Content-Length": [ - "2240" + "2247" ], "Content-Type": [ "application/json" @@ -30321,29 +33780,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.2427055Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d856f7b1-153d-430c-9bd7-da890c881b76-2020-01-16 10:42:26Z-Ps" + "a04b9e45-1492-4e8f-a43b-ea70852e7c70" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167746463)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772546463)\\/\",\"ClientRequestId\":\"d856f7b1-153d-430c-9bd7-da890c881b76-2020-01-16 10:42:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MofWPKUPiS7Cn5SZw9zMCRMSTKvPXivLeM8BvH9hKsI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751415276)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356215276)\\/\",\"ClientRequestId\":\"4aede2f2-6846-4cea-865e-cfa2b65c37dc-2021-04-18 14:10:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+jpcFKEhJWVOrlKug8X8ea67IaHh5YJinfU471JIxtI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30354,38 +33813,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11607" + "11611" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d856f7b1-153d-430c-9bd7-da890c881b76-2020-01-16 10:42:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a04b9e45-1492-4e8f-a43b-ea70852e7c70" ], "x-ms-correlation-request-id": [ - "5065d15c-7aa0-4f12-8c71-a9bdfaa85896" + "b1b31349-1523-4ce5-90cc-a87e53dbd677" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104226Z:5065d15c-7aa0-4f12-8c71-a9bdfaa85896" + "CENTRALUSEUAP:20210418T141015Z:b1b31349-1523-4ce5-90cc-a87e53dbd677" ], "Date": [ - "Thu, 16 Jan 2020 10:42:26 GMT" + "Sun, 18 Apr 2021 14:10:14 GMT" ], "Content-Length": [ - "2240" + "2247" ], "Content-Type": [ "application/json" @@ -30394,29 +33850,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.2427055Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7aef5fb-d832-4a74-8d57-63d7cacb092b-2020-01-16 10:42:46Z-Ps" + "329b40e5-67af-4d1f-af2b-426ae547a272" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167766931)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772566931)\\/\",\"ClientRequestId\":\"a7aef5fb-d832-4a74-8d57-63d7cacb092b-2020-01-16 10:42:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HcAWUEV4sQacl1qRyWITLq/Ru0OQj+Ld+lHX1+IssME=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751435695)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356235695)\\/\",\"ClientRequestId\":\"2b7838d3-418a-4725-a051-5a0901c5127d-2021-04-18 14:10:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dZEp7Haz9BWRrf7AHOw9S25rj9cdAHrk5YgIZ7gHMLs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30430,35 +33886,32 @@ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a7aef5fb-d832-4a74-8d57-63d7cacb092b-2020-01-16 10:42:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "329b40e5-67af-4d1f-af2b-426ae547a272" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11605" + "11610" ], "x-ms-correlation-request-id": [ - "8a14a7cd-a6f7-47b2-b2b3-37e750b6cae3" + "0de2362f-915b-46cf-b6a6-a6664b5d4f4d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104247Z:8a14a7cd-a6f7-47b2-b2b3-37e750b6cae3" + "CENTRALUSEUAP:20210418T141035Z:0de2362f-915b-46cf-b6a6-a6664b5d4f4d" ], "Date": [ - "Thu, 16 Jan 2020 10:42:46 GMT" + "Sun, 18 Apr 2021 14:10:35 GMT" ], "Content-Length": [ - "2256" + "2247" ], "Content-Type": [ "application/json" @@ -30467,29 +33920,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.9590716Z\",\r\n \"endTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f283be66-6c70-47cb-86ef-6a0929d27922-2020-01-16 10:43:07Z-Ps" + "a63a8932-aea5-4841-9f79-79240b576d22" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167787485)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772587485)\\/\",\"ClientRequestId\":\"f283be66-6c70-47cb-86ef-6a0929d27922-2020-01-16 10:43:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LefXorI/oa7Yax7+X5tBqjR9wam8iMAe24MMmwV1jwo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751456122)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356256122)\\/\",\"ClientRequestId\":\"5eefd9fa-c7bf-435b-95fe-edb70b482e45-2021-04-18 14:10:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sMdUpAyBd7CBj8TLdvUcWZwYk9M7/mr+Ekq31yR9Gqs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30500,38 +33953,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11604" + "11609" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f283be66-6c70-47cb-86ef-6a0929d27922-2020-01-16 10:43:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a63a8932-aea5-4841-9f79-79240b576d22" ], "x-ms-correlation-request-id": [ - "12d27536-43dc-4dc4-8738-bdafcf02a314" + "c767f20e-800e-4206-b32e-32d1858b522a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104309Z:12d27536-43dc-4dc4-8738-bdafcf02a314" + "CENTRALUSEUAP:20210418T141056Z:c767f20e-800e-4206-b32e-32d1858b522a" ], "Date": [ - "Thu, 16 Jan 2020 10:43:08 GMT" + "Sun, 18 Apr 2021 14:10:55 GMT" ], "Content-Length": [ - "2256" + "2247" ], "Content-Type": [ "application/json" @@ -30540,29 +33990,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.9590716Z\",\r\n \"endTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9eb1aaa-0fb6-483b-9e43-5d139b86d98a-2020-01-16 10:43:29Z-Ps" + "e890d951-87a9-4ce9-baaa-81990f2a338f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167809241)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772609241)\\/\",\"ClientRequestId\":\"a9eb1aaa-0fb6-483b-9e43-5d139b86d98a-2020-01-16 10:43:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KZkkCnt/VjoCy6ZYcBXiCE+oNvOlVnowzXefmkRE/bw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751476714)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356276714)\\/\",\"ClientRequestId\":\"8ea443b4-40ad-4b5d-85b4-b9d8088912c0-2021-04-18 14:11:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Eu9Eb8Rr4iHsIBsmdrslLAOLyeLfsigjgR8SlR5B3Fo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30573,38 +34023,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11602" + "11608" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a9eb1aaa-0fb6-483b-9e43-5d139b86d98a-2020-01-16 10:43:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e890d951-87a9-4ce9-baaa-81990f2a338f" ], "x-ms-correlation-request-id": [ - "dbd30056-203c-4d90-84b0-c38475f4794c" + "88baf21d-b449-48ae-97a3-ce26a23adf2a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104329Z:dbd30056-203c-4d90-84b0-c38475f4794c" + "CENTRALUSEUAP:20210418T141116Z:88baf21d-b449-48ae-97a3-ce26a23adf2a" ], "Date": [ - "Thu, 16 Jan 2020 10:43:29 GMT" + "Sun, 18 Apr 2021 14:11:16 GMT" ], "Content-Length": [ - "2256" + "2247" ], "Content-Type": [ "application/json" @@ -30613,29 +34060,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.9590716Z\",\r\n \"endTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db61a751-36a4-4016-89be-362c1fb34272-2020-01-16 10:43:50Z-Ps" + "f289f37f-800b-4ece-99e1-f6ac38aea2c8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167830072)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772630072)\\/\",\"ClientRequestId\":\"db61a751-36a4-4016-89be-362c1fb34272-2020-01-16 10:43:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yXZ//pwSmyVNggaaTWv5DkfsmNWVJb5OtgpYRo27/bo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751497103)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356297103)\\/\",\"ClientRequestId\":\"24a6fcee-935f-4edc-b845-34e57a1146e7-2021-04-18 14:11:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"c3zZr6hCwu2h8h2uSi0DQd5A6XY1HksCh1gzf7CQVbA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30646,38 +34093,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11598" + "11607" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "db61a751-36a4-4016-89be-362c1fb34272-2020-01-16 10:43:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f289f37f-800b-4ece-99e1-f6ac38aea2c8" ], "x-ms-correlation-request-id": [ - "25e69b12-8909-4c85-a152-4b139637ccdf" + "6bbb5a86-63b5-48df-a882-4c2fcd6a2d75" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104350Z:25e69b12-8909-4c85-a152-4b139637ccdf" + "CENTRALUSEUAP:20210418T141137Z:6bbb5a86-63b5-48df-a882-4c2fcd6a2d75" ], "Date": [ - "Thu, 16 Jan 2020 10:43:49 GMT" + "Sun, 18 Apr 2021 14:11:37 GMT" ], "Content-Length": [ - "2256" + "2247" ], "Content-Type": [ "application/json" @@ -30686,29 +34130,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.9590716Z\",\r\n \"endTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab2ef495-59b5-42d0-808c-c2e6ca6a340d-2020-01-16 10:44:10Z-Ps" + "e303bfc6-3488-4f01-8ca6-62d3c3d87647" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167850587)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772650587)\\/\",\"ClientRequestId\":\"ab2ef495-59b5-42d0-808c-c2e6ca6a340d-2020-01-16 10:44:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"u8QVdc/DVIn/8XUEzM21q5DczSLKUvkNMW/aVgCOhm4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751517532)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356317532)\\/\",\"ClientRequestId\":\"8ed10253-27ee-4192-855c-36eabe4a64e0-2021-04-18 14:11:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZadAmKxJG3+n6dkJT4kZPhsu32seWSw0efyH8csllpY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30719,38 +34163,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11593" + "11606" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ab2ef495-59b5-42d0-808c-c2e6ca6a340d-2020-01-16 10:44:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e303bfc6-3488-4f01-8ca6-62d3c3d87647" ], "x-ms-correlation-request-id": [ - "efcd7c1b-fdf2-487e-9650-4928806c4481" + "7a96c61c-12a4-4bef-8a31-21f5d4a4c2f9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104411Z:efcd7c1b-fdf2-487e-9650-4928806c4481" + "CENTRALUSEUAP:20210418T141157Z:7a96c61c-12a4-4bef-8a31-21f5d4a4c2f9" ], "Date": [ - "Thu, 16 Jan 2020 10:44:10 GMT" + "Sun, 18 Apr 2021 14:11:57 GMT" ], "Content-Length": [ - "2256" + "2247" ], "Content-Type": [ "application/json" @@ -30759,29 +34200,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.9590716Z\",\r\n \"endTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "627bd91f-032e-418f-84b3-9ca13abb1a85-2020-01-16 10:44:31Z-Ps" + "6a703260-6643-4078-a490-64ad7583cdca" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167871143)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772671143)\\/\",\"ClientRequestId\":\"627bd91f-032e-418f-84b3-9ca13abb1a85-2020-01-16 10:44:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dwFizcP3un2SflsVijBanTUVUvPqijFq/wAp1trYue8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751537935)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356337935)\\/\",\"ClientRequestId\":\"604422bb-e5d1-4e81-8e8f-c1dedcaadb93-2021-04-18 14:12:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"neNUE9SBIRG+6ReULI1dyAmH+FqIftzpXezuey8KWOM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30791,39 +34232,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11605" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "627bd91f-032e-418f-84b3-9ca13abb1a85-2020-01-16 10:44:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11586" + "6a703260-6643-4078-a490-64ad7583cdca" ], "x-ms-correlation-request-id": [ - "0b00a3dd-2922-498d-ac38-0deb4ec60d9f" + "512d5bda-7cc5-4c15-849a-b65284a39a5c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104431Z:0b00a3dd-2922-498d-ac38-0deb4ec60d9f" + "CENTRALUSEUAP:20210418T141218Z:512d5bda-7cc5-4c15-849a-b65284a39a5c" ], "Date": [ - "Thu, 16 Jan 2020 10:44:30 GMT" + "Sun, 18 Apr 2021 14:12:17 GMT" ], "Content-Length": [ - "2256" + "2247" ], "Content-Type": [ "application/json" @@ -30832,29 +34270,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.9590716Z\",\r\n \"endTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06862ba2-1b30-4173-9f62-a118d89f046b-2020-01-16 10:44:51Z-Ps" + "19bd0216-1471-44f5-9da0-763a4d6a63ca" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167891653)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772691653)\\/\",\"ClientRequestId\":\"06862ba2-1b30-4173-9f62-a118d89f046b-2020-01-16 10:44:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xAhLOXA45uaH3JO4eRlK6arHf4mqdZCLWkQE/wNw5u8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751558356)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356358356)\\/\",\"ClientRequestId\":\"eb5f0c22-8eed-426b-823a-f7bc5833163a-2021-04-18 14:12:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ikBZeNsqg/s2lXW36Yx+TXozg8Fzt67qpiXRKQUjeAU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30865,38 +34303,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11585" + "11604" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "06862ba2-1b30-4173-9f62-a118d89f046b-2020-01-16 10:44:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "19bd0216-1471-44f5-9da0-763a4d6a63ca" ], "x-ms-correlation-request-id": [ - "6914ef73-83b9-4b92-b4f9-970a63b4fa87" + "82b613a0-2c19-47f3-a73c-aeb4639e1719" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104453Z:6914ef73-83b9-4b92-b4f9-970a63b4fa87" + "CENTRALUSEUAP:20210418T141238Z:82b613a0-2c19-47f3-a73c-aeb4639e1719" ], "Date": [ - "Thu, 16 Jan 2020 10:44:53 GMT" + "Sun, 18 Apr 2021 14:12:38 GMT" ], "Content-Length": [ - "2256" + "2247" ], "Content-Type": [ "application/json" @@ -30905,29 +34340,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.9590716Z\",\r\n \"endTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54741399-ca2e-4b61-88db-495249c1c331-2020-01-16 10:45:13Z-Ps" + "382daed6-ad44-414e-afca-6742df7fa900" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167913469)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772713469)\\/\",\"ClientRequestId\":\"54741399-ca2e-4b61-88db-495249c1c331-2020-01-16 10:45:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ii1jwaQn/WdxfFQibVe2KRn/WYuAV8ZCSuZd+7P0m2c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751578810)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356378810)\\/\",\"ClientRequestId\":\"0dc55fb4-c1b2-41f6-a9d4-40e73ed0537a-2021-04-18 14:12:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tiuI3OkoVXv2ulW++pyIDeWwLhW3NQ9Dk4SQeeYl96s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30938,38 +34373,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11600" + "11603" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "54741399-ca2e-4b61-88db-495249c1c331-2020-01-16 10:45:13Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "382daed6-ad44-414e-afca-6742df7fa900" ], "x-ms-correlation-request-id": [ - "cb11794c-25a8-4ee1-a6f9-f6c49be8fa78" + "5b969bce-2c73-4336-8554-8162fbda7bc9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104513Z:cb11794c-25a8-4ee1-a6f9-f6c49be8fa78" + "CENTRALUSEUAP:20210418T141259Z:5b969bce-2c73-4336-8554-8162fbda7bc9" ], "Date": [ - "Thu, 16 Jan 2020 10:45:13 GMT" + "Sun, 18 Apr 2021 14:12:58 GMT" ], "Content-Length": [ - "2256" + "2247" ], "Content-Type": [ "application/json" @@ -30978,29 +34410,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.9590716Z\",\r\n \"endTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ff9d6e3-b6b9-4222-b61b-c41bda294b73-2020-01-16 10:45:34Z-Ps" + "bd67885b-6b7c-4360-8959-6cf690121b33" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167934092)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772734092)\\/\",\"ClientRequestId\":\"6ff9d6e3-b6b9-4222-b61b-c41bda294b73-2020-01-16 10:45:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"k/xly0bDwMfCE1PW18rtTynHmrDqA4/IOtMSIGDLwgo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751599232)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356399232)\\/\",\"ClientRequestId\":\"a67ca612-5ee9-499a-ab65-3f72ed2d0c07-2021-04-18 14:13:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"y69nNks3IjCozP4X4Yw/m7B+dpVaHSzk9R4zf/HZWuI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -31011,38 +34443,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11597" + "11602" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "6ff9d6e3-b6b9-4222-b61b-c41bda294b73-2020-01-16 10:45:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bd67885b-6b7c-4360-8959-6cf690121b33" ], "x-ms-correlation-request-id": [ - "c5eac2e4-8c5c-4842-90a1-f29afb155c99" + "55be5c8d-f4af-4a8b-874c-e2e8d716d044" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104534Z:c5eac2e4-8c5c-4842-90a1-f29afb155c99" + "CENTRALUSEUAP:20210418T141319Z:55be5c8d-f4af-4a8b-874c-e2e8d716d044" ], "Date": [ - "Thu, 16 Jan 2020 10:45:34 GMT" + "Sun, 18 Apr 2021 14:13:18 GMT" ], "Content-Length": [ - "2256" + "2247" ], "Content-Type": [ "application/json" @@ -31051,29 +34480,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.9590716Z\",\r\n \"endTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c518157-64f9-4eb3-9621-1824fbf5d0d3-2020-01-16 10:45:54Z-Ps" + "621697b1-1b50-424d-9b16-8c3fde1a5036" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167954701)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772754701)\\/\",\"ClientRequestId\":\"3c518157-64f9-4eb3-9621-1824fbf5d0d3-2020-01-16 10:45:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"66ELcUUZttn57goFzeE8r31GBCJ6skVIvkYKkkw54VE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751619649)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356419649)\\/\",\"ClientRequestId\":\"3a018a05-34e4-4cc1-b813-5a5a07e8c8da-2021-04-18 14:13:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BmybqU5wtGv2rfM2j50IsC2h+tfauUFmGQ0xJUok6wo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -31084,38 +34513,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11596" + "11601" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3c518157-64f9-4eb3-9621-1824fbf5d0d3-2020-01-16 10:45:54Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "621697b1-1b50-424d-9b16-8c3fde1a5036" ], "x-ms-correlation-request-id": [ - "91c44e58-bdc6-4de1-8873-dc6c20f84b2c" + "6f34da66-1033-44c4-a3ef-97c396e3d3b4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104555Z:91c44e58-bdc6-4de1-8873-dc6c20f84b2c" + "CENTRALUSEUAP:20210418T141339Z:6f34da66-1033-44c4-a3ef-97c396e3d3b4" ], "Date": [ - "Thu, 16 Jan 2020 10:45:54 GMT" + "Sun, 18 Apr 2021 14:13:39 GMT" ], "Content-Length": [ - "2256" + "2247" ], "Content-Type": [ "application/json" @@ -31124,29 +34550,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.9590716Z\",\r\n \"endTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9611517f-db1e-4537-813c-fa22d29c5f3e-2020-01-16 10:46:15Z-Ps" + "93f2f5e2-bc1b-431c-9590-f160978a81bc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167975255)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772775255)\\/\",\"ClientRequestId\":\"9611517f-db1e-4537-813c-fa22d29c5f3e-2020-01-16 10:46:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Qnk2c89DU1B8JeHPNiogZHRrvxZylOM9ckVXs2SbBuo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751640112)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356440112)\\/\",\"ClientRequestId\":\"b3c4d0e6-2cc0-4fbd-ba59-785cfb71f83d-2021-04-18 14:14:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CRt7iQH6Z2iIhfyLIk6R4dNmBSI1G+Fg293kyP4nr0A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -31157,38 +34583,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11594" + "11600" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9611517f-db1e-4537-813c-fa22d29c5f3e-2020-01-16 10:46:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "93f2f5e2-bc1b-431c-9590-f160978a81bc" ], "x-ms-correlation-request-id": [ - "f860785f-34ac-46cd-8fb9-a551fcf194ca" + "179664ed-cb66-4be4-bd79-6533e5a619ea" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104616Z:f860785f-34ac-46cd-8fb9-a551fcf194ca" + "CENTRALUSEUAP:20210418T141400Z:179664ed-cb66-4be4-bd79-6533e5a619ea" ], "Date": [ - "Thu, 16 Jan 2020 10:46:15 GMT" + "Sun, 18 Apr 2021 14:14:00 GMT" ], "Content-Length": [ - "2256" + "2247" ], "Content-Type": [ "application/json" @@ -31197,29 +34620,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.9590716Z\",\r\n \"endTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54badfbd-2276-45d2-ad83-dca0a197523b-2020-01-16 10:46:36Z-Ps" + "e3d4a4f6-68a7-4a18-a0a0-2021ec9428f5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579167996879)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772796879)\\/\",\"ClientRequestId\":\"54badfbd-2276-45d2-ad83-dca0a197523b-2020-01-16 10:46:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"alHSESRMvcMZuWgOK9G6VcsYx+b23ZK74uEEPPmMsRo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751660538)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356460538)\\/\",\"ClientRequestId\":\"f2f71738-6352-40d5-bb2f-6fdd7e7cc517-2021-04-18 14:14:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rdEVSP+GOTjaOfrZBN1/TMDm3Nqcwzr3gtdC5xfVh3Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -31230,38 +34653,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11593" + "11599" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "54badfbd-2276-45d2-ad83-dca0a197523b-2020-01-16 10:46:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e3d4a4f6-68a7-4a18-a0a0-2021ec9428f5" ], "x-ms-correlation-request-id": [ - "bbbf2713-a857-4739-ba31-d56cdbedc2c2" + "a9a49104-b79f-4efd-9adf-065ec23f36e2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104637Z:bbbf2713-a857-4739-ba31-d56cdbedc2c2" + "CENTRALUSEUAP:20210418T141420Z:a9a49104-b79f-4efd-9adf-065ec23f36e2" ], "Date": [ - "Thu, 16 Jan 2020 10:46:37 GMT" + "Sun, 18 Apr 2021 14:14:20 GMT" ], "Content-Length": [ - "2256" + "2247" ], "Content-Type": [ "application/json" @@ -31270,29 +34690,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.9590716Z\",\r\n \"endTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e2ff046-9254-4e9a-9e7a-e6d2f0fe0e75-2020-01-16 10:46:57Z-Ps" + "0e31be98-cbc6-4080-83cc-8b751fbf23f5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579168017520)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772817520)\\/\",\"ClientRequestId\":\"3e2ff046-9254-4e9a-9e7a-e6d2f0fe0e75-2020-01-16 10:46:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hNBxVdhYzGOGmiVD/4kxkOYoWlER3qtEkBmC9dUnedU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751681085)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356481085)\\/\",\"ClientRequestId\":\"4191146b-f508-4219-a8ee-70ab850a8bd0-2021-04-18 14:14:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"D4hY8MWSIo8rjHGtA9y+nq6YR5wtdXL2nmhmvjIvnLQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -31303,38 +34723,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11588" + "11598" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3e2ff046-9254-4e9a-9e7a-e6d2f0fe0e75-2020-01-16 10:46:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0e31be98-cbc6-4080-83cc-8b751fbf23f5" ], "x-ms-correlation-request-id": [ - "095ab8a0-87d7-4bca-b91b-7a606f724081" + "5be8b2dc-e343-44bb-9848-9cb980ebe02d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104657Z:095ab8a0-87d7-4bca-b91b-7a606f724081" + "CENTRALUSEUAP:20210418T141441Z:5be8b2dc-e343-44bb-9848-9cb980ebe02d" ], "Date": [ - "Thu, 16 Jan 2020 10:46:57 GMT" + "Sun, 18 Apr 2021 14:14:40 GMT" ], "Content-Length": [ - "2256" + "2247" ], "Content-Type": [ "application/json" @@ -31343,29 +34760,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.9590716Z\",\r\n \"endTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73e9949d-1867-4019-aa27-e4f517cd2f7d-2020-01-16 10:47:18Z-Ps" + "be4f0280-3b53-4cf2-b699-7f09bb278cf9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579168038090)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772838090)\\/\",\"ClientRequestId\":\"73e9949d-1867-4019-aa27-e4f517cd2f7d-2020-01-16 10:47:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VT2aWcjTZ+59iGJo16LljBW7jCardCE8VWxiJDO6N1Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751701492)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356501492)\\/\",\"ClientRequestId\":\"15bf994f-cc7d-4b4f-9de0-1bdb7152f029-2021-04-18 14:15:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zL1Nkqppam+yOa4w9lMjZ5eKIg2q+ZwsT7bbnyXx3/0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -31376,38 +34793,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11587" + "11655" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "73e9949d-1867-4019-aa27-e4f517cd2f7d-2020-01-16 10:47:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "be4f0280-3b53-4cf2-b699-7f09bb278cf9" ], "x-ms-correlation-request-id": [ - "91e9632f-25fa-4d7c-9b0f-f8729a86ae88" + "27159b9e-40d7-4b76-9e4a-f6801967e685" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104718Z:91e9632f-25fa-4d7c-9b0f-f8729a86ae88" + "CENTRALUSEUAP:20210418T141501Z:27159b9e-40d7-4b76-9e4a-f6801967e685" ], "Date": [ - "Thu, 16 Jan 2020 10:47:17 GMT" + "Sun, 18 Apr 2021 14:15:01 GMT" ], "Content-Length": [ - "2256" + "2247" ], "Content-Type": [ "application/json" @@ -31416,29 +34830,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.9590716Z\",\r\n \"endTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c20f301d-308c-44f3-84a1-d1b7a5707711-2020-01-16 10:47:38Z-Ps" + "ea092d8f-4c22-427f-8573-a0aee7b072c8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579168058564)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772858564)\\/\",\"ClientRequestId\":\"c20f301d-308c-44f3-84a1-d1b7a5707711-2020-01-16 10:47:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"b0EjwO/+cDGMug+uHj+/+kVzsbp0UCrp5li5YliWW1s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751721934)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356521934)\\/\",\"ClientRequestId\":\"0ba19b74-7125-45a3-88cf-d8d2ed891a83-2021-04-18 14:15:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vB+ZEah3BEC8MTspV3cP2kbO/N1MW/Prt9afI3f06ZY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -31452,35 +34866,32 @@ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c20f301d-308c-44f3-84a1-d1b7a5707711-2020-01-16 10:47:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ea092d8f-4c22-427f-8573-a0aee7b072c8" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11585" + "11654" ], "x-ms-correlation-request-id": [ - "98883ca0-1aa1-494e-bea9-b5c5ffb483d7" + "1fb353f4-6bf2-44fd-859f-6d9771de2650" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104738Z:98883ca0-1aa1-494e-bea9-b5c5ffb483d7" + "CENTRALUSEUAP:20210418T141522Z:1fb353f4-6bf2-44fd-859f-6d9771de2650" ], "Date": [ - "Thu, 16 Jan 2020 10:47:37 GMT" + "Sun, 18 Apr 2021 14:15:22 GMT" ], "Content-Length": [ - "2256" + "2247" ], "Content-Type": [ "application/json" @@ -31489,29 +34900,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.9590716Z\",\r\n \"endTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89480403-f9bf-4ea6-a07c-39830c477a1a-2020-01-16 10:47:59Z-Ps" + "5128d597-88e5-433f-8d29-062599fa2a0f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579168079118)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772879118)\\/\",\"ClientRequestId\":\"89480403-f9bf-4ea6-a07c-39830c477a1a-2020-01-16 10:47:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fJ2SCpFPVFBWYCrXxAM8C3NcE/VOKlVwNDMFMkzWOVg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751742415)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356542415)\\/\",\"ClientRequestId\":\"dd83e4bf-6fd9-46c0-86c8-4aa9bfc8b559-2021-04-18 14:15:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mKYgzs5XILOD2M/mRe5JEmf2rBa0us+fKq5ifLu5vQ4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -31522,38 +34933,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11583" + "11653" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "89480403-f9bf-4ea6-a07c-39830c477a1a-2020-01-16 10:47:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5128d597-88e5-433f-8d29-062599fa2a0f" ], "x-ms-correlation-request-id": [ - "c35397d9-3a72-42ec-8400-266178ce0a95" + "b6d34f51-3bb6-457f-8de8-5c2fc9bf8221" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104759Z:c35397d9-3a72-42ec-8400-266178ce0a95" + "CENTRALUSEUAP:20210418T141542Z:b6d34f51-3bb6-457f-8de8-5c2fc9bf8221" ], "Date": [ - "Thu, 16 Jan 2020 10:47:59 GMT" + "Sun, 18 Apr 2021 14:15:42 GMT" ], "Content-Length": [ - "2256" + "2247" ], "Content-Type": [ "application/json" @@ -31562,29 +34970,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.9590716Z\",\r\n \"endTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c32d651-2d2f-4f3f-a835-2780a90c4cfa-2020-01-16 10:48:19Z-Ps" + "08ac5a42-ad8e-4498-923e-bf646eb9f2a1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579168099668)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772899668)\\/\",\"ClientRequestId\":\"0c32d651-2d2f-4f3f-a835-2780a90c4cfa-2020-01-16 10:48:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fRgYowJS6Br1m4eyXwXKojcNSgAlibhCUalJ6fdg7Ss=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751762918)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356562918)\\/\",\"ClientRequestId\":\"4715e6a4-20c1-49f3-8020-d3c520eb5233-2021-04-18 14:16:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3iDR3Kzc20HBBTNy91Wvar//gAOOLS6PdVLEo7wsqzQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -31595,38 +35003,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11582" + "11652" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "0c32d651-2d2f-4f3f-a835-2780a90c4cfa-2020-01-16 10:48:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "08ac5a42-ad8e-4498-923e-bf646eb9f2a1" ], "x-ms-correlation-request-id": [ - "fabbbd56-3342-4b96-b9dc-b448c51378fc" + "84b2bf4b-42a9-40ba-aed5-b851d3e8b78f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104820Z:fabbbd56-3342-4b96-b9dc-b448c51378fc" + "CENTRALUSEUAP:20210418T141603Z:84b2bf4b-42a9-40ba-aed5-b851d3e8b78f" ], "Date": [ - "Thu, 16 Jan 2020 10:48:19 GMT" + "Sun, 18 Apr 2021 14:16:03 GMT" ], "Content-Length": [ - "2256" + "2247" ], "Content-Type": [ "application/json" @@ -31635,29 +35040,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.9590716Z\",\r\n \"endTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwMi9yZXBsaWNhdGlvbkpvYnMvODE1ZTdiNTktMWE4My00MWNiLWI3YWItZjkzZTE4MGU5MGYwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMDIyL3JlcGxpY2F0aW9uSm9icy81ZWQxN2VlMi1iNmRjLTRjMzgtYjgwYS1jNzA2OTAzYjI3YTg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "436f90ac-04f8-4ee5-82c2-9f0258907776-2020-01-16 10:48:40Z-Ps" + "8dfd014a-68ff-4141-837d-0e48ed37b94e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579168120233)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579772920233)\\/\",\"ClientRequestId\":\"436f90ac-04f8-4ee5-82c2-9f0258907776-2020-01-16 10:48:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vkRVxgK/mZuTlr5G2rMZNvU9w0EcIzPQHTdHgzJZBOw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618751783299)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619356583299)\\/\",\"ClientRequestId\":\"caac5d95-1ab6-4df5-b0c4-a3c7eec7106b-2021-04-18 14:16:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WaoReEEzZsDQugT+CoI55Bmk60acYMczDleMh8zOv1U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -31668,38 +35073,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11577" + "11651" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "436f90ac-04f8-4ee5-82c2-9f0258907776-2020-01-16 10:48:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8dfd014a-68ff-4141-837d-0e48ed37b94e" ], "x-ms-correlation-request-id": [ - "ed0d6a13-8086-45e5-b724-c8288917da3a" + "66736fdb-5ff0-4be4-b7c8-2b9fd37c5301" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200116T104840Z:ed0d6a13-8086-45e5-b724-c8288917da3a" + "CENTRALUSEUAP:20210418T141623Z:66736fdb-5ff0-4be4-b7c8-2b9fd37c5301" ], "Date": [ - "Thu, 16 Jan 2020 10:48:39 GMT" + "Sun, 18 Apr 2021 14:16:22 GMT" ], "Content-Length": [ - "2286" + "2277" ], "Content-Type": [ "application/json" @@ -31708,13 +35110,13 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg102/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest102/replicationJobs/815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"name\": \"815e7b59-1a83-41cb-b7ab-f93e180e90f0\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4b269a99-b119-422b-9f26-298d62b36754-2020-01-16 10:42:23Z-Ps ActivityId: 4cb2cfc2-24d7-48bb-9f25-89c8cd7a935d\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2020-01-16T10:42:26.9590716Z\",\r\n \"endTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2020-01-16T10:42:27.0371995Z\",\r\n \"endTime\": \"2020-01-16T10:48:37.2028081Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-16T10:42:25.821959Z\",\r\n \"endTime\": \"2020-01-16T10:48:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"targetObjectName\": \"a2aVM102\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"db5a6de8-e729-537e-b855-408231c44c91\",\r\n \"primaryVmName\": \"a2avm102\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm102\",\r\n \"protectionProfileId\": \"c3743ffa-159b-5447-a3b3-1cd710730234\",\r\n \"primaryCloudId\": \"eabd4c97-8b43-5308-99b5-bc76e8dab88f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer102\",\r\n \"recoveryCloudId\": \"7e66e9c4-749a-544e-a35a-93c3c9ab2b83\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer102\",\r\n \"primaryVmmId\": \"bfdfcda8-b38f-5230-8224-df7527918a55\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"43f1b3d3-98b8-50c4-9d81-53cfd5c0ce25\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1022/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1022/replicationJobs/5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"name\": \"5ed17ee2-b6dc-4c38-b80a-c706903b27a8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ebaacb3b-9f3d-461c-8806-650a8d205574 ActivityId: 79f06675-c817-4d70-8b98-e857800378fd\",\r\n \"scenarioName\": \"RemoveDisks\",\r\n \"friendlyName\": \"Remove Disks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RemoveDisksPreflightTask\",\r\n \"name\": \"RemoveDisksPreflightTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.619368Z\",\r\n \"endTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check to remove protected disk(s) \",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"RemoveDisksTask\",\r\n \"name\": \"RemoveDisksTask\",\r\n \"startTime\": \"2021-04-18T13:46:24.8193734Z\",\r\n \"endTime\": \"2021-04-18T14:16:15.4784346Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Removing protected disk(s)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T13:46:23.2796588Z\",\r\n \"endTime\": \"2021-04-18T14:16:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"targetObjectName\": \"a2aVM1022\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"09a5f852-3670-5156-9bd6-0fd3593fa002\",\r\n \"primaryVmName\": \"a2avm1022\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1022\",\r\n \"protectionProfileId\": \"83333df0-e19f-5c24-8e3c-8f98424ba2ec\",\r\n \"primaryCloudId\": \"3c4d84f1-1ada-5cdb-af9f-8f6e75ac8bb0\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1022\",\r\n \"recoveryCloudId\": \"d4934c92-a22e-5fbe-98cd-c46722a4d099\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1022\",\r\n \"primaryVmmId\": \"9306c81a-1b07-5c6a-8994-a4b1b512e9aa\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"67563c46-72d9-5ce2-bc02-e6fb4a25171a\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { "SubscriptionId": "509099b2-9d2c-4636-b43e-bd5cafb6be69", - "NamingSuffix": "763e2cc0-f849-4bb3-b86c-2f45c2787c36" + "NamingSuffix": "1ce455f0-de29-4bbd-862a-b9bd1f6ed7f9" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2AReplicateProximityPlacementGroupVm.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2AReplicateProximityPlacementGroupVm.json index d9b75e79d680..ff5130f38b4e 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2AReplicateProximityPlacementGroupVm.json +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2AReplicateProximityPlacementGroupVm.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recRG910?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL3JlY1JHOTEwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recRG9100?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL3JlY1JHOTEwMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "81df612f-bd7e-4cd7-94e5-56dfc94fa95f" + "8d2d621e-974a-4327-91ec-43f283570fba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "28" + "35" ] }, "ResponseHeaders": { @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "397e58a2-4271-4eac-8394-ebe18a036faa" + "8121e629-830e-4da5-94cc-a062f0f68c65" ], "x-ms-correlation-request-id": [ - "397e58a2-4271-4eac-8394-ebe18a036faa" + "8121e629-830e-4da5-94cc-a062f0f68c65" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002523Z:397e58a2-4271-4eac-8394-ebe18a036faa" + "CENTRALINDIA:20210419T065219Z:8121e629-830e-4da5-94cc-a062f0f68c65" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:25:23 GMT" + "Mon, 19 Apr 2021 06:52:19 GMT" ], "Content-Length": [ - "169" + "178" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910\",\r\n \"name\": \"recRG910\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100\",\r\n \"name\": \"recRG9100\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork910?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrOTEwP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork9100?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL0EyQVJlY292ZXJ5TmV0d29yazkxMDA/YXBpLXZlcnNpb249MjAyMC0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d054118-df62-46c6-a488-8c5798cb18b2" + "1884f675-7e92-4855-b3e9-5336256e6808" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.20.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "b98289e4-d343-4580-aeac-b592d5ebbd51" + "39b8ef70-a0c7-4353-aa35-87acbcdc56ea" ], "x-ms-correlation-request-id": [ - "b98289e4-d343-4580-aeac-b592d5ebbd51" + "39b8ef70-a0c7-4353-aa35-87acbcdc56ea" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002544Z:b98289e4-d343-4580-aeac-b592d5ebbd51" + "CENTRALINDIA:20210419T065241Z:39b8ef70-a0c7-4353-aa35-87acbcdc56ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:25:43 GMT" + "Mon, 19 Apr 2021 06:52:40 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,23 +120,26 @@ "-1" ], "Content-Length": [ - "167" + "237" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/A2ARecoveryNetwork910' under resource group 'recRG910' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/A2ARecoveryNetwork9100' under resource group 'recRG9100' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork910?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrOTEwP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork9100?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL0EyQVJlY292ZXJ5TmV0d29yazkxMDA/YXBpLXZlcnNpb249MjAyMC0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1884f675-7e92-4855-b3e9-5336256e6808" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.20.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -147,16 +150,16 @@ "no-cache" ], "ETag": [ - "W/\"0d8a9192-2762-41c5-8391-b9cde3c86906\"" + "W/\"cf640fc1-c530-4a7f-90da-32f1a2ecd460\"" ], "x-ms-request-id": [ - "17c7f46c-69a4-4ba5-859f-31ad3483864b" + "fc27b4f9-cf1f-48c1-95ae-3462752ef0b6" ], "x-ms-correlation-request-id": [ - "890b2eb0-b7f9-4bb8-b446-c6b937fa4850" + "5fce2cdc-a023-4158-b791-7a22679a5d04" ], "x-ms-arm-service-request-id": [ - "7b6ce2f1-b3d0-4102-a225-54a3f95db30a" + "ceb885fc-1d16-4361-ab80-ff1b0f04ec57" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -166,19 +169,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11739" + "11997" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002558Z:890b2eb0-b7f9-4bb8-b446-c6b937fa4850" + "CENTRALINDIA:20210419T065256Z:5fce2cdc-a023-4158-b791-7a22679a5d04" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:25:58 GMT" + "Mon, 19 Apr 2021 06:52:56 GMT" ], "Content-Length": [ - "1333" + "1311" ], "Content-Type": [ "application/json; charset=utf-8" @@ -187,26 +190,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork910\",\r\n \"etag\": \"W/\\\"0d8a9192-2762-41c5-8391-b9cde3c86906\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e99be16a-c9e5-4919-8bc0-1c663c8dc807\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork910/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"0d8a9192-2762-41c5-8391-b9cde3c86906\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork9100\",\r\n \"etag\": \"W/\\\"cf640fc1-c530-4a7f-90da-32f1a2ecd460\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"05c721f3-0de2-4f40-ba06-8bf9d6f41319\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork9100/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"cf640fc1-c530-4a7f-90da-32f1a2ecd460\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork910?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrOTEwP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork9100?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL0EyQVJlY292ZXJ5TmV0d29yazkxMDA/YXBpLXZlcnNpb249MjAyMC0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea0df0c5-0359-4c12-a128-3ee39809acc2" + "1884f675-7e92-4855-b3e9-5336256e6808" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.20.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -217,16 +220,16 @@ "no-cache" ], "ETag": [ - "W/\"0d8a9192-2762-41c5-8391-b9cde3c86906\"" + "W/\"cf640fc1-c530-4a7f-90da-32f1a2ecd460\"" ], "x-ms-request-id": [ - "48fcf888-62d8-43f3-91ad-4680962a8ab0" + "391bd582-bd25-47c1-b8b3-d0bf4b44d129" ], "x-ms-correlation-request-id": [ - "6d5b26ed-be74-4ac4-8957-201ba566651a" + "e86304c0-e496-4503-8d43-610e22ac20b1" ], "x-ms-arm-service-request-id": [ - "cfc58f89-550b-4982-80aa-f500aa36fba0" + "3920f636-1f21-41f1-913e-d21a6a92f4e3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -236,19 +239,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11738" + "11996" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002559Z:6d5b26ed-be74-4ac4-8957-201ba566651a" + "CENTRALINDIA:20210419T065256Z:e86304c0-e496-4503-8d43-610e22ac20b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:25:58 GMT" + "Mon, 19 Apr 2021 06:52:56 GMT" ], "Content-Length": [ - "1333" + "1311" ], "Content-Type": [ "application/json; charset=utf-8" @@ -257,32 +260,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork910\",\r\n \"etag\": \"W/\\\"0d8a9192-2762-41c5-8391-b9cde3c86906\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e99be16a-c9e5-4919-8bc0-1c663c8dc807\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork910/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"0d8a9192-2762-41c5-8391-b9cde3c86906\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork9100\",\r\n \"etag\": \"W/\\\"cf640fc1-c530-4a7f-90da-32f1a2ecd460\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"05c721f3-0de2-4f40-ba06-8bf9d6f41319\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork9100/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"cf640fc1-c530-4a7f-90da-32f1a2ecd460\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork910?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrOTEwP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork9100?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL0EyQVJlY292ZXJ5TmV0d29yazkxMDA/YXBpLXZlcnNpb249MjAyMC0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"frontendSubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"frontendSubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0b99946a-5940-4781-8e82-a4cac47d9e23" + "1884f675-7e92-4855-b3e9-5336256e6808" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.20.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "685" + "692" ] }, "ResponseHeaders": { @@ -296,19 +299,19 @@ "3" ], "x-ms-request-id": [ - "98d3e0d2-9810-4263-a90c-17bea9afc068" + "1fd77909-f1c3-47ec-ac9d-57b27cb17516" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/98d3e0d2-9810-4263-a90c-17bea9afc068?api-version=2020-03-01" + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westcentralus/operations/1fd77909-f1c3-47ec-ac9d-57b27cb17516?api-version=2020-11-01" ], "x-ms-correlation-request-id": [ - "391b2895-b2a6-48a9-8da9-65af3b0fb02f" + "59e8d4ec-9946-4daa-aa84-084972caae64" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "2285e9b5-d40f-46b7-b053-90f888320dcc" + "ab65f469-31e1-48af-a1e0-685ec9d6c5c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -321,16 +324,16 @@ "1199" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002554Z:391b2895-b2a6-48a9-8da9-65af3b0fb02f" + "CENTRALINDIA:20210419T065252Z:59e8d4ec-9946-4daa-aa84-084972caae64" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:25:53 GMT" + "Mon, 19 Apr 2021 06:52:52 GMT" ], "Content-Length": [ - "1331" + "1309" ], "Content-Type": [ "application/json; charset=utf-8" @@ -339,20 +342,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork910\",\r\n \"etag\": \"W/\\\"2991f5f2-eb8d-4c66-bd3d-b180fccc8035\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e99be16a-c9e5-4919-8bc0-1c663c8dc807\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork910/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"2991f5f2-eb8d-4c66-bd3d-b180fccc8035\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork9100\",\r\n \"etag\": \"W/\\\"44c900c7-e706-4a41-8c4f-975fa1eedf42\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"05c721f3-0de2-4f40-ba06-8bf9d6f41319\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork9100/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"44c900c7-e706-4a41-8c4f-975fa1eedf42\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/98d3e0d2-9810-4263-a90c-17bea9afc068?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOThkM2UwZDItOTgxMC00MjYzLWE5MGMtMTdiZWE5YWZjMDY4P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westcentralus/operations/1fd77909-f1c3-47ec-ac9d-57b27cb17516?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzFmZDc3OTA5LWYxYzMtNDdlYy1hYzlkLTU3YjI3Y2IxNzUxNj9hcGktdmVyc2lvbj0yMDIwLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "1884f675-7e92-4855-b3e9-5336256e6808" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.20.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -363,13 +369,13 @@ "no-cache" ], "x-ms-request-id": [ - "ddfd7b72-8ec0-4b38-98e4-27cbb1c16def" + "0f8e7e08-a52c-46d1-9290-ac3d946d7f6a" ], "x-ms-correlation-request-id": [ - "1c41fbb2-fb17-446d-86f9-e72b2bbcdcd5" + "247eba09-087a-4f6c-a118-af545488e616" ], "x-ms-arm-service-request-id": [ - "f423435f-7a02-446c-89e2-b113954b5e0c" + "f4ef9ee2-922b-4a79-88df-6bf45327f618" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -379,16 +385,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11740" + "11998" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002558Z:1c41fbb2-fb17-446d-86f9-e72b2bbcdcd5" + "CENTRALINDIA:20210419T065256Z:247eba09-087a-4f6c-a118-af545488e616" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:25:57 GMT" + "Mon, 19 Apr 2021 06:52:55 GMT" ], "Content-Length": [ "29" @@ -404,28 +410,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9wcm94aW1pdHlQbGFjZW1lbnRHcm91cHMvUFBHMS1hc3I/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvcHJveGltaXR5UGxhY2VtZW50R3JvdXBzL1BQRzEtYXNyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1aaf95d7-4a7b-40d0-8e17-a74d498f2a01" + "823eedab-6db3-4e21-a35d-e40f3ed2e2f3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "28" + "35" ] }, "ResponseHeaders": { @@ -442,7 +448,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "42f16647-6984-42e0-b6dc-405e94ab6505" + "44388a3a-1064-4516-944f-2e963a3f071d" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -452,19 +458,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "2f32d18c-4535-4b9c-8825-f78f6bc9e083" + "45465cec-3632-4eb6-a6ec-f802359b8282" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002608Z:2f32d18c-4535-4b9c-8825-f78f6bc9e083" + "CENTRALINDIA:20210419T065309Z:45465cec-3632-4eb6-a6ec-f802359b8282" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:26:08 GMT" + "Mon, 19 Apr 2021 06:53:09 GMT" ], "Content-Length": [ - "330" + "338" ], "Content-Type": [ "application/json; charset=utf-8" @@ -473,32 +479,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PPG1-asr\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PPG1-asr\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/proximityPlacementGroups/PPG2-asr?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9wcm94aW1pdHlQbGFjZW1lbnRHcm91cHMvUFBHMi1hc3I/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/proximityPlacementGroups/PPG2-asr?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvcHJveGltaXR5UGxhY2VtZW50R3JvdXBzL1BQRzItYXNyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9f15cd24-76c8-4496-938e-afd3691709c7" + "e5f0b58f-8db2-4540-a0cd-8b8e4380b1ae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "28" + "35" ] }, "ResponseHeaders": { @@ -515,7 +521,7 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "5d582d5f-3018-4049-91dc-762799eee8b6" + "fc8a9c3e-2395-4a3e-8da8-c5d7513394ea" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -525,19 +531,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "db1f8019-172c-4e5f-acb7-735ffdab0757" + "cbfdc656-49ff-4c0d-a50c-2f8d4cf52275" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002612Z:db1f8019-172c-4e5f-acb7-735ffdab0757" + "CENTRALINDIA:20210419T065314Z:cbfdc656-49ff-4c0d-a50c-2f8d4cf52275" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:26:11 GMT" + "Mon, 19 Apr 2021 06:53:13 GMT" ], "Content-Length": [ - "330" + "338" ], "Content-Type": [ "application/json; charset=utf-8" @@ -546,26 +552,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"PPG2-asr\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/proximityPlacementGroups/PPG2-asr\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"PPG2-asr\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/proximityPlacementGroups/PPG2-asr\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM910?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNOTEwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM9100?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNOTEwMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ad1c5ae1-78ba-4f8a-af54-2ae28f2f87c0" + "144c50d3-955f-4a07-bf05-7c3656b7cab2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" @@ -585,13 +591,13 @@ "1198" ], "x-ms-request-id": [ - "7ed19527-1afa-41fa-b14b-ad56efaa1eb0" + "29a65ebb-6856-48b3-9e4b-f40f8b9cc770" ], "x-ms-correlation-request-id": [ - "7ed19527-1afa-41fa-b14b-ad56efaa1eb0" + "29a65ebb-6856-48b3-9e4b-f40f8b9cc770" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002616Z:7ed19527-1afa-41fa-b14b-ad56efaa1eb0" + "CENTRALINDIA:20210419T065316Z:29a65ebb-6856-48b3-9e4b-f40f8b9cc770" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -600,10 +606,10 @@ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:26:15 GMT" + "Mon, 19 Apr 2021 06:53:16 GMT" ], "Content-Length": [ - "169" + "171" ], "Content-Type": [ "application/json; charset=utf-8" @@ -612,26 +618,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910\",\r\n \"name\": \"a2aVM910\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100\",\r\n \"name\": \"a2aVM9100\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Storage/storageAccounts/cache910?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvY2FjaGU5MTA/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Storage/storageAccounts/cache9100?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2NhY2hlOTEwMD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "abdb80ce-14e8-4599-8cbe-ee29d45ed079" + "05de0a0c-218d-4487-8557-d84a4c3e208c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" @@ -648,13 +654,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/westus/asyncoperations/3c512ce4-ce05-428f-b8ec-4ee6d7414e7e?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/cd3eedd2-0f06-4867-81cb-aa8be0d046a7?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "3c512ce4-ce05-428f-b8ec-4ee6d7414e7e" + "cd3eedd2-0f06-4867-81cb-aa8be0d046a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -666,16 +672,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "2a121fc0-2e9b-4e8f-bf14-b8bb994cbc1a" + "f39198c0-4184-4721-b195-c64e782f81c3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002644Z:2a121fc0-2e9b-4e8f-bf14-b8bb994cbc1a" + "CENTRALINDIA:20210419T065344Z:f39198c0-4184-4721-b195-c64e782f81c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:26:44 GMT" + "Mon, 19 Apr 2021 06:53:43 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -691,16 +697,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/westus/asyncoperations/3c512ce4-ce05-428f-b8ec-4ee6d7414e7e?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy8zYzUxMmNlNC1jZTA1LTQyOGYtYjhlYy00ZWU2ZDc0MTRlN2U/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/cd3eedd2-0f06-4867-81cb-aa8be0d046a7?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy9jZDNlZWRkMi0wZjA2LTQ4NjctODFjYi1hYThiZTBkMDQ2YTc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -711,31 +717,31 @@ "no-cache" ], "x-ms-request-id": [ - "778c0a17-81a6-4365-a11e-3c973abc110d" + "269fc427-b763-48a1-a4e6-9f3f5bcace24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], "x-ms-correlation-request-id": [ - "335ea193-0d9a-4c5f-97e1-31ee4f3fde15" + "4b7a18f0-6c23-4ddf-a5e3-8a8dc80e0ff5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002701Z:335ea193-0d9a-4c5f-97e1-31ee4f3fde15" + "CENTRALINDIA:20210419T065401Z:4b7a18f0-6c23-4ddf-a5e3-8a8dc80e0ff5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:01 GMT" + "Mon, 19 Apr 2021 06:54:00 GMT" ], "Content-Length": [ - "1027" + "1034" ], "Content-Type": [ "application/json" @@ -744,32 +750,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Storage/storageAccounts/cache910\",\r\n \"name\": \"cache910\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-23T00:26:43.69516Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-23T00:26:43.69516Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-23T00:26:43.6170357Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cache910.blob.core.windows.net/\",\r\n \"queue\": \"https://cache910.queue.core.windows.net/\",\r\n \"table\": \"https://cache910.table.core.windows.net/\",\r\n \"file\": \"https://cache910.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Storage/storageAccounts/cache9100\",\r\n \"name\": \"cache9100\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-19T06:53:42.5781579Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-19T06:53:42.5781579Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-04-19T06:53:42.4531605Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cache9100.blob.core.windows.net/\",\r\n \"queue\": \"https://cache9100.queue.core.windows.net/\",\r\n \"table\": \"https://cache9100.table.core.windows.net/\",\r\n \"file\": \"https://cache9100.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Storage/storageAccounts/rlog910?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvcmxvZzkxMD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Storage/storageAccounts/rlog9100?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3Jsb2c5MTAwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b5316a50-7b4b-4a17-aa8d-3d7deea78fec" + "f2523701-f579-44fa-b657-f60480296065" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "98" + "105" ] }, "ResponseHeaders": { @@ -780,34 +786,34 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/23288b1e-4799-415c-8309-7373725a7884?monitor=true&api-version=2017-10-01" + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/ff942982-3a98-4279-897f-0427c6c9c24f?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "23288b1e-4799-415c-8309-7373725a7884" + "ff942982-3a98-4279-897f-0427c6c9c24f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], "x-ms-correlation-request-id": [ - "2a4f75e1-f47f-4d92-a0c0-1d7358afeaa3" + "22bbf738-5c0f-4411-9213-ab40a88f261f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002709Z:2a4f75e1-f47f-4d92-a0c0-1d7358afeaa3" + "CENTRALINDIA:20210419T065414Z:22bbf738-5c0f-4411-9213-ab40a88f261f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:08 GMT" + "Mon, 19 Apr 2021 06:54:13 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -823,16 +829,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/23288b1e-4799-415c-8309-7373725a7884?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yMzI4OGIxZS00Nzk5LTQxNWMtODMwOS03MzczNzI1YTc4ODQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/ff942982-3a98-4279-897f-0427c6c9c24f?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvZmY5NDI5ODItM2E5OC00Mjc5LTg5N2YtMDQyN2M2YzljMjRmP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -843,31 +849,31 @@ "no-cache" ], "x-ms-request-id": [ - "c3bdffd4-a22e-4bd7-8632-a5b96ed7ca40" + "c49d57fa-7afb-46c7-8f25-6655d83102fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], "x-ms-correlation-request-id": [ - "64ae03ce-85cc-4d33-9b6f-9fe4110f8cbe" + "1cd6bacd-cdc6-4664-84ce-5c5bb224ea7c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002727Z:64ae03ce-85cc-4d33-9b6f-9fe4110f8cbe" + "CENTRALINDIA:20210419T065431Z:1cd6bacd-cdc6-4664-84ce-5c5bb224ea7c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:26 GMT" + "Mon, 19 Apr 2021 06:54:31 GMT" ], "Content-Length": [ - "1021" + "1042" ], "Content-Type": [ "application/json" @@ -876,26 +882,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Storage/storageAccounts/rlog910\",\r\n \"name\": \"rlog910\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-23T00:27:08.7899986Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-23T00:27:08.7899986Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-23T00:27:08.6962514Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rlog910.blob.core.windows.net/\",\r\n \"queue\": \"https://rlog910.queue.core.windows.net/\",\r\n \"table\": \"https://rlog910.table.core.windows.net/\",\r\n \"file\": \"https://rlog910.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Storage/storageAccounts/rlog9100\",\r\n \"name\": \"rlog9100\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-19T06:54:12.5608309Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-19T06:54:12.5608309Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-04-19T06:54:12.4983113Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rlog9100.blob.core.windows.net/\",\r\n \"queue\": \"https://rlog9100.queue.core.windows.net/\",\r\n \"table\": \"https://rlog9100.table.core.windows.net/\",\r\n \"file\": \"https://rlog9100.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM910?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9wcm94aW1pdHlQbGFjZW1lbnRHcm91cHMvYTJhVk05MTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM9100?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvcHJveGltaXR5UGxhY2VtZW50R3JvdXBzL2EyYVZNOTEwMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ff6a2d00-0e7a-4f42-8e9e-e34c61a4924e" + "6ef6fa8e-93b5-4170-93f7-b5f890ec551f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -912,13 +918,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutDeletePPG3Min;99,Microsoft.Compute/PutDeletePPG30Min;499" + "Microsoft.Compute/PutDeletePPG3Min;99,Microsoft.Compute/PutDeletePPG30Min;497" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "0903cf6f-3e08-435f-9be7-983fded63878" + "acc9bf0f-7d9c-42a0-9598-01782497338c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -928,19 +934,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "6e15dc00-cebf-4077-bc43-033c15046c59" + "e47c72a8-4a75-4961-a61c-17e29eced6dd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002735Z:6e15dc00-cebf-4077-bc43-033c15046c59" + "CENTRALINDIA:20210419T065442Z:e47c72a8-4a75-4961-a61c-17e29eced6dd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:35 GMT" + "Mon, 19 Apr 2021 06:54:41 GMT" ], "Content-Length": [ - "330" + "333" ], "Content-Type": [ "application/json; charset=utf-8" @@ -949,26 +955,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM910\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM9100\",\r\n \"type\": \"Microsoft.Compute/proximityPlacementGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"proximityPlacementGroupType\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/images/RHEL?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9pbWFnZXMvUkhFTD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/images/RHEL?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL1JIRUw/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c847a2b-a1a2-4b6e-a8bb-f04e3c8e7990" + "821ff975-a01a-44d0-b032-e052fbe119c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -982,13 +988,13 @@ "gateway" ], "x-ms-request-id": [ - "be3d77a1-a878-43f1-a8f8-0fdaf6566e14" + "4a8525fc-7441-4315-8c1f-bcfb4a245be8" ], "x-ms-correlation-request-id": [ - "be3d77a1-a878-43f1-a8f8-0fdaf6566e14" + "4a8525fc-7441-4315-8c1f-bcfb4a245be8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002736Z:be3d77a1-a878-43f1-a8f8-0fdaf6566e14" + "CENTRALINDIA:20210419T065442Z:4a8525fc-7441-4315-8c1f-bcfb4a245be8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -997,7 +1003,7 @@ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:36 GMT" + "Mon, 19 Apr 2021 06:54:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1006,10 +1012,10 @@ "-1" ], "Content-Length": [ - "141" + "210" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/images/RHEL' under resource group 'a2aVM910' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/images/RHEL' under resource group 'a2aVM9100' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { @@ -1019,16 +1025,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4627230-3704-42f6-939e-a7c853e3d0de" + "821ff975-a01a-44d0-b032-e052fbe119c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1042,13 +1048,13 @@ "11999" ], "x-ms-request-id": [ - "c089577f-eb49-4469-b36c-afaf47564a58" + "61bbbe4c-12ec-49a9-aa57-d76216ccb700" ], "x-ms-correlation-request-id": [ - "c089577f-eb49-4469-b36c-afaf47564a58" + "61bbbe4c-12ec-49a9-aa57-d76216ccb700" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002737Z:c089577f-eb49-4469-b36c-afaf47564a58" + "CENTRALINDIA:20210419T065442Z:61bbbe4c-12ec-49a9-aa57-d76216ccb700" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1057,7 +1063,7 @@ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:36 GMT" + "Mon, 19 Apr 2021 06:54:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1066,29 +1072,29 @@ "-1" ], "Content-Length": [ - "33191" + "59552" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/vsmoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Japan West\",\r\n \"France Central\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMExtensions\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMExtensions/versions\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n },\r\n {\r\n \"applicationId\": \"579d9c9d-4c83-4efc-8124-7eba65ed3356\",\r\n \"roleDefinitionId\": \"8c99c4ce-d744-4597-a2f0-0a0044d67560\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotEvictionRates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotPriceHistory\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/sharedGalleries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"diskAccesses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roles\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/csoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsVersions\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsFamilies\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/publicIPAddresses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups/capacityReservations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/virtualMachines/a2aVM910?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk05MTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/virtualMachines/a2aVM9100?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2EyYVZNOTEwMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffd57a32-d77f-48aa-8179-aa951c1dcdcc" + "821ff975-a01a-44d0-b032-e052fbe119c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1102,13 +1108,13 @@ "gateway" ], "x-ms-request-id": [ - "dfa38498-503a-48a8-88ad-0007e9825873" + "ad6f0fcc-a925-4f5f-9803-6c1b9d1ab175" ], "x-ms-correlation-request-id": [ - "dfa38498-503a-48a8-88ad-0007e9825873" + "ad6f0fcc-a925-4f5f-9803-6c1b9d1ab175" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002737Z:dfa38498-503a-48a8-88ad-0007e9825873" + "CENTRALINDIA:20210419T065443Z:ad6f0fcc-a925-4f5f-9803-6c1b9d1ab175" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1117,7 +1123,7 @@ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:37 GMT" + "Mon, 19 Apr 2021 06:54:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1126,23 +1132,26 @@ "-1" ], "Content-Length": [ - "154" + "224" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/a2aVM910' under resource group 'a2aVM910' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/a2aVM9100' under resource group 'a2aVM9100' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/virtualMachines/a2aVM910?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk05MTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/virtualMachines/a2aVM9100?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2EyYVZNOTEwMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "821ff975-a01a-44d0-b032-e052fbe119c5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1153,13 +1162,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31992" + "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "e6aa1625-b27b-4f4c-b85e-9416cf4433a9" + "3fd96a90-2f49-4c1b-979a-1436bb2a5b5c" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1169,19 +1178,19 @@ "11994" ], "x-ms-correlation-request-id": [ - "30d94350-8f7d-4e3c-b888-481f6a72a145" + "2f08e515-62a5-4c8c-a0b0-291de433c776" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002938Z:30d94350-8f7d-4e3c-b888-481f6a72a145" + "CENTRALINDIA:20210419T065631Z:2f08e515-62a5-4c8c-a0b0-291de433c776" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:29:38 GMT" + "Mon, 19 Apr 2021 06:56:31 GMT" ], "Content-Length": [ - "1877" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1190,26 +1199,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/virtualMachines/a2aVM910\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"vmId\": \"8cf8f75d-67da-4427-9fc8-912e6c48fcc4\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM910/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM910\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM910/providers/Microsoft.Compute/disks/a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM910\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkInterfaces/a2aVM910\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/virtualMachines/a2aVM9100\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"ff46fd0f-928d-494c-833c-669c1f871d91\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM9100/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM9100\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/disks/a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM9100\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkInterfaces/a2aVM9100\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/virtualMachines/a2aVM910?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk05MTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/virtualMachines/a2aVM9100?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2EyYVZNOTEwMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1cfc98e3-6be1-4b77-91a9-4623d95cc319" + "7b4e5524-0f96-4629-8af3-d30f7e18a757" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1220,13 +1229,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31991" + "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31985" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "965663c1-594f-4c04-bf48-a069d6092bdf" + "c6b7ac21-a637-4a80-a910-24465a09e270" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1236,19 +1245,19 @@ "11993" ], "x-ms-correlation-request-id": [ - "cde72b2f-624f-42f8-90f8-16a0041617d0" + "eb5f679b-6f55-4065-b4df-a1601dd4ec19" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002939Z:cde72b2f-624f-42f8-90f8-16a0041617d0" + "CENTRALINDIA:20210419T065631Z:eb5f679b-6f55-4065-b4df-a1601dd4ec19" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:29:38 GMT" + "Mon, 19 Apr 2021 06:56:31 GMT" ], "Content-Length": [ - "1877" + "2103" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1257,26 +1266,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/virtualMachines/a2aVM910\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"vmId\": \"8cf8f75d-67da-4427-9fc8-912e6c48fcc4\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM910/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM910\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM910/providers/Microsoft.Compute/disks/a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM910\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkInterfaces/a2aVM910\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/virtualMachines/a2aVM9100\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"ff46fd0f-928d-494c-833c-669c1f871d91\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM9100/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM9100\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/disks/a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM9100\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkInterfaces/a2aVM9100\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/virtualMachines/a2aVM910?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk05MTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/virtualMachines/a2aVM9100?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2EyYVZNOTEwMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e47fea2f-195f-4a22-badc-5ff1cc1d4ce4" + "48f46ad4-0c0b-4a5e-b03b-258f3f080fa4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1287,35 +1296,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3999,Microsoft.Compute/LowCostGet30Min;31983" + "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31902" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "51d7f770-fb0b-4fb0-a3d7-d72e7f222d03" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "08896789-c5c1-4dac-aaa6-a10e98ae3d79" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], "x-ms-correlation-request-id": [ - "fed65e42-9117-4009-89fa-31ab8118ba5a" + "967c187b-1e9b-45e8-893c-278483664651" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013556Z:fed65e42-9117-4009-89fa-31ab8118ba5a" + "CENTRALINDIA:20210419T075727Z:967c187b-1e9b-45e8-893c-278483664651" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 01:35:56 GMT" + "Mon, 19 Apr 2021 07:57:27 GMT" ], "Content-Length": [ - "3916" + "5379" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1324,26 +1333,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/virtualMachines/a2aVM910\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"vmId\": \"8cf8f75d-67da-4427-9fc8-912e6c48fcc4\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM910/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM910\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM910/providers/Microsoft.Compute/disks/a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM910\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkInterfaces/a2aVM910\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"OmsAgentForLinux\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/virtualMachines/a2aVM910/extensions/OmsAgentForLinux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.EnterpriseCloud.Monitoring\",\r\n \"type\": \"OmsAgentForLinux\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"workspaceId\": \"88a20715-f011-45eb-9640-d13119f65bb9\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"SiteRecovery-Linux\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/virtualMachines/a2aVM910/extensions/SiteRecovery-Linux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"type\": \"Linux\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"publicObject\": null,\r\n \"module\": \"a2a\",\r\n \"commandToExecute\": \"GetOsDetails\",\r\n \"taskId\": \"7e3d76d6-4bda-4ca7-8fed-38c1ab3a2698\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"SiteRecovery-LinuxRHEL7\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/virtualMachines/a2aVM910/extensions/SiteRecovery-LinuxRHEL7\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"type\": \"LinuxRHEL7\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"publicObject\": null,\r\n \"module\": \"a2a\",\r\n \"commandToExecute\": \"InstallAndConfigure\",\r\n \"taskId\": \"7e3d76d6-4bda-4ca7-8fed-38c1ab3a2698\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/virtualMachines/a2aVM9100\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-eastus\": {\r\n \"principalId\": \"00ca0806-ef0c-461c-b8dc-982092368965\",\r\n \"clientId\": \"9d53cecf-7cb8-41fd-b8de-7f178c9f1fc4\"\r\n }\r\n }\r\n },\r\n \"properties\": {\r\n \"vmId\": \"ff46fd0f-928d-494c-833c-669c1f871d91\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM9100/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM9100\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/disks/a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\"\r\n }\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM9100\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkInterfaces/a2aVM9100\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"resources\": [\r\n {\r\n \"name\": \"Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/virtualMachines/a2aVM9100/extensions/Microsoft.Azure.Monitor.AzureMonitorLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Monitor\",\r\n \"type\": \"AzureMonitorLinuxAgent\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"GCS_AUTO_CONFIG\": true\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/virtualMachines/a2aVM9100/extensions/Microsoft.Azure.Security.Monitoring.AzureSecurityLinuxAgent\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"provisioningState\": \"Succeeded\",\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": \"Microsoft.Azure.Security.Monitoring\",\r\n \"type\": \"AzureSecurityLinuxAgent\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": {\r\n \"enableGenevaUpload\": true\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"SiteRecovery-Linux\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/virtualMachines/a2aVM9100/extensions/SiteRecovery-Linux\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"type\": \"Linux\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"publicObject\": null,\r\n \"module\": \"a2a\",\r\n \"commandToExecute\": \"GetOsDetails\",\r\n \"taskId\": \"d7de8703-6410-45a2-8a67-3eba3e3f85fe\"\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"SiteRecovery-LinuxRHEL7\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/virtualMachines/a2aVM9100/extensions/SiteRecovery-LinuxRHEL7\",\r\n \"type\": \"Microsoft.Compute/virtualMachines/extensions\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"provisioningState\": \"Succeeded\",\r\n \"publisher\": \"Microsoft.Azure.RecoveryServices.SiteRecovery\",\r\n \"type\": \"LinuxRHEL7\",\r\n \"typeHandlerVersion\": \"1.0\",\r\n \"settings\": {\r\n \"publicObject\": null,\r\n \"module\": \"a2a\",\r\n \"commandToExecute\": \"InstallAndConfigure\",\r\n \"taskId\": \"d7de8703-6410-45a2-8a67-3eba3e3f85fe\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM910?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNOTEwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM9100?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNOTEwMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65d0547e-38f5-4560-92e6-db1f899418fb" + "821ff975-a01a-44d0-b032-e052fbe119c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1357,13 +1366,13 @@ "11998" ], "x-ms-request-id": [ - "db4a4ca2-a56b-4f8f-b592-de3823845aa7" + "901fb90e-fbed-4eea-ba51-fb4493615fa3" ], "x-ms-correlation-request-id": [ - "db4a4ca2-a56b-4f8f-b592-de3823845aa7" + "901fb90e-fbed-4eea-ba51-fb4493615fa3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002737Z:db4a4ca2-a56b-4f8f-b592-de3823845aa7" + "CENTRALINDIA:20210419T065443Z:901fb90e-fbed-4eea-ba51-fb4493615fa3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1372,7 +1381,7 @@ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:36 GMT" + "Mon, 19 Apr 2021 06:54:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1381,29 +1390,29 @@ "-1" ], "Content-Length": [ - "169" + "171" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910\",\r\n \"name\": \"a2aVM910\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100\",\r\n \"name\": \"a2aVM9100\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkInterfaces/a2aVM910?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTkxMD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkInterfaces/a2aVM9100?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYTJhVk05MTAwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8dcebefb-c9ed-463d-8382-9121cdb53d7a" + "821ff975-a01a-44d0-b032-e052fbe119c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1417,13 +1426,13 @@ "gateway" ], "x-ms-request-id": [ - "1329015b-5c80-4fbb-a454-81c952c4d41c" + "2cce25fa-ec41-4e8a-894f-c0ef928ea737" ], "x-ms-correlation-request-id": [ - "1329015b-5c80-4fbb-a454-81c952c4d41c" + "2cce25fa-ec41-4e8a-894f-c0ef928ea737" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002738Z:1329015b-5c80-4fbb-a454-81c952c4d41c" + "CENTRALINDIA:20210419T065443Z:2cce25fa-ec41-4e8a-894f-c0ef928ea737" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1432,7 +1441,7 @@ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:38 GMT" + "Mon, 19 Apr 2021 06:54:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1441,23 +1450,26 @@ "-1" ], "Content-Length": [ - "156" + "226" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/a2aVM910' under resource group 'a2aVM910' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/a2aVM9100' under resource group 'a2aVM9100' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkInterfaces/a2aVM910?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTkxMD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkInterfaces/a2aVM9100?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYTJhVk05MTAwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "821ff975-a01a-44d0-b032-e052fbe119c5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1468,16 +1480,16 @@ "no-cache" ], "ETag": [ - "W/\"1960a19f-d6a7-4f05-b503-e6aefd91e232\"" + "W/\"9e4bb2ad-44db-4255-99e8-7d9c8744c54a\"" ], "x-ms-request-id": [ - "b87a96b3-731b-4f27-bab3-b7ea64c48387" + "4a4e2310-d729-4f3b-b371-cfdee6832c34" ], "x-ms-correlation-request-id": [ - "e2e63d82-e408-45af-bbdf-eeb7fc338fdd" + "3d48eaa8-3a1b-4483-b6fd-e05e790d582a" ], "x-ms-arm-service-request-id": [ - "ee5b6546-2367-431a-b4f1-551d535b4762" + "511746f5-bdc8-473b-a8e7-0401e9669c91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1487,19 +1499,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11722" + "11994" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002808Z:e2e63d82-e408-45af-bbdf-eeb7fc338fdd" + "CENTRALINDIA:20210419T065504Z:3d48eaa8-3a1b-4483-b6fd-e05e790d582a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:28:07 GMT" + "Mon, 19 Apr 2021 06:55:04 GMT" ], "Content-Length": [ - "1913" + "1927" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1508,26 +1520,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkInterfaces/a2aVM910\",\r\n \"etag\": \"W/\\\"1960a19f-d6a7-4f05-b503-e6aefd91e232\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75921668-4344-4199-b36e-aba651fec901\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkInterfaces/a2aVM910/ipConfigurations/a2aVM910\",\r\n \"etag\": \"W/\\\"1960a19f-d6a7-4f05-b503-e6aefd91e232\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/publicIPAddresses/a2aVM910\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/virtualNetworks/a2aVM910/subnets/a2aVM910\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"syqied3tmkhurd0xltsahz0bgf.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkInterfaces/a2aVM9100\",\r\n \"etag\": \"W/\\\"9e4bb2ad-44db-4255-99e8-7d9c8744c54a\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"97cbff16-93dc-4def-8e13-beca328a3941\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkInterfaces/a2aVM9100/ipConfigurations/a2aVM9100\",\r\n \"etag\": \"W/\\\"9e4bb2ad-44db-4255-99e8-7d9c8744c54a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/publicIPAddresses/a2aVM9100\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/virtualNetworks/a2aVM9100/subnets/a2aVM9100\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"jhqewhmghmoerkxoikqxsvojeh.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk05MTA/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2EyYVZNOTEwMD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b853711a-e411-44ac-bd2f-21b7508bdb67" + "821ff975-a01a-44d0-b032-e052fbe119c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1541,13 +1553,13 @@ "gateway" ], "x-ms-request-id": [ - "c4787fe0-0cf8-4f9b-904f-2e436e2c70c3" + "d4296d96-b339-46ee-b4d1-c10e6f25405c" ], "x-ms-correlation-request-id": [ - "c4787fe0-0cf8-4f9b-904f-2e436e2c70c3" + "d4296d96-b339-46ee-b4d1-c10e6f25405c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002739Z:c4787fe0-0cf8-4f9b-904f-2e436e2c70c3" + "CENTRALINDIA:20210419T065444Z:d4296d96-b339-46ee-b4d1-c10e6f25405c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1556,7 +1568,7 @@ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:38 GMT" + "Mon, 19 Apr 2021 06:54:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1565,23 +1577,26 @@ "-1" ], "Content-Length": [ - "160" + "230" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/a2aVM910' under resource group 'a2aVM910' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/a2aVM9100' under resource group 'a2aVM9100' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk05MTA/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2EyYVZNOTEwMD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "821ff975-a01a-44d0-b032-e052fbe119c5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1592,16 +1607,16 @@ "no-cache" ], "ETag": [ - "W/\"122c11f4-50b3-4c3b-b864-4c60dd71a99e\"" + "W/\"8a67ba45-fd33-4b2d-bdeb-8fe33f0c615f\"" ], "x-ms-request-id": [ - "92c401c4-0ac0-49e2-90a0-0828ebc3f120" + "008dbb45-6d4a-4f58-aa0f-db596bd91cef" ], "x-ms-correlation-request-id": [ - "0ab15d20-770d-4834-a833-1413850e5510" + "87312ab0-e986-4370-948a-d11ac510351f" ], "x-ms-arm-service-request-id": [ - "5737da69-a34d-4d1a-825d-3711635da367" + "f684f255-60c0-4b92-8e83-35ab9d5a19bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1611,19 +1626,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11730" + "11995" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002752Z:0ab15d20-770d-4834-a833-1413850e5510" + "CENTRALINDIA:20210419T065500Z:87312ab0-e986-4370-948a-d11ac510351f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:51 GMT" + "Mon, 19 Apr 2021 06:54:59 GMT" ], "Content-Length": [ - "7388" + "7407" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1632,26 +1647,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910\",\r\n \"etag\": \"W/\\\"122c11f4-50b3-4c3b-b864-4c60dd71a99e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"5a6ba749-3c26-416a-873a-c03e83a62408\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM91022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910/securityRules/a2aVM91022\",\r\n \"etag\": \"W/\\\"122c11f4-50b3-4c3b-b864-4c60dd71a99e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"122c11f4-50b3-4c3b-b864-4c60dd71a99e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"122c11f4-50b3-4c3b-b864-4c60dd71a99e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"122c11f4-50b3-4c3b-b864-4c60dd71a99e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"122c11f4-50b3-4c3b-b864-4c60dd71a99e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"122c11f4-50b3-4c3b-b864-4c60dd71a99e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"122c11f4-50b3-4c3b-b864-4c60dd71a99e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100\",\r\n \"etag\": \"W/\\\"8a67ba45-fd33-4b2d-bdeb-8fe33f0c615f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"740b539d-7368-4238-8a6c-63cdc2dac121\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM910022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100/securityRules/a2aVM910022\",\r\n \"etag\": \"W/\\\"8a67ba45-fd33-4b2d-bdeb-8fe33f0c615f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"8a67ba45-fd33-4b2d-bdeb-8fe33f0c615f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"8a67ba45-fd33-4b2d-bdeb-8fe33f0c615f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"8a67ba45-fd33-4b2d-bdeb-8fe33f0c615f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"8a67ba45-fd33-4b2d-bdeb-8fe33f0c615f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"8a67ba45-fd33-4b2d-bdeb-8fe33f0c615f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"8a67ba45-fd33-4b2d-bdeb-8fe33f0c615f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/publicIPAddresses/a2aVM910?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTkxMD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/virtualNetworks/a2aVM9100?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2EyYVZNOTEwMD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18e8f8cf-a8c5-4117-b56f-74082e4edfc9" + "821ff975-a01a-44d0-b032-e052fbe119c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1665,13 +1680,13 @@ "gateway" ], "x-ms-request-id": [ - "820a5484-ff00-41d5-ad6b-c11d68838239" + "6e1c6b37-2bb2-4655-865d-9c574a05b1aa" ], "x-ms-correlation-request-id": [ - "820a5484-ff00-41d5-ad6b-c11d68838239" + "6e1c6b37-2bb2-4655-865d-9c574a05b1aa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002739Z:820a5484-ff00-41d5-ad6b-c11d68838239" + "CENTRALINDIA:20210419T065445Z:6e1c6b37-2bb2-4655-865d-9c574a05b1aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1680,7 +1695,7 @@ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:39 GMT" + "Mon, 19 Apr 2021 06:54:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1689,23 +1704,26 @@ "-1" ], "Content-Length": [ - "156" + "224" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/a2aVM910' under resource group 'a2aVM910' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/a2aVM9100' under resource group 'a2aVM9100' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/publicIPAddresses/a2aVM910?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTkxMD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/virtualNetworks/a2aVM9100?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2EyYVZNOTEwMD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "821ff975-a01a-44d0-b032-e052fbe119c5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1716,38 +1734,38 @@ "no-cache" ], "ETag": [ - "W/\"1bc28dc6-7d8b-4f12-996b-96406f6fa4a8\"" + "W/\"86acdf31-8833-4490-ba84-2fe49f68cab5\"" ], "x-ms-request-id": [ - "57f75c13-2c2f-4047-bb65-c7c243d2a24e" + "54bf60fd-18ae-44e7-8cf5-4c35dd73fa55" ], "x-ms-correlation-request-id": [ - "308885a6-7293-4fec-b064-836ab9e7148a" + "8a95cb83-f461-4361-a953-45e2dfc1d680" ], "x-ms-arm-service-request-id": [ - "084b73ae-ee2e-44c6-a37d-2e2a63cac4b1" + "eb4c4b79-fb9e-4c58-812a-3eda49ca59d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11723" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002804Z:308885a6-7293-4fec-b064-836ab9e7148a" + "CENTRALINDIA:20210419T065457Z:8a95cb83-f461-4361-a953-45e2dfc1d680" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:28:04 GMT" + "Mon, 19 Apr 2021 06:54:56 GMT" ], "Content-Length": [ - "753" + "1081" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1756,26 +1774,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/publicIPAddresses/a2aVM910\",\r\n \"etag\": \"W/\\\"1bc28dc6-7d8b-4f12-996b-96406f6fa4a8\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4dfcefea-20b8-4deb-af5c-c1e42f974f17\",\r\n \"ipAddress\": \"168.61.23.39\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain910\",\r\n \"fqdn\": \"domain910.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/virtualNetworks/a2aVM9100\",\r\n \"etag\": \"W/\\\"86acdf31-8833-4490-ba84-2fe49f68cab5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1d4be049-3b86-481c-aaee-42a17955c927\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/virtualNetworks/a2aVM9100/subnets/a2aVM9100\",\r\n \"etag\": \"W/\\\"86acdf31-8833-4490-ba84-2fe49f68cab5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/virtualNetworks/a2aVM910?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk05MTA/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/publicIPAddresses/a2aVM9100?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYTJhVk05MTAwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab52e5a4-b051-49fa-a42b-60a42f5fe356" + "821ff975-a01a-44d0-b032-e052fbe119c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1789,13 +1807,13 @@ "gateway" ], "x-ms-request-id": [ - "e97ddf32-2910-4f7b-a996-b52a3a7a6b14" + "8bcee273-4c8b-4914-a5ef-9c454a0b41b4" ], "x-ms-correlation-request-id": [ - "e97ddf32-2910-4f7b-a996-b52a3a7a6b14" + "8bcee273-4c8b-4914-a5ef-9c454a0b41b4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002739Z:e97ddf32-2910-4f7b-a996-b52a3a7a6b14" + "CENTRALINDIA:20210419T065445Z:8bcee273-4c8b-4914-a5ef-9c454a0b41b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1804,7 +1822,7 @@ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:39 GMT" + "Mon, 19 Apr 2021 06:54:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1813,23 +1831,26 @@ "-1" ], "Content-Length": [ - "154" + "226" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/a2aVM910' under resource group 'a2aVM910' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/a2aVM9100' under resource group 'a2aVM9100' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/virtualNetworks/a2aVM910?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk05MTA/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/publicIPAddresses/a2aVM9100?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYTJhVk05MTAwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "821ff975-a01a-44d0-b032-e052fbe119c5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1840,16 +1861,16 @@ "no-cache" ], "ETag": [ - "W/\"97449f4a-6a48-43b9-a1b1-8a64c9f910f7\"" + "W/\"26da1d41-1cbd-4884-a531-70743c3d9846\"" ], "x-ms-request-id": [ - "0246e3b3-7133-4a14-a490-ae4c0b1fa470" + "5a905dda-d5be-4301-9845-6faec43f363b" ], "x-ms-correlation-request-id": [ - "107b2fe1-2ec8-42d4-8804-551eb4266f59" + "322f16c8-ed0d-4f79-9995-23bbccfc20da" ], "x-ms-arm-service-request-id": [ - "39b69109-b0df-4533-ba57-fa139c6aeecd" + "de38b479-bd0b-4994-9ff4-bac8632d3a88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1859,19 +1880,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11732" + "11995" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002751Z:107b2fe1-2ec8-42d4-8804-551eb4266f59" + "CENTRALINDIA:20210419T065456Z:322f16c8-ed0d-4f79-9995-23bbccfc20da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:50 GMT" + "Mon, 19 Apr 2021 06:54:55 GMT" ], "Content-Length": [ - "1108" + "758" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1880,32 +1901,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/virtualNetworks/a2aVM910\",\r\n \"etag\": \"W/\\\"97449f4a-6a48-43b9-a1b1-8a64c9f910f7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0f822096-62b3-488f-8f57-5ce403e74135\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/virtualNetworks/a2aVM910/subnets/a2aVM910\",\r\n \"etag\": \"W/\\\"97449f4a-6a48-43b9-a1b1-8a64c9f910f7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/publicIPAddresses/a2aVM9100\",\r\n \"etag\": \"W/\\\"26da1d41-1cbd-4884-a531-70743c3d9846\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c76a6285-eac2-46d8-8fb6-61f78fd28dba\",\r\n \"ipAddress\": \"52.142.1.224\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain9100\",\r\n \"fqdn\": \"domain9100.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/virtualNetworks/a2aVM910?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk05MTA/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/virtualNetworks/a2aVM9100?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2EyYVZNOTEwMD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"name\": \"a2aVM910\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"name\": \"a2aVM9100\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0ecb91cc-b165-4a5d-9f40-de3cff2c3ad4" + "821ff975-a01a-44d0-b032-e052fbe119c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "300" + "301" ] }, "ResponseHeaders": { @@ -1919,19 +1940,19 @@ "3" ], "x-ms-request-id": [ - "a452bc5d-799e-453c-8439-c7929d2ab7bb" + "8d9bd877-ffb8-49c4-adc5-ab3df51f16ca" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/a452bc5d-799e-453c-8439-c7929d2ab7bb?api-version=2017-10-01" + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/8d9bd877-ffb8-49c4-adc5-ab3df51f16ca?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "63125a18-42e2-40de-87e3-5a201ddd18fd" + "afc7c6ff-de1e-4d68-8845-be4a7617f92f" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "8ab50a7a-803d-4b18-8c19-9a54f078c4b8" + "ff721685-3711-4622-9b2f-6af7c89d0dba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1941,19 +1962,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002747Z:63125a18-42e2-40de-87e3-5a201ddd18fd" + "CENTRALINDIA:20210419T065453Z:afc7c6ff-de1e-4d68-8845-be4a7617f92f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:47 GMT" + "Mon, 19 Apr 2021 06:54:53 GMT" ], "Content-Length": [ - "1106" + "1079" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1962,32 +1983,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/virtualNetworks/a2aVM910\",\r\n \"etag\": \"W/\\\"ad045ce4-9860-4960-8d3f-3b4e4b4021a1\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"0f822096-62b3-488f-8f57-5ce403e74135\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/virtualNetworks/a2aVM910/subnets/a2aVM910\",\r\n \"etag\": \"W/\\\"ad045ce4-9860-4960-8d3f-3b4e4b4021a1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/virtualNetworks/a2aVM9100\",\r\n \"etag\": \"W/\\\"1fa84083-5864-4065-8ec9-3f635a30c834\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1d4be049-3b86-481c-aaee-42a17955c927\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/virtualNetworks/a2aVM9100/subnets/a2aVM9100\",\r\n \"etag\": \"W/\\\"1fa84083-5864-4065-8ec9-3f635a30c834\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/publicIPAddresses/a2aVM910?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTkxMD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/publicIPAddresses/a2aVM9100?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYTJhVk05MTAwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain910\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain9100\"\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3e16494e-f8f0-4576-89a1-7b04eb2c547d" + "821ff975-a01a-44d0-b032-e052fbe119c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "202" + "203" ] }, "ResponseHeaders": { @@ -2001,19 +2022,19 @@ "1" ], "x-ms-request-id": [ - "8c599b6d-70e3-4e37-b6be-c4589980d004" + "79c2697e-4ec9-4bf6-a898-12c5873e2039" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/8c599b6d-70e3-4e37-b6be-c4589980d004?api-version=2017-10-01" + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/79c2697e-4ec9-4bf6-a898-12c5873e2039?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "ee7a7e8f-31cf-4468-8b30-1ec7e595e4b3" + "01ec7a55-02b9-4ee5-81b4-f7ef8bf259c3" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "2e189841-2c11-4302-b652-9c65879d086f" + "4aa3f4f8-a843-4bfb-83a9-f1d6c3232210" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2023,19 +2044,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1198" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002748Z:ee7a7e8f-31cf-4468-8b30-1ec7e595e4b3" + "CENTRALINDIA:20210419T065454Z:01ec7a55-02b9-4ee5-81b4-f7ef8bf259c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:47 GMT" + "Mon, 19 Apr 2021 06:54:54 GMT" ], "Content-Length": [ - "718" + "723" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2044,32 +2065,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/publicIPAddresses/a2aVM910\",\r\n \"etag\": \"W/\\\"725d3e0b-1c34-4adb-acfb-4afb3aa9ed6c\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4dfcefea-20b8-4deb-af5c-c1e42f974f17\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain910\",\r\n \"fqdn\": \"domain910.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/publicIPAddresses/a2aVM9100\",\r\n \"etag\": \"W/\\\"278bb1b6-4e14-43b6-8251-b04a71eb9797\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c76a6285-eac2-46d8-8fb6-61f78fd28dba\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain9100\",\r\n \"fqdn\": \"domain9100.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk05MTA/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"a2aVM91022\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/79c2697e-4ec9-4bf6-a898-12c5873e2039?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNzljMjY5N2UtNGVjOS00YmY2LWE4OTgtMTJjNTg3M2UyMDM5P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ba73a26-8e84-4cca-ace6-bb685227460c" - ], - "Accept-Language": [ - "en-US" + "821ff975-a01a-44d0-b032-e052fbe119c5" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "451" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -2079,23 +2091,14 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "3" - ], "x-ms-request-id": [ - "7fec9b54-2c3c-4505-97b6-79580a7a63e0" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/7fec9b54-2c3c-4505-97b6-79580a7a63e0?api-version=2017-10-01" + "2b34e682-3666-4a0f-9920-72fc097a8b75" ], "x-ms-correlation-request-id": [ - "39384a0b-aebe-4250-a2f9-342efb77bc5a" - ], - "Azure-AsyncNotification": [ - "Enabled" + "02f62e39-7c99-4e99-9203-dd2cbb505586" ], "x-ms-arm-service-request-id": [ - "0f9314f6-6255-4720-a8f0-ba7ed6585c6c" + "9274a390-1ea2-4818-8074-05cfa61790b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2104,20 +2107,20 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002748Z:39384a0b-aebe-4250-a2f9-342efb77bc5a" + "CENTRALINDIA:20210419T065456Z:02f62e39-7c99-4e99-9203-dd2cbb505586" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:48 GMT" + "Mon, 19 Apr 2021 06:54:55 GMT" ], "Content-Length": [ - "7380" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2126,20 +2129,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910\",\r\n \"etag\": \"W/\\\"555add3a-d01f-4790-b59b-38df07b3acef\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"5a6ba749-3c26-416a-873a-c03e83a62408\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM91022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910/securityRules/a2aVM91022\",\r\n \"etag\": \"W/\\\"555add3a-d01f-4790-b59b-38df07b3acef\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"555add3a-d01f-4790-b59b-38df07b3acef\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"555add3a-d01f-4790-b59b-38df07b3acef\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"555add3a-d01f-4790-b59b-38df07b3acef\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"555add3a-d01f-4790-b59b-38df07b3acef\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"555add3a-d01f-4790-b59b-38df07b3acef\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"555add3a-d01f-4790-b59b-38df07b3acef\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/8c599b6d-70e3-4e37-b6be-c4589980d004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGM1OTliNmQtNzBlMy00ZTM3LWI2YmUtYzQ1ODk5ODBkMDA0P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2EyYVZNOTEwMD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"a2aVM910022\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "821ff975-a01a-44d0-b032-e052fbe119c5" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "452" ] }, "ResponseHeaders": { @@ -2150,16 +2165,22 @@ "no-cache" ], "Retry-After": [ - "2" + "3" ], "x-ms-request-id": [ - "3a9aad4b-d263-4456-a7ff-251224e13f25" + "4d6973d9-9a0f-43fd-9990-266f867eaeb0" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/4d6973d9-9a0f-43fd-9990-266f867eaeb0?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "fdc75900-32b7-4942-bbfc-023ca3c8fdc9" + "c53ff7d1-0850-45f5-9297-2bf64187a763" + ], + "Azure-AsyncNotification": [ + "Enabled" ], "x-ms-arm-service-request-id": [ - "c55016dd-bcce-4164-bb85-e5032fee7f9f" + "7446cc9f-9d67-453a-b9a4-bfd3040ef545" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2168,20 +2189,20 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11734" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002750Z:fdc75900-32b7-4942-bbfc-023ca3c8fdc9" + "CENTRALINDIA:20210419T065456Z:c53ff7d1-0850-45f5-9297-2bf64187a763" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:49 GMT" + "Mon, 19 Apr 2021 06:54:55 GMT" ], "Content-Length": [ - "30" + "7399" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2190,20 +2211,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"a2aVM9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100\",\r\n \"etag\": \"W/\\\"8c5a8d1b-51b6-4bb3-9a03-433ba75993d9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"740b539d-7368-4238-8a6c-63cdc2dac121\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM910022\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100/securityRules/a2aVM910022\",\r\n \"etag\": \"W/\\\"8c5a8d1b-51b6-4bb3-9a03-433ba75993d9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"8c5a8d1b-51b6-4bb3-9a03-433ba75993d9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"8c5a8d1b-51b6-4bb3-9a03-433ba75993d9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"8c5a8d1b-51b6-4bb3-9a03-433ba75993d9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"8c5a8d1b-51b6-4bb3-9a03-433ba75993d9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"8c5a8d1b-51b6-4bb3-9a03-433ba75993d9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"8c5a8d1b-51b6-4bb3-9a03-433ba75993d9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/8c599b6d-70e3-4e37-b6be-c4589980d004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGM1OTliNmQtNzBlMy00ZTM3LWI2YmUtYzQ1ODk5ODBkMDA0P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/8d9bd877-ffb8-49c4-adc5-ab3df51f16ca?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGQ5YmQ4NzctZmZiOC00OWM0LWFkYzUtYWIzZGY1MWYxNmNhP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "821ff975-a01a-44d0-b032-e052fbe119c5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -2213,17 +2237,14 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "2" - ], "x-ms-request-id": [ - "5189cb78-bab7-46e1-ac2c-b562826b552b" + "61a7e165-93ca-423e-a211-d55db393c2aa" ], "x-ms-correlation-request-id": [ - "2337b928-8cc6-43b3-8413-dc4475018ce9" + "1387b5a5-1092-4daf-b2df-96308ada3202" ], "x-ms-arm-service-request-id": [ - "b2bfd93c-6418-4787-8a2d-10a55d134d8c" + "fcb17494-e673-498d-a137-ee9d18c3b2a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2233,19 +2254,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11729" + "11998" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002752Z:2337b928-8cc6-43b3-8413-dc4475018ce9" + "CENTRALINDIA:20210419T065457Z:1387b5a5-1092-4daf-b2df-96308ada3202" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:52 GMT" + "Mon, 19 Apr 2021 06:54:56 GMT" ], "Content-Length": [ - "30" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2254,20 +2275,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/8c599b6d-70e3-4e37-b6be-c4589980d004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGM1OTliNmQtNzBlMy00ZTM3LWI2YmUtYzQ1ODk5ODBkMDA0P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/4d6973d9-9a0f-43fd-9990-266f867eaeb0?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNGQ2OTczZDktOWEwZi00M2ZkLTk5OTAtMjY2Zjg2N2VhZWIwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "821ff975-a01a-44d0-b032-e052fbe119c5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -2277,17 +2301,14 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "2" - ], "x-ms-request-id": [ - "21e2e44f-1b29-4be6-bd3a-aa50800fa96e" + "36d8cef4-d007-42c8-b0bd-b027d05365af" ], "x-ms-correlation-request-id": [ - "dd117831-f051-4da7-9970-38aff94ab7ac" + "89f9d7e1-5c2a-41db-adf8-6d4f3d3202db" ], "x-ms-arm-service-request-id": [ - "bfe64d4d-6011-450d-b4bc-2cfb3300bc3b" + "a8b11fd7-3591-4417-83b1-9c092b394eef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2297,19 +2318,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11728" + "11996" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002755Z:dd117831-f051-4da7-9970-38aff94ab7ac" + "CENTRALINDIA:20210419T065500Z:89f9d7e1-5c2a-41db-adf8-6d4f3d3202db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:54 GMT" + "Mon, 19 Apr 2021 06:54:59 GMT" ], "Content-Length": [ - "30" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2318,20 +2339,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/8c599b6d-70e3-4e37-b6be-c4589980d004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGM1OTliNmQtNzBlMy00ZTM3LWI2YmUtYzQ1ODk5ODBkMDA0P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkInterfaces/a2aVM9100?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYTJhVk05MTAwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/virtualNetworks/a2aVM9100/subnets/a2aVM9100\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/publicIPAddresses/a2aVM9100\"\r\n }\r\n },\r\n \"name\": \"a2aVM9100\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "821ff975-a01a-44d0-b032-e052fbe119c5" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "811" ] }, "ResponseHeaders": { @@ -2341,17 +2374,20 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "2" - ], "x-ms-request-id": [ - "46a1845c-fe40-4acc-b3f6-3a676d8a5435" + "f89f8eaa-acc4-49ee-b737-0fc4925dc762" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/f89f8eaa-acc4-49ee-b737-0fc4925dc762?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "05e46c53-13a5-4d42-bbd5-68e8ea3045e6" + "82afc11c-3228-40a5-8cbc-c886414a0a6b" + ], + "Azure-AsyncNotification": [ + "Enabled" ], "x-ms-arm-service-request-id": [ - "bd643514-de70-4e16-bfce-2ed3fdc0e020" + "00356768-25ae-4b6d-ad32-88b81c05902b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2360,20 +2396,20 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11727" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002757Z:05e46c53-13a5-4d42-bbd5-68e8ea3045e6" + "CENTRALINDIA:20210419T065504Z:82afc11c-3228-40a5-8cbc-c886414a0a6b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:57 GMT" + "Mon, 19 Apr 2021 06:55:04 GMT" ], "Content-Length": [ - "30" + "1927" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2382,20 +2418,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"a2aVM9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkInterfaces/a2aVM9100\",\r\n \"etag\": \"W/\\\"9e4bb2ad-44db-4255-99e8-7d9c8744c54a\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"97cbff16-93dc-4def-8e13-beca328a3941\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkInterfaces/a2aVM9100/ipConfigurations/a2aVM9100\",\r\n \"etag\": \"W/\\\"9e4bb2ad-44db-4255-99e8-7d9c8744c54a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/publicIPAddresses/a2aVM9100\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/virtualNetworks/a2aVM9100/subnets/a2aVM9100\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"jhqewhmghmoerkxoikqxsvojeh.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/8c599b6d-70e3-4e37-b6be-c4589980d004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGM1OTliNmQtNzBlMy00ZTM3LWI2YmUtYzQ1ODk5ODBkMDA0P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/virtualMachines/a2aVM9100?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2EyYVZNOTEwMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM9100\",\r\n \"adminUsername\": \"adminUser\",\r\n \"adminPassword\": \"System.Security.SecureString\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkInterfaces/a2aVM9100\"\r\n }\r\n ]\r\n },\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM9100\"\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "821ff975-a01a-44d0-b032-e052fbe119c5" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "934" ] }, "ResponseHeaders": { @@ -2406,38 +2454,44 @@ "no-cache" ], "Retry-After": [ - "2" + "10" ], - "x-ms-request-id": [ - "3f88f618-255a-4597-a111-4c490ae7752a" + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/383bfc45-a5a6-417e-b397-da0c367bd453?api-version=2020-12-01" ], - "x-ms-correlation-request-id": [ - "b1f32dc5-0269-45e8-9f93-4e8040afcb56" + "Azure-AsyncNotification": [ + "Enabled" ], - "x-ms-arm-service-request-id": [ - "bcbd2c29-2c08-40de-a877-5bc048a19ef1" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "383bfc45-a5a6-417e-b397-da0c367bd453" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11726" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "26965333-05b9-4f2a-954c-419480b27506" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002759Z:b1f32dc5-0269-45e8-9f93-4e8040afcb56" + "CENTRALINDIA:20210419T065510Z:26965333-05b9-4f2a-954c-419480b27506" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:59 GMT" + "Mon, 19 Apr 2021 06:55:09 GMT" ], "Content-Length": [ - "30" + "1847" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2446,20 +2500,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"a2aVM9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/virtualMachines/a2aVM9100\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"ff46fd0f-928d-494c-833c-669c1f871d91\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM9100/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM9100\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM9100\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkInterfaces/a2aVM9100\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/8c599b6d-70e3-4e37-b6be-c4589980d004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGM1OTliNmQtNzBlMy00ZTM3LWI2YmUtYzQ1ODk5ODBkMDA0P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/383bfc45-a5a6-417e-b397-da0c367bd453?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzgzYmZjNDUtYTVhNi00MTdlLWIzOTctZGEwYzM2N2JkNDUzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "821ff975-a01a-44d0-b032-e052fbe119c5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2470,38 +2527,38 @@ "no-cache" ], "Retry-After": [ - "2" - ], - "x-ms-request-id": [ - "e81987e2-e85e-459a-99c2-24718bd781bb" - ], - "x-ms-correlation-request-id": [ - "19e6b8a6-fc3f-43fb-b4d0-78be0a419b0e" + "35" ], - "x-ms-arm-service-request-id": [ - "f290d6c8-948b-48b9-a6e9-53b26890ef94" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "a9f22bc0-1797-4424-a827-73dceaebe982" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11725" + "11997" + ], + "x-ms-correlation-request-id": [ + "f2b34cd1-5f1a-445a-9f82-ee03c2fdad27" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002802Z:19e6b8a6-fc3f-43fb-b4d0-78be0a419b0e" + "CENTRALINDIA:20210419T065520Z:f2b34cd1-5f1a-445a-9f82-ee03c2fdad27" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:28:02 GMT" + "Mon, 19 Apr 2021 06:55:19 GMT" ], "Content-Length": [ - "30" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2510,20 +2567,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-04-19T12:25:08.4426348+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"383bfc45-a5a6-417e-b397-da0c367bd453\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/8c599b6d-70e3-4e37-b6be-c4589980d004?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOGM1OTliNmQtNzBlMy00ZTM3LWI2YmUtYzQ1ODk5ODBkMDA0P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/383bfc45-a5a6-417e-b397-da0c367bd453?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzgzYmZjNDUtYTVhNi00MTdlLWIzOTctZGEwYzM2N2JkNDUzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "821ff975-a01a-44d0-b032-e052fbe119c5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2533,36 +2593,36 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "687e241a-3b20-4551-a85e-d010bee70f9c" - ], - "x-ms-correlation-request-id": [ - "fa380e25-f908-4d95-bb56-2c00ecbf1f3d" - ], - "x-ms-arm-service-request-id": [ - "4a79ebb9-99d5-4e23-b467-00e593cd311a" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29995" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "e02df7ca-92ed-4130-a9f9-795a6c4750f1" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11724" + "11996" + ], + "x-ms-correlation-request-id": [ + "57925142-5488-4048-a23b-d6d1b5c71e79" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002804Z:fa380e25-f908-4d95-bb56-2c00ecbf1f3d" + "CENTRALINDIA:20210419T065555Z:57925142-5488-4048-a23b-d6d1b5c71e79" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:28:04 GMT" + "Mon, 19 Apr 2021 06:55:55 GMT" ], "Content-Length": [ - "29" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2571,20 +2631,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-04-19T12:25:08.4426348+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"383bfc45-a5a6-417e-b397-da0c367bd453\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/a452bc5d-799e-453c-8439-c7929d2ab7bb?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYTQ1MmJjNWQtNzk5ZS00NTNjLTg0MzktYzc5MjlkMmFiN2JiP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/383bfc45-a5a6-417e-b397-da0c367bd453?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMzgzYmZjNDUtYTVhNi00MTdlLWIzOTctZGEwYzM2N2JkNDUzP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "821ff975-a01a-44d0-b032-e052fbe119c5" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2594,36 +2657,36 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "94e0298d-5c75-4c9c-88be-19c5ff488951" - ], - "x-ms-correlation-request-id": [ - "b350bb1f-5bb5-470b-a3ff-d2bef406ed1f" - ], - "x-ms-arm-service-request-id": [ - "508f5cc1-df40-4e27-b58c-1800961abd8d" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29993" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "bb9178a7-a5e5-4e29-b9e8-db003d55ea39" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11733" + "11995" + ], + "x-ms-correlation-request-id": [ + "37bcd78b-a1ef-4fa3-9c1b-b67fedc7e427" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002751Z:b350bb1f-5bb5-470b-a3ff-d2bef406ed1f" + "CENTRALINDIA:20210419T065631Z:37bcd78b-a1ef-4fa3-9c1b-b67fedc7e427" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:27:50 GMT" + "Mon, 19 Apr 2021 06:56:31 GMT" ], "Content-Length": [ - "29" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2632,440 +2695,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-04-19T12:25:08.4426348+05:30\",\r\n \"endTime\": \"2021-04-19T12:26:17.9740231+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"383bfc45-a5a6-417e-b397-da0c367bd453\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/7fec9b54-2c3c-4505-97b6-79580a7a63e0?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvN2ZlYzliNTQtMmMzYy00NTA1LTk3YjYtNzk1ODBhN2E2M2UwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cd7b40ea-6210-4b77-88d2-7f8b43cbd9c7" - ], - "x-ms-correlation-request-id": [ - "fde764e1-74ce-4ee1-b60c-f0b5a3d9a660" - ], - "x-ms-arm-service-request-id": [ - "ffafbe79-3d8d-4122-9807-5229c3e87d5a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11731" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002752Z:fde764e1-74ce-4ee1-b60c-f0b5a3d9a660" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 23 Apr 2020 00:27:51 GMT" - ], - "Content-Length": [ - "29" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkInterfaces/a2aVM910?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTkxMD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/virtualNetworks/a2aVM910/subnets/a2aVM910\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/publicIPAddresses/a2aVM910\"\r\n }\r\n },\r\n \"name\": \"a2aVM910\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/A2APowershellTestRg9100?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6bf2ef2a-7e70-40d6-8979-e4dfbc03064a" + "5bd299ab-e9d5-4eff-804f-10a59deb5a99" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "803" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cb020a70-f8ce-4dfe-9953-644f2f93e732" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/cb020a70-f8ce-4dfe-9953-644f2f93e732?api-version=2017-10-01" - ], - "x-ms-correlation-request-id": [ - "2ff0113f-f3b5-420b-8238-e9fc27bd509b" - ], - "Azure-AsyncNotification": [ - "Enabled" - ], - "x-ms-arm-service-request-id": [ - "1e594860-71c6-420f-8af4-9d12f7fbb9bd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002807Z:2ff0113f-f3b5-420b-8238-e9fc27bd509b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 23 Apr 2020 00:28:07 GMT" - ], - "Content-Length": [ - "1913" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"a2aVM910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkInterfaces/a2aVM910\",\r\n \"etag\": \"W/\\\"1960a19f-d6a7-4f05-b503-e6aefd91e232\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"75921668-4344-4199-b36e-aba651fec901\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkInterfaces/a2aVM910/ipConfigurations/a2aVM910\",\r\n \"etag\": \"W/\\\"1960a19f-d6a7-4f05-b503-e6aefd91e232\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/publicIPAddresses/a2aVM910\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/virtualNetworks/a2aVM910/subnets/a2aVM910\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"syqied3tmkhurd0xltsahz0bgf.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/virtualMachines/a2aVM910?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk05MTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM910\",\r\n \"adminUsername\": \"adminUser\",\r\n \"adminPassword\": \"System.Security.SecureString\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkInterfaces/a2aVM910\"\r\n }\r\n ]\r\n },\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM910\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "d7bfae41-1d2b-4dfd-b664-3ba9de6d353e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "929" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/operations/92fa1188-945b-419d-a5e2-19e6a67c7a9d?api-version=2019-12-01" - ], - "Azure-AsyncNotification": [ - "Enabled" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "92fa1188-945b-419d-a5e2-19e6a67c7a9d" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "381d2e2d-2db5-4519-9445-33017bbe8a71" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002816Z:381d2e2d-2db5-4519-9445-33017bbe8a71" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 23 Apr 2020 00:28:16 GMT" - ], - "Content-Length": [ - "1624" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"a2aVM910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/virtualMachines/a2aVM910\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"vmId\": \"8cf8f75d-67da-4427-9fc8-912e6c48fcc4\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM910/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM910\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM910\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkInterfaces/a2aVM910\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/operations/92fa1188-945b-419d-a5e2-19e6a67c7a9d?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTJmYTExODgtOTQ1Yi00MTlkLWE1ZTItMTllNmE2N2M3YTlkP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ "35" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "0db6f9f6-213e-44d8-96fe-bccdb815b77a" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "738001d6-02b4-472d-acbb-86771ce5900a" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002827Z:738001d6-02b4-472d-acbb-86771ce5900a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 23 Apr 2020 00:28:26 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-04-23T05:58:12.2291236+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"92fa1188-945b-419d-a5e2-19e6a67c7a9d\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/operations/92fa1188-945b-419d-a5e2-19e6a67c7a9d?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTJmYTExODgtOTQ1Yi00MTlkLWE1ZTItMTllNmE2N2M3YTlkP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "e7c0e011-9c34-465b-b755-668a77ac5b3b" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "671dfe17-6cc1-4cce-9c4b-2479e8c51091" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002902Z:671dfe17-6cc1-4cce-9c4b-2479e8c51091" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 23 Apr 2020 00:29:02 GMT" - ], - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-04-23T05:58:12.2291236+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"92fa1188-945b-419d-a5e2-19e6a67c7a9d\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/operations/92fa1188-945b-419d-a5e2-19e6a67c7a9d?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTJmYTExODgtOTQ1Yi00MTlkLWE1ZTItMTllNmE2N2M3YTlkP2FwaS12ZXJzaW9uPTIwMTktMTItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-request-id": [ - "3b239d6b-83ee-4603-a9a2-bde160b09278" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "1f3e81c8-b834-4e4a-a4b3-8cc812e02bdf" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002938Z:1f3e81c8-b834-4e4a-a4b3-8cc812e02bdf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 23 Apr 2020 00:29:37 GMT" - ], - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-04-23T05:58:12.2291236+05:30\",\r\n \"endTime\": \"2020-04-23T05:59:28.3541786+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"92fa1188-945b-419d-a5e2-19e6a67c7a9d\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/A2APowershellTestRg910?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "147b22d8-9ddd-46e5-ae3e-309a90b5ba4f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" ] }, "ResponseHeaders": { @@ -3076,16 +2731,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "0c2d8432-b66f-4cb6-a06c-f3598f064e1a" + "5bbd2832-7d9e-401d-b70a-8cbed0a8e751" ], "x-ms-correlation-request-id": [ - "0c2d8432-b66f-4cb6-a06c-f3598f064e1a" + "5bbd2832-7d9e-401d-b70a-8cbed0a8e751" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T002942Z:0c2d8432-b66f-4cb6-a06c-f3598f064e1a" + "CENTRALINDIA:20210419T065633Z:5bbd2832-7d9e-401d-b70a-8cbed0a8e751" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3094,10 +2749,10 @@ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 00:29:42 GMT" + "Mon, 19 Apr 2021 06:56:33 GMT" ], "Content-Length": [ - "197" + "206" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3106,32 +2761,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910\",\r\n \"name\": \"A2APowershellTestRg910\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100\",\r\n \"name\": \"A2APowershellTestRg9100\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ae900abd-9ea0-4e0d-812d-e4432b4d6717-2020-04-23 00:30:03Z-P" + "0fc02f01-974d-4c96-9a51-81551c2d804e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "91" + "98" ] }, "ResponseHeaders": { @@ -3145,10 +2800,10 @@ "nosniff" ], "x-ms-request-id": [ - "a70add25-cbc2-4f8c-b5dd-a9978570d78c" + "d22db129-d8cc-4334-8fb6-c0d84ab371ae" ], "x-ms-client-request-id": [ - "ae900abd-9ea0-4e0d-812d-e4432b4d6717-2020-04-23 00:30:03Z-P" + "0fc02f01-974d-4c96-9a51-81551c2d804e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3157,19 +2812,19 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "199" + "209" ], "x-ms-correlation-request-id": [ - "a70add25-cbc2-4f8c-b5dd-a9978570d78c" + "d22db129-d8cc-4334-8fb6-c0d84ab371ae" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003015Z:a70add25-cbc2-4f8c-b5dd-a9978570d78c" + "CENTRALINDIA:20210419T065708Z:d22db129-d8cc-4334-8fb6-c0d84ab371ae" ], "Date": [ - "Thu, 23 Apr 2020 00:30:15 GMT" + "Mon, 19 Apr 2021 06:57:07 GMT" ], "Content-Length": [ - "471" + "480" ], "Content-Type": [ "application/json" @@ -3178,26 +2833,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"eastus\",\r\n \"name\": \"A2APowershellTest910\",\r\n \"etag\": \"W/\\\"datetime'2020-04-23T00%3A30%3A14.3510365Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest9100\",\r\n \"etag\": \"W/\\\"datetime'2021-04-19T06%3A57%3A06.755664Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86366ffb-9ea7-4230-80cd-ba051491e339-2020-04-23 00:30:35Z-P" + "d5571bd6-0de8-4fcd-b295-009bacbccc8a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, "ResponseHeaders": { @@ -3211,31 +2866,31 @@ "nosniff" ], "x-ms-request-id": [ - "e9c4aa2d-bbd6-49fe-b745-3840ed7b3a5f" + "d54fbf5c-1ae9-49ff-944a-751212422edd" ], "x-ms-client-request-id": [ - "86366ffb-9ea7-4230-80cd-ba051491e339-2020-04-23 00:30:35Z-P" + "d5571bd6-0de8-4fcd-b295-009bacbccc8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], "Server": [ "Microsoft-IIS/10.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], "x-ms-correlation-request-id": [ - "e9c4aa2d-bbd6-49fe-b745-3840ed7b3a5f" + "d54fbf5c-1ae9-49ff-944a-751212422edd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003036Z:e9c4aa2d-bbd6-49fe-b745-3840ed7b3a5f" + "CENTRALINDIA:20210419T065729Z:d54fbf5c-1ae9-49ff-944a-751212422edd" ], "Date": [ - "Thu, 23 Apr 2020 00:30:36 GMT" + "Mon, 19 Apr 2021 06:57:28 GMT" ], "Content-Length": [ - "471" + "480" ], "Content-Type": [ "application/json" @@ -3244,17 +2899,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"eastus\",\r\n \"name\": \"A2APowershellTest910\",\r\n \"etag\": \"W/\\\"datetime'2020-04-23T00%3A30%3A14.3510365Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest9100\",\r\n \"etag\": \"W/\\\"datetime'2021-04-19T06%3A57%3A06.755664Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9leHRlbmRlZEluZm9ybWF0aW9uL3ZhdWx0RXh0ZW5kZWRJbmZvP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL2V4dGVuZGVkSW5mb3JtYXRpb24vdmF1bHRFeHRlbmRlZEluZm8/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f65accf1-a99d-4236-a66f-dc9f74e4a8cd-2020-04-23 00:30:36Z-Ps" + "8fe72327-279a-4c1e-a46b-f7a351ec47ac" ], "Accept-Language": [ "en-US" @@ -3263,10 +2918,10 @@ "" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, "ResponseHeaders": { @@ -3280,10 +2935,10 @@ "nosniff" ], "x-ms-request-id": [ - "fd55def4-28a6-4478-bb2a-d33e6568084a" + "ce32cd0b-c9bd-4c06-a2f0-6a20d5e0a2a1" ], "x-ms-client-request-id": [ - "f65accf1-a99d-4236-a66f-dc9f74e4a8cd-2020-04-23 00:30:36Z-Ps" + "8fe72327-279a-4c1e-a46b-f7a351ec47ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3295,13 +2950,13 @@ "11998" ], "x-ms-correlation-request-id": [ - "fd55def4-28a6-4478-bb2a-d33e6568084a" + "ce32cd0b-c9bd-4c06-a2f0-6a20d5e0a2a1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003037Z:fd55def4-28a6-4478-bb2a-d33e6568084a" + "CENTRALINDIA:20210419T065729Z:ce32cd0b-c9bd-4c06-a2f0-6a20d5e0a2a1" ], "Date": [ - "Thu, 23 Apr 2020 00:30:37 GMT" + "Mon, 19 Apr 2021 06:57:28 GMT" ], "Content-Length": [ "86" @@ -3317,13 +2972,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9leHRlbmRlZEluZm9ybWF0aW9uL3ZhdWx0RXh0ZW5kZWRJbmZvP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL2V4dGVuZGVkSW5mb3JtYXRpb24vdmF1bHRFeHRlbmRlZEluZm8/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"/KgIulVXownM4+V3CV/wjw==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"xbAjYYqW8/2QtgblNk718Q==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "02b8b43c-a769-4d60-940e-6e7b026cb8da-2020-04-23 00:30:37Z-Ps" + "8fe72327-279a-4c1e-a46b-f7a351ec47ac" ], "Accept-Language": [ "en-US" @@ -3332,10 +2987,10 @@ "" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3355,10 +3010,10 @@ "nosniff" ], "x-ms-request-id": [ - "92b563fb-cfe9-4f9a-a053-136e72bd0eb6" + "cd513019-e758-4238-920a-abd0fc49bdd5" ], "x-ms-client-request-id": [ - "02b8b43c-a769-4d60-940e-6e7b026cb8da-2020-04-23 00:30:37Z-Ps" + "8fe72327-279a-4c1e-a46b-f7a351ec47ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3370,16 +3025,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "92b563fb-cfe9-4f9a-a053-136e72bd0eb6" + "cd513019-e758-4238-920a-abd0fc49bdd5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003039Z:92b563fb-cfe9-4f9a-a053-136e72bd0eb6" + "CENTRALINDIA:20210419T065730Z:cd513019-e758-4238-920a-abd0fc49bdd5" ], "Date": [ - "Thu, 23 Apr 2020 00:30:38 GMT" + "Mon, 19 Apr 2021 06:57:29 GMT" ], "Content-Length": [ - "412" + "414" ], "Content-Type": [ "application/json" @@ -3388,26 +3043,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"6c5d5f3f-469d-4a48-9bf5-59ffde93ff3d\",\r\n \"properties\": {\r\n \"integrityKey\": \"/KgIulVXownM4+V3CV/wjw==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"6cbc5825-6c35-4b51-8d50-11f66ccad7a8\",\r\n \"properties\": {\r\n \"integrityKey\": \"xbAjYYqW8/2QtgblNk718Q==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42b68de8-a4bd-4fd9-ba89-be0905f580ea" + "8fe72327-279a-4c1e-a46b-f7a351ec47ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, "ResponseHeaders": { @@ -3421,10 +3076,10 @@ "nosniff" ], "x-ms-request-id": [ - "cc8a83af-2f74-4baf-815e-f0f42d71095a" + "e0f1c605-9cfa-43bb-a589-35f330095057" ], "x-ms-client-request-id": [ - "42b68de8-a4bd-4fd9-ba89-be0905f580ea" + "8fe72327-279a-4c1e-a46b-f7a351ec47ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3436,16 +3091,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "cc8a83af-2f74-4baf-815e-f0f42d71095a" + "e0f1c605-9cfa-43bb-a589-35f330095057" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003039Z:cc8a83af-2f74-4baf-815e-f0f42d71095a" + "CENTRALINDIA:20210419T065730Z:e0f1c605-9cfa-43bb-a589-35f330095057" ], "Date": [ - "Thu, 23 Apr 2020 00:30:39 GMT" + "Mon, 19 Apr 2021 06:57:30 GMT" ], "Content-Length": [ - "483" + "493" ], "Content-Type": [ "application/json" @@ -3454,29 +3109,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"A2APowershellTest910\",\r\n \"etag\": \"W/\\\"datetime'2020-04-23T00%3A30%3A38.9072892Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910\",\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\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest9100\",\r\n \"etag\": \"W/\\\"datetime'2021-04-19T06%3A57%3A30.0085132Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100\",\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/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxMD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljOTEwMD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westus\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"EastUS\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f7ce65f1-7b1c-4224-8e4b-f1b24e8ab2f2-2020-04-23 00:30:39Z-Ps" + "da408fba-e190-4a0b-90ad-050a80df79b8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598239637)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203039637)\\/\",\"ClientRequestId\":\"f7ce65f1-7b1c-4224-8e4b-f1b24e8ab2f2-2020-04-23 00:30:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"J+jq+wjsiaMNibHHVhTts6cTbiZCmAJwzUqCsPSFzGE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618811850701)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416650701)\\/\",\"ClientRequestId\":\"988cfb92-0b80-47ae-814b-0eedca7a011b-2021-04-19 06:57:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mFgi30dOQDi+kKx5mTZccyDxHJnGbTePnhSktYM3GbI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3493,41 +3148,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/operationresults/b79d8cca-dd30-4b57-8df9-9ec03dcecd98?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/operationresults/b3b488bf-c464-4f38-9e3b-a88621d56f09?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationOperationStatus/b79d8cca-dd30-4b57-8df9-9ec03dcecd98?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationOperationStatus/b3b488bf-c464-4f38-9e3b-a88621d56f09?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f7ce65f1-7b1c-4224-8e4b-f1b24e8ab2f2-2020-04-23 00:30:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "da408fba-e190-4a0b-90ad-050a80df79b8" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "c89365f5-fa15-4ca3-9749-48e4388ef53e" + "48677f95-5e87-4e32-b85b-8f7da29810a9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003042Z:c89365f5-fa15-4ca3-9749-48e4388ef53e" + "CENTRALINDIA:20210419T065734Z:48677f95-5e87-4e32-b85b-8f7da29810a9" ], "Date": [ - "Thu, 23 Apr 2020 00:30:41 GMT" + "Mon, 19 Apr 2021 06:57:33 GMT" ], "Expires": [ "-1" @@ -3540,25 +3192,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYjc5ZDhjY2EtZGQzMC00YjU3LThkZjktOWVjMDNkY2VjZDk4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9iM2I0ODhiZi1jNDY0LTRmMzgtOWUzYi1hODg2MjFkNTZmMDk/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e1e2966-6ef8-4524-bede-8831b34cbe64-2020-04-23 00:30:42Z-Ps" + "da408fba-e190-4a0b-90ad-050a80df79b8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598242212)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203042212)\\/\",\"ClientRequestId\":\"9e1e2966-6ef8-4524-bede-8831b34cbe64-2020-04-23 00:30:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vfF2HN667oHgSUW/z73BIqy0nWbZT5qIQ5r+NqcXuPg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618811854237)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416654237)\\/\",\"ClientRequestId\":\"6d5ed3cd-afa5-4040-b152-b0138512a4b4-2021-04-19 06:57:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rnIdHOohDj9XWAYRnW2dsiARYYhXBzSWLzRLhA6yJsQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3569,38 +3221,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9e1e2966-6ef8-4524-bede-8831b34cbe64-2020-04-23 00:30:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "da408fba-e190-4a0b-90ad-050a80df79b8" ], "x-ms-correlation-request-id": [ - "7b26fa84-b097-4f2b-bc5f-d9505e083eea" + "fd8587a1-8418-4e4c-9b73-e81829b512a2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003042Z:7b26fa84-b097-4f2b-bc5f-d9505e083eea" + "CENTRALINDIA:20210419T065734Z:fd8587a1-8418-4e4c-9b73-e81829b512a2" ], "Date": [ - "Thu, 23 Apr 2020 00:30:41 GMT" + "Mon, 19 Apr 2021 06:57:34 GMT" ], "Content-Length": [ - "1343" + "1323" ], "Content-Type": [ "application/json" @@ -3609,29 +3258,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f7ce65f1-7b1c-4224-8e4b-f1b24e8ab2f2-2020-04-23 00:30:39Z-Ps ActivityId: c89365f5-fa15-4ca3-9749-48e4388ef53e\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-04-23T00:30:41.9465064Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric910\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"da408fba-e190-4a0b-90ad-050a80df79b8 ActivityId: 48677f95-5e87-4e32-b85b-8f7da29810a9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-19T06:57:33.7827621Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric9100\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYjc5ZDhjY2EtZGQzMC00YjU3LThkZjktOWVjMDNkY2VjZDk4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9iM2I0ODhiZi1jNDY0LTRmMzgtOWUzYi1hODg2MjFkNTZmMDk/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cb1de24-d436-4a1c-9c8d-c3b9eccc509b-2020-04-23 00:30:42Z-Ps" + "5cc7a85a-3711-4068-8541-c45721482888" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598242874)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203042874)\\/\",\"ClientRequestId\":\"2cb1de24-d436-4a1c-9c8d-c3b9eccc509b-2020-04-23 00:30:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IaXGt9X4bDIBsvQXySxNg+OVULg15u7ThWnGfHu7hfk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618811854757)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416654757)\\/\",\"ClientRequestId\":\"5db2529c-06b8-492c-982c-716fe5faf23e-2021-04-19 06:57:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fkhprRlyDgVZr2OJ303XJ+z8zsY6I2huajf3X4Q3ilw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3642,38 +3291,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2cb1de24-d436-4a1c-9c8d-c3b9eccc509b-2020-04-23 00:30:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5cc7a85a-3711-4068-8541-c45721482888" ], "x-ms-correlation-request-id": [ - "de96633e-5228-4982-895a-ff0d8d76796a" + "dd75fa0d-59ae-4151-b112-17c87f283571" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003043Z:de96633e-5228-4982-895a-ff0d8d76796a" + "CENTRALINDIA:20210419T065735Z:dd75fa0d-59ae-4151-b112-17c87f283571" ], "Date": [ - "Thu, 23 Apr 2020 00:30:42 GMT" + "Mon, 19 Apr 2021 06:57:34 GMT" ], "Content-Length": [ - "1343" + "1323" ], "Content-Type": [ "application/json" @@ -3682,29 +3328,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f7ce65f1-7b1c-4224-8e4b-f1b24e8ab2f2-2020-04-23 00:30:39Z-Ps ActivityId: c89365f5-fa15-4ca3-9749-48e4388ef53e\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-04-23T00:30:41.9465064Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric910\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"da408fba-e190-4a0b-90ad-050a80df79b8 ActivityId: 48677f95-5e87-4e32-b85b-8f7da29810a9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-19T06:57:33.7827621Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric9100\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYjc5ZDhjY2EtZGQzMC00YjU3LThkZjktOWVjMDNkY2VjZDk4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9iM2I0ODhiZi1jNDY0LTRmMzgtOWUzYi1hODg2MjFkNTZmMDk/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a292acd-714b-4da0-9bef-34f53e8c7f4a-2020-04-23 00:31:03Z-Ps" + "c586eb88-7479-4ef9-a95c-c837cbf53d87" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598263550)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203063550)\\/\",\"ClientRequestId\":\"5a292acd-714b-4da0-9bef-34f53e8c7f4a-2020-04-23 00:31:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3UgC/PWVx4nE7IGwZ7VR0UcwYEbj4EwyVXX//koq4ws=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618811875135)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416675135)\\/\",\"ClientRequestId\":\"97df45a8-4829-4ac4-81d8-2bfdc781a7e7-2021-04-19 06:57:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OIuQLN09dwDLB2CncLvHerJPJFHoCQmrUNUy1veuo3M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3715,38 +3361,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "5a292acd-714b-4da0-9bef-34f53e8c7f4a-2020-04-23 00:31:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c586eb88-7479-4ef9-a95c-c837cbf53d87" ], "x-ms-correlation-request-id": [ - "b0917603-a97b-4f0a-aac2-be0f3de0f598" + "1d7e7285-9e36-45b2-958e-c17b49b6bb58" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003104Z:b0917603-a97b-4f0a-aac2-be0f3de0f598" + "CENTRALINDIA:20210419T065755Z:1d7e7285-9e36-45b2-958e-c17b49b6bb58" ], "Date": [ - "Thu, 23 Apr 2020 00:31:03 GMT" + "Mon, 19 Apr 2021 06:57:54 GMT" ], "Content-Length": [ - "1343" + "1323" ], "Content-Type": [ "application/json" @@ -3755,29 +3398,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f7ce65f1-7b1c-4224-8e4b-f1b24e8ab2f2-2020-04-23 00:30:39Z-Ps ActivityId: c89365f5-fa15-4ca3-9749-48e4388ef53e\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-04-23T00:30:41.9465064Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric910\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"da408fba-e190-4a0b-90ad-050a80df79b8 ActivityId: 48677f95-5e87-4e32-b85b-8f7da29810a9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-19T06:57:33.7827621Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric9100\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYjc5ZDhjY2EtZGQzMC00YjU3LThkZjktOWVjMDNkY2VjZDk4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9iM2I0ODhiZi1jNDY0LTRmMzgtOWUzYi1hODg2MjFkNTZmMDk/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "758dba53-adc9-412c-9c88-276e5389c40c-2020-04-23 00:31:24Z-Ps" + "a374c18f-42d7-4522-8082-144597b937a4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598284246)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203084246)\\/\",\"ClientRequestId\":\"758dba53-adc9-412c-9c88-276e5389c40c-2020-04-23 00:31:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+BSPdvvgvgEPS8XKy6keybLBcOApTgL3AmB5FKjm0OE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618811895500)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416695500)\\/\",\"ClientRequestId\":\"efddd6d6-99ed-4e87-8466-2e02f3498440-2021-04-19 06:58:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rrAGnW0RpAqNfim4Gdib0eCPbLzK9P4IgH4mcv1MU9A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3788,38 +3431,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11996" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "758dba53-adc9-412c-9c88-276e5389c40c-2020-04-23 00:31:24Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a374c18f-42d7-4522-8082-144597b937a4" ], "x-ms-correlation-request-id": [ - "7dc1afc0-c3b2-4b93-adbf-9a1a5af4cce6" + "dcff7c54-798f-486c-955f-de234a490128" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003124Z:7dc1afc0-c3b2-4b93-adbf-9a1a5af4cce6" + "CENTRALINDIA:20210419T065815Z:dcff7c54-798f-486c-955f-de234a490128" ], "Date": [ - "Thu, 23 Apr 2020 00:31:24 GMT" + "Mon, 19 Apr 2021 06:58:15 GMT" ], "Content-Length": [ - "1343" + "1323" ], "Content-Type": [ "application/json" @@ -3828,29 +3468,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f7ce65f1-7b1c-4224-8e4b-f1b24e8ab2f2-2020-04-23 00:30:39Z-Ps ActivityId: c89365f5-fa15-4ca3-9749-48e4388ef53e\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-04-23T00:30:41.9465064Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric910\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"da408fba-e190-4a0b-90ad-050a80df79b8 ActivityId: 48677f95-5e87-4e32-b85b-8f7da29810a9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-19T06:57:33.7827621Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric9100\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYjc5ZDhjY2EtZGQzMC00YjU3LThkZjktOWVjMDNkY2VjZDk4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9iM2I0ODhiZi1jNDY0LTRmMzgtOWUzYi1hODg2MjFkNTZmMDk/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ed26072-87be-430e-b3a2-b034273212e3-2020-04-23 00:31:44Z-Ps" + "673165d5-997c-473e-805b-c431c61b46d6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598304875)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203104875)\\/\",\"ClientRequestId\":\"5ed26072-87be-430e-b3a2-b034273212e3-2020-04-23 00:31:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HxnOMZnNIIyQSFeisaIYqI8qyoSOi44U/Olh8STQLbc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618811915999)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416715999)\\/\",\"ClientRequestId\":\"632bb357-6416-4442-8453-1f0e09e13c3f-2021-04-19 06:58:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KqctU5Jgr7xsoXGwdH1gpHu+ErqOlwEAxpYjipLsnBM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3860,39 +3500,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "5ed26072-87be-430e-b3a2-b034273212e3-2020-04-23 00:31:44Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "673165d5-997c-473e-805b-c431c61b46d6" ], "x-ms-correlation-request-id": [ - "51e68909-f159-45c2-b0c9-3c0e2ef9770a" + "fa07a2b9-88a6-4b0d-a63f-6c4ce7be632e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003145Z:51e68909-f159-45c2-b0c9-3c0e2ef9770a" + "CENTRALINDIA:20210419T065836Z:fa07a2b9-88a6-4b0d-a63f-6c4ce7be632e" ], "Date": [ - "Thu, 23 Apr 2020 00:31:44 GMT" + "Mon, 19 Apr 2021 06:58:35 GMT" ], "Content-Length": [ - "1343" + "1323" ], "Content-Type": [ "application/json" @@ -3901,29 +3538,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f7ce65f1-7b1c-4224-8e4b-f1b24e8ab2f2-2020-04-23 00:30:39Z-Ps ActivityId: c89365f5-fa15-4ca3-9749-48e4388ef53e\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-04-23T00:30:41.9465064Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric910\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"da408fba-e190-4a0b-90ad-050a80df79b8 ActivityId: 48677f95-5e87-4e32-b85b-8f7da29810a9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-19T06:57:33.7827621Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric9100\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYjc5ZDhjY2EtZGQzMC00YjU3LThkZjktOWVjMDNkY2VjZDk4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9iM2I0ODhiZi1jNDY0LTRmMzgtOWUzYi1hODg2MjFkNTZmMDk/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c556d241-e84c-4518-bca2-2c9e1a071dd7-2020-04-23 00:32:05Z-Ps" + "5638dd94-32d3-4444-8c2b-bca2c2b70003" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598325404)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203125404)\\/\",\"ClientRequestId\":\"c556d241-e84c-4518-bca2-2c9e1a071dd7-2020-04-23 00:32:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YKKGUgWiXcxL5p8bSlMYL0pQMRDrDpBN8bEdCb+1YSM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618811936450)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416736450)\\/\",\"ClientRequestId\":\"e0d62ab5-217b-469d-8b02-908948f5743a-2021-04-19 06:58:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3dNH2tsTer00JW+uc29KDBoXOkTnpjSrcI+PnJvlFo4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3933,39 +3570,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c556d241-e84c-4518-bca2-2c9e1a071dd7-2020-04-23 00:32:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "5638dd94-32d3-4444-8c2b-bca2c2b70003" ], "x-ms-correlation-request-id": [ - "c76d78b0-53d9-4a7d-9ce7-0d1e57e29810" + "f8f04c31-6d21-4007-b225-6ff75d3e1640" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003206Z:c76d78b0-53d9-4a7d-9ce7-0d1e57e29810" + "CENTRALINDIA:20210419T065856Z:f8f04c31-6d21-4007-b225-6ff75d3e1640" ], "Date": [ - "Thu, 23 Apr 2020 00:32:06 GMT" + "Mon, 19 Apr 2021 06:58:56 GMT" ], "Content-Length": [ - "1381" + "1361" ], "Content-Type": [ "application/json" @@ -3974,29 +3608,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f7ce65f1-7b1c-4224-8e4b-f1b24e8ab2f2-2020-04-23 00:30:39Z-Ps ActivityId: c89365f5-fa15-4ca3-9749-48e4388ef53e\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-04-23T00:31:46.7656684Z\",\r\n \"endTime\": \"2020-04-23T00:31:47.0156737Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric910\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"da408fba-e190-4a0b-90ad-050a80df79b8 ActivityId: 48677f95-5e87-4e32-b85b-8f7da29810a9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-19T06:58:39.0551329Z\",\r\n \"endTime\": \"2021-04-19T06:58:39.2251341Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric9100\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxMD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljOTEwMD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "647209ec-eecb-40a5-84a5-1ef871de90ad-2020-04-23 00:32:06Z-Ps" + "337e1c67-6181-483b-9461-7fadd44e38ad" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598326963)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203126963)\\/\",\"ClientRequestId\":\"647209ec-eecb-40a5-84a5-1ef871de90ad-2020-04-23 00:32:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KREiEmNB6ZXr0l6sVQAYTNwY1tgvskoDYgMorEHx1SM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618811936847)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416736847)\\/\",\"ClientRequestId\":\"9cb89b05-0588-487e-9098-11703a48135d-2021-04-19 06:58:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5V+fLQ94Wzu2jJWCS3JokSFz1G9GG0plhA/kF5esL0g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4007,38 +3641,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11993" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "647209ec-eecb-40a5-84a5-1ef871de90ad-2020-04-23 00:32:06Z-Ps 4/23/2020 12:32:08 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "337e1c67-6181-483b-9461-7fadd44e38ad 4/19/2021 6:58:57 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "647209ec-eecb-40a5-84a5-1ef871de90ad-2020-04-23 00:32:06Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "337e1c67-6181-483b-9461-7fadd44e38ad" ], "x-ms-correlation-request-id": [ - "18ecf35e-6598-430b-9cdb-b715f762622a" + "dce9c12c-7597-4bad-a702-9ce02e1fa4be" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003208Z:18ecf35e-6598-430b-9cdb-b715f762622a" + "CENTRALINDIA:20210419T065857Z:dce9c12c-7597-4bad-a702-9ce02e1fa4be" ], "Date": [ - "Thu, 23 Apr 2020 00:32:08 GMT" + "Mon, 19 Apr 2021 06:58:56 GMT" ], "Content-Length": [ - "683" + "687" ], "Content-Type": [ "application/json" @@ -4047,29 +3678,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric910\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910\",\r\n \"properties\": {\r\n \"friendlyName\": \"West US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric9100\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxMD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljOTEwMD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5bcaef8-d874-4607-b55f-f9affef8694a-2020-04-23 00:33:35Z-Ps" + "4ac967cd-15aa-4f99-ae1f-a0b1529cb9c4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598415245)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203215245)\\/\",\"ClientRequestId\":\"a5bcaef8-d874-4607-b55f-f9affef8694a-2020-04-23 00:33:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HAsm8PiRc7wfZFJw6ZXSPzqgz8Ofk22rQ9RCyVohENs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812020614)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416820614)\\/\",\"ClientRequestId\":\"ede672bc-a93b-456a-b2b5-e41d2004b378-2021-04-19 07:00:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qD2tTdfVaku0fRasR3wzxL93EpSUt6uqewrFa+e2Y64=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4080,38 +3711,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11985" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "a5bcaef8-d874-4607-b55f-f9affef8694a-2020-04-23 00:33:35Z-Ps 4/23/2020 12:33:35 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "4ac967cd-15aa-4f99-ae1f-a0b1529cb9c4 4/19/2021 7:00:20 AM" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "a5bcaef8-d874-4607-b55f-f9affef8694a-2020-04-23 00:33:35Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "4ac967cd-15aa-4f99-ae1f-a0b1529cb9c4" ], "x-ms-correlation-request-id": [ - "229e71c4-f1ad-4794-932b-42bb4093e198" + "5f5b3b11-00b8-4c93-8259-c42f3223eb32" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003335Z:229e71c4-f1ad-4794-932b-42bb4093e198" + "CENTRALINDIA:20210419T070020Z:5f5b3b11-00b8-4c93-8259-c42f3223eb32" ], "Date": [ - "Thu, 23 Apr 2020 00:33:35 GMT" + "Mon, 19 Apr 2021 07:00:20 GMT" ], "Content-Length": [ - "683" + "687" ], "Content-Type": [ "application/json" @@ -4120,35 +3748,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric910\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910\",\r\n \"properties\": {\r\n \"friendlyName\": \"West US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric9100\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTA/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzkxMDA/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"WestCentralUS\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1f28fbd7-93d3-4003-8bd9-14b4152d2b4b-2020-04-23 00:32:08Z-Ps" + "d84ca1c3-919f-4b12-857e-c63023b9e5ed" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598328780)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203128780)\\/\",\"ClientRequestId\":\"1f28fbd7-93d3-4003-8bd9-14b4152d2b4b-2020-04-23 00:32:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EWwbm8Umw3W3e9fKUkSEQ+OznjjlIDC3WHMpu4avzdk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618811937377)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416737377)\\/\",\"ClientRequestId\":\"531901ba-7e6c-4753-bb3f-46cacfb9bc1a-2021-04-19 06:58:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GWax6cYah0YD1A6vDKg0pFTQQkD7OWqtUD3QGQdjZ/U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "119" + "126" ] }, "ResponseHeaders": { @@ -4159,41 +3787,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/operationresults/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/operationresults/8d37e6e3-bf32-4abb-a896-8104f5efc316?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationOperationStatus/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationOperationStatus/8d37e6e3-bf32-4abb-a896-8104f5efc316?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1f28fbd7-93d3-4003-8bd9-14b4152d2b4b-2020-04-23 00:32:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "d84ca1c3-919f-4b12-857e-c63023b9e5ed" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "1bef7ea2-090e-4fd2-9fda-dc09fd56d373" + "ec586a08-e6a0-47da-bcb1-c9b2d3325e5d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003210Z:1bef7ea2-090e-4fd2-9fda-dc09fd56d373" + "CENTRALINDIA:20210419T065858Z:ec586a08-e6a0-47da-bcb1-c9b2d3325e5d" ], "Date": [ - "Thu, 23 Apr 2020 00:32:09 GMT" + "Mon, 19 Apr 2021 06:58:57 GMT" ], "Expires": [ "-1" @@ -4206,25 +3831,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTE1ZjRkOGEtNzI1Mi00NjNjLWFkMTAtMmYzYjEyYWQyYmE5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy84ZDM3ZTZlMy1iZjMyLTRhYmItYTg5Ni04MTA0ZjVlZmMzMTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56b5d715-49d1-4413-8e98-a89f8260e837-2020-04-23 00:32:10Z-Ps" + "d84ca1c3-919f-4b12-857e-c63023b9e5ed" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598330109)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203130109)\\/\",\"ClientRequestId\":\"56b5d715-49d1-4413-8e98-a89f8260e837-2020-04-23 00:32:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"a43JV4prQQSZXoolMRGdyGIbDMVbAX8DaQcT0gBQWqs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618811938093)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416738093)\\/\",\"ClientRequestId\":\"4b2a0ab4-9c6c-4749-b6b1-b2325867072c-2021-04-19 06:58:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Sf9YJZ5NGiFrkcSFq1aQu56b3yJZ7COHS2n8wZdgFUM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4235,38 +3860,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11992" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "56b5d715-49d1-4413-8e98-a89f8260e837-2020-04-23 00:32:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d84ca1c3-919f-4b12-857e-c63023b9e5ed" ], "x-ms-correlation-request-id": [ - "487eae44-00a2-47e1-95f7-16a0f0e44443" + "f58e50cc-59ae-4dec-9b25-bb81e9b65eb0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003210Z:487eae44-00a2-47e1-95f7-16a0f0e44443" + "CENTRALINDIA:20210419T065858Z:f58e50cc-59ae-4dec-9b25-bb81e9b65eb0" ], "Date": [ - "Thu, 23 Apr 2020 00:32:09 GMT" + "Mon, 19 Apr 2021 06:58:57 GMT" ], "Content-Length": [ - "1345" + "1325" ], "Content-Type": [ "application/json" @@ -4275,29 +3897,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1f28fbd7-93d3-4003-8bd9-14b4152d2b4b-2020-04-23 00:32:08Z-Ps ActivityId: 1bef7ea2-090e-4fd2-9fda-dc09fd56d373\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-04-23T00:32:10.2735362Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric910\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d84ca1c3-919f-4b12-857e-c63023b9e5ed ActivityId: ec586a08-e6a0-47da-bcb1-c9b2d3325e5d\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-19T06:58:57.8794889Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric9100\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTE1ZjRkOGEtNzI1Mi00NjNjLWFkMTAtMmYzYjEyYWQyYmE5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy84ZDM3ZTZlMy1iZjMyLTRhYmItYTg5Ni04MTA0ZjVlZmMzMTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7997be39-7d43-422e-baa0-b839496b3548-2020-04-23 00:32:10Z-Ps" + "e7e6d3a2-bb81-44f4-852c-b9e04e374146" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598330549)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203130549)\\/\",\"ClientRequestId\":\"7997be39-7d43-422e-baa0-b839496b3548-2020-04-23 00:32:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wKAartgSN0uSmNB99D9VSFIMrWWfWmrqlqp/oFktl6U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618811938442)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416738442)\\/\",\"ClientRequestId\":\"7fd4a35a-9eba-431f-a34d-e2edab48e536-2021-04-19 06:58:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/tLgYXFnBCIatKCZh84y6viXCGPEZDmVjMqX1GpYe6c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4308,38 +3930,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11991" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7997be39-7d43-422e-baa0-b839496b3548-2020-04-23 00:32:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e7e6d3a2-bb81-44f4-852c-b9e04e374146" ], "x-ms-correlation-request-id": [ - "c387802e-57b3-482a-92c7-942e163cb1e1" + "592ff333-bf9b-4820-930e-b55960f0f224" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003210Z:c387802e-57b3-482a-92c7-942e163cb1e1" + "CENTRALINDIA:20210419T065858Z:592ff333-bf9b-4820-930e-b55960f0f224" ], "Date": [ - "Thu, 23 Apr 2020 00:32:10 GMT" + "Mon, 19 Apr 2021 06:58:57 GMT" ], "Content-Length": [ - "1345" + "1325" ], "Content-Type": [ "application/json" @@ -4348,29 +3967,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1f28fbd7-93d3-4003-8bd9-14b4152d2b4b-2020-04-23 00:32:08Z-Ps ActivityId: 1bef7ea2-090e-4fd2-9fda-dc09fd56d373\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-04-23T00:32:10.2735362Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric910\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d84ca1c3-919f-4b12-857e-c63023b9e5ed ActivityId: ec586a08-e6a0-47da-bcb1-c9b2d3325e5d\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-19T06:58:57.8794889Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric9100\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTE1ZjRkOGEtNzI1Mi00NjNjLWFkMTAtMmYzYjEyYWQyYmE5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy84ZDM3ZTZlMy1iZjMyLTRhYmItYTg5Ni04MTA0ZjVlZmMzMTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "811840cf-d67c-49f2-9ddc-ec639e836e90-2020-04-23 00:32:31Z-Ps" + "bfae7d1e-128f-47b4-bbe8-ae9cd6cf2db8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598351123)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203151123)\\/\",\"ClientRequestId\":\"811840cf-d67c-49f2-9ddc-ec639e836e90-2020-04-23 00:32:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cP4P12lMWIQjDEn+/yvPWX7wQO2yh0Ft5q82pBK+hq0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618811958783)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416758783)\\/\",\"ClientRequestId\":\"99113c06-c1b0-4f38-8e43-f216151c7099-2021-04-19 06:59:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Xy/ia9FMSz6X5q4dWLBfRic06FxCIqE1UqCMcBY1384=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4381,38 +4000,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11990" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "811840cf-d67c-49f2-9ddc-ec639e836e90-2020-04-23 00:32:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bfae7d1e-128f-47b4-bbe8-ae9cd6cf2db8" ], "x-ms-correlation-request-id": [ - "edcb0b61-aff6-446d-bd72-1af39eece2d0" + "ef82d29e-2ef5-4c49-9863-3705fd05bf73" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003231Z:edcb0b61-aff6-446d-bd72-1af39eece2d0" + "CENTRALINDIA:20210419T065919Z:ef82d29e-2ef5-4c49-9863-3705fd05bf73" ], "Date": [ - "Thu, 23 Apr 2020 00:32:31 GMT" + "Mon, 19 Apr 2021 06:59:18 GMT" ], "Content-Length": [ - "1345" + "1325" ], "Content-Type": [ "application/json" @@ -4421,29 +4037,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1f28fbd7-93d3-4003-8bd9-14b4152d2b4b-2020-04-23 00:32:08Z-Ps ActivityId: 1bef7ea2-090e-4fd2-9fda-dc09fd56d373\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-04-23T00:32:10.2735362Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric910\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d84ca1c3-919f-4b12-857e-c63023b9e5ed ActivityId: ec586a08-e6a0-47da-bcb1-c9b2d3325e5d\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-19T06:58:57.8794889Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric9100\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTE1ZjRkOGEtNzI1Mi00NjNjLWFkMTAtMmYzYjEyYWQyYmE5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy84ZDM3ZTZlMy1iZjMyLTRhYmItYTg5Ni04MTA0ZjVlZmMzMTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f86a5cb-b893-4822-bb30-e4b3f84743bd-2020-04-23 00:32:51Z-Ps" + "2684d71b-4938-4fc5-bdb4-ac21e48f7856" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598371829)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203171829)\\/\",\"ClientRequestId\":\"3f86a5cb-b893-4822-bb30-e4b3f84743bd-2020-04-23 00:32:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PEZFJG88qIwJhMgcbTdtqzmAtUwFK8WY5BATZFDKw80=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618811979139)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416779139)\\/\",\"ClientRequestId\":\"ac8e26f9-9cbc-4b0c-a4b8-0bdddb40c850-2021-04-19 06:59:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eLUWNXQnaP9kmptLq9TyntXhPEgH0FlN8bYpntDSlI0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4454,38 +4070,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11989" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3f86a5cb-b893-4822-bb30-e4b3f84743bd-2020-04-23 00:32:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2684d71b-4938-4fc5-bdb4-ac21e48f7856" ], "x-ms-correlation-request-id": [ - "a54ac466-ce83-4f15-a9bf-f7307dd7a9a5" + "4938ad1b-e963-4885-b1b5-13dcd7f90f0c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003252Z:a54ac466-ce83-4f15-a9bf-f7307dd7a9a5" + "CENTRALINDIA:20210419T065939Z:4938ad1b-e963-4885-b1b5-13dcd7f90f0c" ], "Date": [ - "Thu, 23 Apr 2020 00:32:51 GMT" + "Mon, 19 Apr 2021 06:59:39 GMT" ], "Content-Length": [ - "1345" + "1325" ], "Content-Type": [ "application/json" @@ -4494,29 +4107,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1f28fbd7-93d3-4003-8bd9-14b4152d2b4b-2020-04-23 00:32:08Z-Ps ActivityId: 1bef7ea2-090e-4fd2-9fda-dc09fd56d373\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-04-23T00:32:10.2735362Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric910\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d84ca1c3-919f-4b12-857e-c63023b9e5ed ActivityId: ec586a08-e6a0-47da-bcb1-c9b2d3325e5d\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-19T06:58:57.8794889Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric9100\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTE1ZjRkOGEtNzI1Mi00NjNjLWFkMTAtMmYzYjEyYWQyYmE5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy84ZDM3ZTZlMy1iZjMyLTRhYmItYTg5Ni04MTA0ZjVlZmMzMTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3dd1d98f-d27e-4e1e-85fd-e04ad1d911ea-2020-04-23 00:33:12Z-Ps" + "ee8321f5-466e-4d77-9f0d-90ef0672d57c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598392371)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203192371)\\/\",\"ClientRequestId\":\"3dd1d98f-d27e-4e1e-85fd-e04ad1d911ea-2020-04-23 00:33:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6xZvg/Y/Jziy5nrjpeW7rKDrF6ndCudcmF3PGpwKx4I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618811999497)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416799497)\\/\",\"ClientRequestId\":\"0393a67c-9061-41be-8402-0db1f71baa92-2021-04-19 06:59:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LQy3H2uvMxwSUpF2EA7ncfVd9biEp+8O2zv46PV87BI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4526,39 +4139,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3dd1d98f-d27e-4e1e-85fd-e04ad1d911ea-2020-04-23 00:33:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "ee8321f5-466e-4d77-9f0d-90ef0672d57c" ], "x-ms-correlation-request-id": [ - "72daf5cf-eb23-460c-9cfe-67089918bb5c" + "563a89fb-228d-47ba-b3be-a9db810de272" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003312Z:72daf5cf-eb23-460c-9cfe-67089918bb5c" + "CENTRALINDIA:20210419T065959Z:563a89fb-228d-47ba-b3be-a9db810de272" ], "Date": [ - "Thu, 23 Apr 2020 00:33:11 GMT" + "Mon, 19 Apr 2021 06:59:59 GMT" ], "Content-Length": [ - "1345" + "1325" ], "Content-Type": [ "application/json" @@ -4567,29 +4177,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1f28fbd7-93d3-4003-8bd9-14b4152d2b4b-2020-04-23 00:32:08Z-Ps ActivityId: 1bef7ea2-090e-4fd2-9fda-dc09fd56d373\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-04-23T00:32:10.2735362Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric910\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d84ca1c3-919f-4b12-857e-c63023b9e5ed ActivityId: ec586a08-e6a0-47da-bcb1-c9b2d3325e5d\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-19T06:58:57.8794889Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric9100\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTE1ZjRkOGEtNzI1Mi00NjNjLWFkMTAtMmYzYjEyYWQyYmE5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy84ZDM3ZTZlMy1iZjMyLTRhYmItYTg5Ni04MTA0ZjVlZmMzMTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2d20b2c-2173-4ce6-93f1-31f9be64fb83-2020-04-23 00:33:33Z-Ps" + "eed555b1-14d7-41d4-898f-d7911bb02c92" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598413050)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203213050)\\/\",\"ClientRequestId\":\"c2d20b2c-2173-4ce6-93f1-31f9be64fb83-2020-04-23 00:33:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"b5BvLCPKjh58hGAv9UH94+ryoj4OhGd6CWDL7g9Esl4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812019856)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416819856)\\/\",\"ClientRequestId\":\"9c470654-d9e5-4074-83bf-642e2a04c459-2021-04-19 07:00:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XUOmP2hpACwywWkksSl40J8OZpC3dMs32O8s5gfabFY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4600,38 +4210,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11987" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c2d20b2c-2173-4ce6-93f1-31f9be64fb83-2020-04-23 00:33:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "eed555b1-14d7-41d4-898f-d7911bb02c92" ], "x-ms-correlation-request-id": [ - "88dbe085-c468-4839-93ff-4dd66660c29b" + "1c945884-8cf9-4733-9945-060ef7b88dea" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003334Z:88dbe085-c468-4839-93ff-4dd66660c29b" + "CENTRALINDIA:20210419T070020Z:1c945884-8cf9-4733-9945-060ef7b88dea" ], "Date": [ - "Thu, 23 Apr 2020 00:33:33 GMT" + "Mon, 19 Apr 2021 07:00:19 GMT" ], "Content-Length": [ - "1383" + "1363" ], "Content-Type": [ "application/json" @@ -4640,29 +4247,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1f28fbd7-93d3-4003-8bd9-14b4152d2b4b-2020-04-23 00:32:08Z-Ps ActivityId: 1bef7ea2-090e-4fd2-9fda-dc09fd56d373\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-04-23T00:33:15.3864884Z\",\r\n \"endTime\": \"2020-04-23T00:33:15.6208626Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric910\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d84ca1c3-919f-4b12-857e-c63023b9e5ed ActivityId: ec586a08-e6a0-47da-bcb1-c9b2d3325e5d\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-19T07:00:03.3300647Z\",\r\n \"endTime\": \"2021-04-19T07:00:03.4800674Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric9100\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTA/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzkxMDA/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c02f04e5-e7f3-44b7-8e23-f04bb2d03457-2020-04-23 00:33:34Z-Ps" + "ab8ba3fd-04d7-496a-a962-5001bb1b1349" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598414641)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203214641)\\/\",\"ClientRequestId\":\"c02f04e5-e7f3-44b7-8e23-f04bb2d03457-2020-04-23 00:33:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nvHMFN+xAHY7YeMd2gjaNLGAQxc3ZpjHNobbSqA6W+I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812020213)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416820213)\\/\",\"ClientRequestId\":\"c3192164-5efa-4359-bc11-9949d0d8ae3a-2021-04-19 07:00:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zQ7q/rCBXmGMQxswaUOgbpdWLpAyxue8/zL6aEZ69zQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4673,38 +4280,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11986" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "c02f04e5-e7f3-44b7-8e23-f04bb2d03457-2020-04-23 00:33:34Z-Ps 4/23/2020 12:33:35 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "ab8ba3fd-04d7-496a-a962-5001bb1b1349 4/19/2021 7:00:20 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c02f04e5-e7f3-44b7-8e23-f04bb2d03457-2020-04-23 00:33:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ab8ba3fd-04d7-496a-a962-5001bb1b1349" ], "x-ms-correlation-request-id": [ - "425498d9-5fa2-4f0c-9f4b-c890f47b43e9" + "0ea43516-51e0-4bc1-91d6-a73f5c9e06b6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003335Z:425498d9-5fa2-4f0c-9f4b-c890f47b43e9" + "CENTRALINDIA:20210419T070020Z:0ea43516-51e0-4bc1-91d6-a73f5c9e06b6" ], "Date": [ - "Thu, 23 Apr 2020 00:33:34 GMT" + "Mon, 19 Apr 2021 07:00:19 GMT" ], "Content-Length": [ - "685" + "704" ], "Content-Type": [ "application/json" @@ -4713,29 +4317,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric910\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric9100\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100\",\r\n \"properties\": {\r\n \"friendlyName\": \"West Central US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westcentralus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTA/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzkxMDA/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8540d42-1a7a-4cd7-8ea8-59224874095b-2020-04-23 00:33:35Z-Ps" + "d649b641-c64b-4ce3-a3ce-46c636ee4b81" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598415967)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203215967)\\/\",\"ClientRequestId\":\"c8540d42-1a7a-4cd7-8ea8-59224874095b-2020-04-23 00:33:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"d6DGHn8F+xUeqxPZ9DvwjV3It0cPQGl0h4n4xeqoaEM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812020992)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416820992)\\/\",\"ClientRequestId\":\"6f65a14f-8e02-4b42-8d5b-d7e6eac1b3cd-2021-04-19 07:00:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dcJzXCHs1cyg7N63OzIXQNnSXPUQd9xTqfDY/F8dUkA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4746,38 +4350,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11984" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "c8540d42-1a7a-4cd7-8ea8-59224874095b-2020-04-23 00:33:35Z-Ps 4/23/2020 12:33:36 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "d649b641-c64b-4ce3-a3ce-46c636ee4b81 4/19/2021 7:00:21 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c8540d42-1a7a-4cd7-8ea8-59224874095b-2020-04-23 00:33:35Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d649b641-c64b-4ce3-a3ce-46c636ee4b81" ], "x-ms-correlation-request-id": [ - "fc1a9260-69e6-4115-8c59-8b769d278680" + "73e29147-5b01-43c6-b2f9-9101196caa72" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003336Z:fc1a9260-69e6-4115-8c59-8b769d278680" + "CENTRALINDIA:20210419T070021Z:73e29147-5b01-43c6-b2f9-9101196caa72" ], "Date": [ - "Thu, 23 Apr 2020 00:33:35 GMT" + "Mon, 19 Apr 2021 07:00:20 GMT" ], "Content-Length": [ - "685" + "704" ], "Content-Type": [ "application/json" @@ -4786,29 +4387,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric910\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric9100\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100\",\r\n \"properties\": {\r\n \"friendlyName\": \"West Central US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westcentralus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTA/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljOTEwMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7dc27569-e0a1-4d38-ad4a-b512c49650d9-2020-04-23 00:33:36Z-Ps" + "44f08f1d-5897-4fc1-8d08-1a926e052165" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598416625)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203216625)\\/\",\"ClientRequestId\":\"7dc27569-e0a1-4d38-ad4a-b512c49650d9-2020-04-23 00:33:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hG4zZ/ZF5jnVFIWzD0R/RFus2JKQRZp92oWEpNCZJ0g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812021375)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416821375)\\/\",\"ClientRequestId\":\"380299aa-3037-4657-a8f5-bf69a4b96535-2021-04-19 07:00:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"au/ZYHNFJiOf0d58r0yBleyoNNXt1JTN512NVw/2p8c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4825,41 +4426,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/operationresults/7e82151f-18a5-40a6-8bd5-96cd5896f57d?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/operationresults/996ec1f7-9504-4fdb-a871-16bc1df5a0b9?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationOperationStatus/7e82151f-18a5-40a6-8bd5-96cd5896f57d?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationOperationStatus/996ec1f7-9504-4fdb-a871-16bc1df5a0b9?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7dc27569-e0a1-4d38-ad4a-b512c49650d9-2020-04-23 00:33:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "44f08f1d-5897-4fc1-8d08-1a926e052165" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "6a18509a-9537-4e5e-9475-59e32acf65ea" + "9a766a20-1dd5-4f6a-8dc4-92cce400ac2a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003337Z:6a18509a-9537-4e5e-9475-59e32acf65ea" + "CENTRALINDIA:20210419T070021Z:9a766a20-1dd5-4f6a-8dc4-92cce400ac2a" ], "Date": [ - "Thu, 23 Apr 2020 00:33:37 GMT" + "Mon, 19 Apr 2021 07:00:21 GMT" ], "Expires": [ "-1" @@ -4872,25 +4470,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvN2U4MjE1MWYtMThhNS00MGE2LThiZDUtOTZjZDU4OTZmNTdkP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTZlYzFmNy05NTA0LTRmZGItYTg3MS0xNmJjMWRmNWEwYjk/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "175e21bd-93ce-4ad6-ad59-cd18cb12b7c5-2020-04-23 00:33:37Z-Ps" + "44f08f1d-5897-4fc1-8d08-1a926e052165" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598417718)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203217718)\\/\",\"ClientRequestId\":\"175e21bd-93ce-4ad6-ad59-cd18cb12b7c5-2020-04-23 00:33:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3sE8WJc6WJY3/6r1Ysx3Dte/1x7Wkd9M4/X9TjwRhU4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812021994)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416821994)\\/\",\"ClientRequestId\":\"6aacf194-d218-4f6f-94f8-83c2b243744d-2021-04-19 07:00:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KBstlT4xZgSWYI3Rcus+1AwXimGCHjctVU0UCHdfvfw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4901,111 +4499,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11983" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-client-request-id": [ - "175e21bd-93ce-4ad6-ad59-cd18cb12b7c5-2020-04-23 00:33:37Z-Ps" - ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-correlation-request-id": [ - "5c11a8ea-adb6-43eb-845e-11c21d2caaec" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003338Z:5c11a8ea-adb6-43eb-845e-11c21d2caaec" - ], - "Date": [ - "Thu, 23 Apr 2020 00:33:37 GMT" - ], - "Content-Length": [ - "1769" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7dc27569-e0a1-4d38-ad4a-b512c49650d9-2020-04-23 00:33:36Z-Ps ActivityId: 6a18509a-9537-4e5e-9475-59e32acf65ea\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"1601-01-01T00:00:00Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvN2U4MjE1MWYtMThhNS00MGE2LThiZDUtOTZjZDU4OTZmNTdkP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5478e00c-9cd5-490a-827c-f33cb83594d7-2020-04-23 00:33:38Z-Ps" - ], - "Accept-Language": [ - "en-US" - ], - "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598418162)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203218162)\\/\",\"ClientRequestId\":\"5478e00c-9cd5-490a-827c-f33cb83594d7-2020-04-23 00:33:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7sNfVml0emvnd2qCr7i3QBJQBIBeBTbU63KBAm20n+E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "Server": [ - "Microsoft-IIS/10.0", - "Kestrel" - ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d" - ], - "X-Powered-By": [ - "ASP.NET" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "5478e00c-9cd5-490a-827c-f33cb83594d7-2020-04-23 00:33:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "44f08f1d-5897-4fc1-8d08-1a926e052165" ], "x-ms-correlation-request-id": [ - "095b4197-81a8-4914-83e4-91b6209158b8" + "6202eb4f-60f4-45c9-9407-930b60e80b8c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003338Z:095b4197-81a8-4914-83e4-91b6209158b8" + "CENTRALINDIA:20210419T070022Z:6202eb4f-60f4-45c9-9407-930b60e80b8c" ], "Date": [ - "Thu, 23 Apr 2020 00:33:37 GMT" + "Mon, 19 Apr 2021 07:00:21 GMT" ], "Content-Length": [ - "1769" + "1810" ], "Content-Type": [ "application/json" @@ -5014,29 +4536,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7dc27569-e0a1-4d38-ad4a-b512c49650d9-2020-04-23 00:33:36Z-Ps ActivityId: 6a18509a-9537-4e5e-9475-59e32acf65ea\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"1601-01-01T00:00:00Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"44f08f1d-5897-4fc1-8d08-1a926e052165 ActivityId: 9a766a20-1dd5-4f6a-8dc4-92cce400ac2a\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-19T07:00:21.8298916Z\",\r\n \"endTime\": \"2021-04-19T07:00:21.8899633Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-19T07:00:21.8899633Z\",\r\n \"endTime\": \"2021-04-19T07:00:21.8899633Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvN2U4MjE1MWYtMThhNS00MGE2LThiZDUtOTZjZDU4OTZmNTdkP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTZlYzFmNy05NTA0LTRmZGItYTg3MS0xNmJjMWRmNWEwYjk/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f5e5ec1-7246-41e6-8f0a-04d661641cd2-2020-04-23 00:33:58Z-Ps" + "7ebdd93b-0312-49f4-91b4-e67380d7d2f2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598438711)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203238711)\\/\",\"ClientRequestId\":\"3f5e5ec1-7246-41e6-8f0a-04d661641cd2-2020-04-23 00:33:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QIxuCbpYluRZ4jBEzBHbuxjd0jipV6dAtFANelwELXk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812022398)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416822398)\\/\",\"ClientRequestId\":\"fbe596db-5f40-4989-b0e1-43fb4657bf1e-2021-04-19 07:00:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Bdwvo0X8TNwESr7F/M/LxFHjFCBI9Ojqvy4nam6aEqc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5047,38 +4569,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11982" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3f5e5ec1-7246-41e6-8f0a-04d661641cd2-2020-04-23 00:33:58Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7ebdd93b-0312-49f4-91b4-e67380d7d2f2" ], "x-ms-correlation-request-id": [ - "4aac5b5e-9739-45b3-87ce-93ce162aff04" + "68d91467-4695-4e5c-9ffd-d3672d727aa4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003359Z:4aac5b5e-9739-45b3-87ce-93ce162aff04" + "CENTRALINDIA:20210419T070022Z:68d91467-4695-4e5c-9ffd-d3672d727aa4" ], "Date": [ - "Thu, 23 Apr 2020 00:33:59 GMT" + "Mon, 19 Apr 2021 07:00:22 GMT" ], "Content-Length": [ - "1831" + "1810" ], "Content-Type": [ "application/json" @@ -5087,29 +4606,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"7dc27569-e0a1-4d38-ad4a-b512c49650d9-2020-04-23 00:33:36Z-Ps ActivityId: 6a18509a-9537-4e5e-9475-59e32acf65ea\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-04-23T00:33:47.7201193Z\",\r\n \"endTime\": \"2020-04-23T00:33:47.8763745Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-04-23T00:33:47.8763745Z\",\r\n \"endTime\": \"2020-04-23T00:33:47.8763745Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"44f08f1d-5897-4fc1-8d08-1a926e052165 ActivityId: 9a766a20-1dd5-4f6a-8dc4-92cce400ac2a\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-19T07:00:21.8298916Z\",\r\n \"endTime\": \"2021-04-19T07:00:21.8899633Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-19T07:00:21.8899633Z\",\r\n \"endTime\": \"2021-04-19T07:00:21.8899633Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTA/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljOTEwMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88b5a022-5ca6-44ad-a33a-cfff86344791-2020-04-23 00:33:59Z-Ps" + "e656ee5c-3de7-4827-9915-7f0a00ebbdae" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598439263)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203239263)\\/\",\"ClientRequestId\":\"88b5a022-5ca6-44ad-a33a-cfff86344791-2020-04-23 00:33:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Hjrfb9FfyA8Yno4wXHn42VHWBj9UzmU0mYvoeZJiX5I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812022751)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416822751)\\/\",\"ClientRequestId\":\"dcf0ddf6-443f-4de6-8192-d9ff80351279-2021-04-19 07:00:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IAHEKMEWwLuR/GXWP9tohgwRpRR2Kv6bJQJPQn4hFRI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5120,38 +4639,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11981" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "88b5a022-5ca6-44ad-a33a-cfff86344791-2020-04-23 00:33:59Z-Ps 4/23/2020 12:33:59 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "e656ee5c-3de7-4827-9915-7f0a00ebbdae 4/19/2021 7:00:22 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "88b5a022-5ca6-44ad-a33a-cfff86344791-2020-04-23 00:33:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e656ee5c-3de7-4827-9915-7f0a00ebbdae" ], "x-ms-correlation-request-id": [ - "4d19cffa-853e-44aa-8f11-0248dedc36dc" + "3b91e917-546d-4979-97af-97911866c1f5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003359Z:4d19cffa-853e-44aa-8f11-0248dedc36dc" + "CENTRALINDIA:20210419T070023Z:3b91e917-546d-4979-97af-97911866c1f5" ], "Date": [ - "Thu, 23 Apr 2020 00:33:59 GMT" + "Mon, 19 Apr 2021 07:00:22 GMT" ], "Content-Length": [ - "580" + "586" ], "Content-Type": [ "application/json" @@ -5160,29 +4676,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910\",\r\n \"name\": \"A2APrimaryContainer910\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"West US\",\r\n \"friendlyName\": \"A2APrimaryContainer910\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100\",\r\n \"name\": \"A2APrimaryContainer9100\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"East US\",\r\n \"friendlyName\": \"A2APrimaryContainer9100\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectionContainerMappings?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectionContainerMappings?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljOTEwMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAwL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09bf593c-ee43-49fc-bb11-dcc338939690-2020-04-23 00:33:59Z-Ps" + "e656ee5c-3de7-4827-9915-7f0a00ebbdae" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598439820)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203239820)\\/\",\"ClientRequestId\":\"09bf593c-ee43-49fc-bb11-dcc338939690-2020-04-23 00:33:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VC/8ztBck4FIAf+yC8Yq6BTlKK2neGi+PJc8ml1epMI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812023162)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416823162)\\/\",\"ClientRequestId\":\"3c3dcc8b-51b7-473d-a114-a24a421d4f70-2021-04-19 07:00:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3TbJ1EQ0kplX6TDmi1rvKaWFbco8K1LRg2YZtdSwXNY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5193,35 +4709,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11980" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "09bf593c-ee43-49fc-bb11-dcc338939690-2020-04-23 00:33:59Z-Ps 4/23/2020 12:34:00 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "e656ee5c-3de7-4827-9915-7f0a00ebbdae 4/19/2021 7:00:23 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "09bf593c-ee43-49fc-bb11-dcc338939690-2020-04-23 00:33:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e656ee5c-3de7-4827-9915-7f0a00ebbdae" ], "x-ms-correlation-request-id": [ - "9e4fd1a2-2d40-42fa-a157-f82a64a22509" + "e90d933e-9314-442a-8d83-57479148fd72" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003400Z:9e4fd1a2-2d40-42fa-a157-f82a64a22509" + "CENTRALINDIA:20210419T070023Z:e90d933e-9314-442a-8d83-57479148fd72" ], "Date": [ - "Thu, 23 Apr 2020 00:34:00 GMT" + "Mon, 19 Apr 2021 07:00:22 GMT" ], "Content-Length": [ "28" @@ -5237,25 +4750,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTAvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjkxMD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzkxMDAvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjkxMDA/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1fe686a3-0049-4ac5-8674-b637cb018410-2020-04-23 00:34:00Z-Ps" + "5b1f198e-5c80-4346-a457-c4d547a843b8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598440338)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203240338)\\/\",\"ClientRequestId\":\"1fe686a3-0049-4ac5-8674-b637cb018410-2020-04-23 00:34:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2WoWFPRVudl3hnwAYdIsbJ68pbE4TJCxJ62yoC/M09M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812023588)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416823588)\\/\",\"ClientRequestId\":\"e199c2bb-337e-4323-be2a-6a1c2e29e665-2021-04-19 07:00:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"W99idq1/qR7gOJRGbyBt7b1yC/BstKlC7FUmesM7fpE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5272,41 +4785,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/operationresults/df99828c-85dd-4d40-a9c5-fcaac079ce0f?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/operationresults/9c3c496a-aa00-45f2-86e6-ab2d82225340?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationOperationStatus/df99828c-85dd-4d40-a9c5-fcaac079ce0f?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationOperationStatus/9c3c496a-aa00-45f2-86e6-ab2d82225340?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1fe686a3-0049-4ac5-8674-b637cb018410-2020-04-23 00:34:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "5b1f198e-5c80-4346-a457-c4d547a843b8" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "cc19f635-45eb-4213-9c05-a7b3906b091e" + "432bd54d-46b3-453f-a865-e6da17cfbf7f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003401Z:cc19f635-45eb-4213-9c05-a7b3906b091e" + "CENTRALINDIA:20210419T070024Z:432bd54d-46b3-453f-a865-e6da17cfbf7f" ], "Date": [ - "Thu, 23 Apr 2020 00:34:00 GMT" + "Mon, 19 Apr 2021 07:00:23 GMT" ], "Expires": [ "-1" @@ -5319,25 +4829,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvZGY5OTgyOGMtODVkZC00ZDQwLWE5YzUtZmNhYWMwNzljZTBmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85YzNjNDk2YS1hYTAwLTQ1ZjItODZlNi1hYjJkODIyMjUzNDA/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4eb64cc-8cbb-4448-9ee4-4d3372c217d7-2020-04-23 00:34:01Z-Ps" + "5b1f198e-5c80-4346-a457-c4d547a843b8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598441074)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203241074)\\/\",\"ClientRequestId\":\"a4eb64cc-8cbb-4448-9ee4-4d3372c217d7-2020-04-23 00:34:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Z0hNEiZ5pWuERIoy4SubD9fvAc+TNWEwBBNZnW+HxNM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812024127)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416824127)\\/\",\"ClientRequestId\":\"b75aa8e8-74cf-46e9-8220-e3edea220c11-2021-04-19 07:00:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cSMA+mDuTE3e0YB2h2YA0y4kcxdmnJYh4BmBd6X/YQg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5348,38 +4858,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11979" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a4eb64cc-8cbb-4448-9ee4-4d3372c217d7-2020-04-23 00:34:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5b1f198e-5c80-4346-a457-c4d547a843b8" ], "x-ms-correlation-request-id": [ - "b6b0bee2-d2aa-48b7-96f2-3a77944fe368" + "4786243f-7a25-4298-bdc9-95a8f912755f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003401Z:b6b0bee2-d2aa-48b7-96f2-3a77944fe368" + "CENTRALINDIA:20210419T070024Z:4786243f-7a25-4298-bdc9-95a8f912755f" ], "Date": [ - "Thu, 23 Apr 2020 00:34:01 GMT" + "Mon, 19 Apr 2021 07:00:23 GMT" ], "Content-Length": [ - "1832" + "1819" ], "Content-Type": [ "application/json" @@ -5388,29 +4895,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1fe686a3-0049-4ac5-8674-b637cb018410-2020-04-23 00:34:00Z-Ps ActivityId: cc19f635-45eb-4213-9c05-a7b3906b091e\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-04-23T00:34:00.9616748Z\",\r\n \"endTime\": \"2020-04-23T00:34:01.0397922Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-04-23T00:34:01.0397922Z\",\r\n \"endTime\": \"2020-04-23T00:34:01.0397922Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"5b1f198e-5c80-4346-a457-c4d547a843b8 ActivityId: 432bd54d-46b3-453f-a865-e6da17cfbf7f\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-19T07:00:24.0437819Z\",\r\n \"endTime\": \"2021-04-19T07:00:24.1537868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-19T07:00:24.1537868Z\",\r\n \"endTime\": \"2021-04-19T07:00:24.1537868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvZGY5OTgyOGMtODVkZC00ZDQwLWE5YzUtZmNhYWMwNzljZTBmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85YzNjNDk2YS1hYTAwLTQ1ZjItODZlNi1hYjJkODIyMjUzNDA/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1553cd51-24e1-4793-a652-56999fd6855f-2020-04-23 00:34:01Z-Ps" + "48d97e63-5dbe-41c4-85c3-b3a1a410aac1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598441525)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203241525)\\/\",\"ClientRequestId\":\"1553cd51-24e1-4793-a652-56999fd6855f-2020-04-23 00:34:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Dg5ZLTRRe6bp0ilw3txW4BRmjucunhHQq8rziXCONxo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812024507)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416824507)\\/\",\"ClientRequestId\":\"5b41a3f1-b474-41fe-abc5-ff4cd652c3d3-2021-04-19 07:00:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/BQ4aImOnG0dxLlzhzjFjKEi5IDistzCE7nH3zmRIGA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5421,38 +4928,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11978" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1553cd51-24e1-4793-a652-56999fd6855f-2020-04-23 00:34:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "48d97e63-5dbe-41c4-85c3-b3a1a410aac1" ], "x-ms-correlation-request-id": [ - "8c6eeaaf-a8a6-4cea-a98a-87956880aa9f" + "fdeb08dc-9f82-465b-a7f5-d893df82731c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003401Z:8c6eeaaf-a8a6-4cea-a98a-87956880aa9f" + "CENTRALINDIA:20210419T070024Z:fdeb08dc-9f82-465b-a7f5-d893df82731c" ], "Date": [ - "Thu, 23 Apr 2020 00:34:01 GMT" + "Mon, 19 Apr 2021 07:00:24 GMT" ], "Content-Length": [ - "1832" + "1819" ], "Content-Type": [ "application/json" @@ -5461,29 +4965,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"1fe686a3-0049-4ac5-8674-b637cb018410-2020-04-23 00:34:00Z-Ps ActivityId: cc19f635-45eb-4213-9c05-a7b3906b091e\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-04-23T00:34:00.9616748Z\",\r\n \"endTime\": \"2020-04-23T00:34:01.0397922Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-04-23T00:34:01.0397922Z\",\r\n \"endTime\": \"2020-04-23T00:34:01.0397922Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"5b1f198e-5c80-4346-a457-c4d547a843b8 ActivityId: 432bd54d-46b3-453f-a865-e6da17cfbf7f\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-19T07:00:24.0437819Z\",\r\n \"endTime\": \"2021-04-19T07:00:24.1537868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-19T07:00:24.1537868Z\",\r\n \"endTime\": \"2021-04-19T07:00:24.1537868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTAvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjkxMD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzkxMDAvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjkxMDA/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebd4f4f5-947d-4e2a-b3de-cd06ba82d2d0-2020-04-23 00:34:02Z-Ps" + "e560df54-ead9-4d3e-8e5b-92b61640763a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598442029)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203242029)\\/\",\"ClientRequestId\":\"ebd4f4f5-947d-4e2a-b3de-cd06ba82d2d0-2020-04-23 00:34:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7j4oUCOIH+FsAGBqLaG+hNr3jd3vHvR+SxBbs/oJOkU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812024863)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416824863)\\/\",\"ClientRequestId\":\"0a90f585-9d12-46df-9530-8d932540b51c-2021-04-19 07:00:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/bDvFVx2eLyX9w8wfRCkhAJboiuJz0Mt7HgaR9Se/vI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5494,38 +4998,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11977" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "ebd4f4f5-947d-4e2a-b3de-cd06ba82d2d0-2020-04-23 00:34:02Z-Ps 4/23/2020 12:34:02 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "e560df54-ead9-4d3e-8e5b-92b61640763a 4/19/2021 7:00:25 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ebd4f4f5-947d-4e2a-b3de-cd06ba82d2d0-2020-04-23 00:34:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e560df54-ead9-4d3e-8e5b-92b61640763a" ], "x-ms-correlation-request-id": [ - "d9d89dca-afac-4c98-93f9-bd0794cf431f" + "03a8964c-4162-44c9-83ee-d86d75efc6c1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003402Z:d9d89dca-afac-4c98-93f9-bd0794cf431f" + "CENTRALINDIA:20210419T070025Z:03a8964c-4162-44c9-83ee-d86d75efc6c1" ], "Date": [ - "Thu, 23 Apr 2020 00:34:02 GMT" + "Mon, 19 Apr 2021 07:00:24 GMT" ], "Content-Length": [ - "584" + "598" ], "Content-Type": [ "application/json" @@ -5534,29 +5035,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910\",\r\n \"name\": \"A2ARecoveryContainer910\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"East US\",\r\n \"friendlyName\": \"A2ARecoveryContainer910\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100\",\r\n \"name\": \"A2ARecoveryContainer9100\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"West Central US\",\r\n \"friendlyName\": \"A2ARecoveryContainer9100\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectionContainerMappings?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTAvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjkxMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectionContainerMappings?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzkxMDAvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjkxMDAvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dba84e2e-fdc8-4f63-b483-4bb27ff0879a-2020-04-23 00:34:02Z-Ps" + "e560df54-ead9-4d3e-8e5b-92b61640763a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598442409)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203242409)\\/\",\"ClientRequestId\":\"dba84e2e-fdc8-4f63-b483-4bb27ff0879a-2020-04-23 00:34:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4/qMT7oA3PCz8vkPA5JdMvWjKDDxGGWjJtnU8Z5FBDo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812025224)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416825224)\\/\",\"ClientRequestId\":\"1cf10b0e-f1f5-4baa-8280-d39a7eaf9ce2-2021-04-19 07:00:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"h0zxecBx3JcizyO9rSGupAnnUHJHSBakORYsOhckaFg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5567,35 +5068,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11976" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "dba84e2e-fdc8-4f63-b483-4bb27ff0879a-2020-04-23 00:34:02Z-Ps 4/23/2020 12:34:02 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "e560df54-ead9-4d3e-8e5b-92b61640763a 4/19/2021 7:00:25 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "dba84e2e-fdc8-4f63-b483-4bb27ff0879a-2020-04-23 00:34:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e560df54-ead9-4d3e-8e5b-92b61640763a" ], "x-ms-correlation-request-id": [ - "c5b85867-9d8d-4111-889a-b5911d9baaaa" + "b7340d6a-9622-4b9e-8059-45d7084323c0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003402Z:c5b85867-9d8d-4111-889a-b5911d9baaaa" + "CENTRALINDIA:20210419T070025Z:b7340d6a-9622-4b9e-8059-45d7084323c0" ], "Date": [ - "Thu, 23 Apr 2020 00:34:02 GMT" + "Mon, 19 Apr 2021 07:00:24 GMT" ], "Content-Length": [ "28" @@ -5611,25 +5109,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationPolicies/TestA2APolicy1910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxOTEwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationPolicies/TestA2APolicy19100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uUG9saWNpZXMvVGVzdEEyQVBvbGljeTE5MTAwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointHistory\": 720,\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enable\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "71f786e8-0e7c-4b47-bc16-495bca2c766d-2020-04-23 00:34:03Z-Ps" + "433c5131-6a18-4e2d-bc2c-dffd4f7df361" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598443077)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203243077)\\/\",\"ClientRequestId\":\"71f786e8-0e7c-4b47-bc16-495bca2c766d-2020-04-23 00:34:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bUxMWeOHX0JNq9cNd2Tve6MxMF8v8XKPfVzbwToPwSg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812025601)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416825601)\\/\",\"ClientRequestId\":\"bbcd09e4-4a88-4766-9418-2337501b73a8-2021-04-19 07:00:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZrZXBKr+goww8eoLDTp7TPYdfz8bcQN8YrfszfZ6VEs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5646,40 +5144,37 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationPolicies/TestA2APolicy1910/operationresults/784b77ce-04ba-42a5-83d2-335bfe4d4943?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationPolicies/TestA2APolicy19100/operationresults/2c142b96-02ad-4e70-8a68-8964f46dd904?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "71f786e8-0e7c-4b47-bc16-495bca2c766d-2020-04-23 00:34:03Z-Ps 4/23/2020 12:34:03 AM" + "433c5131-6a18-4e2d-bc2c-dffd4f7df361 4/19/2021 7:00:26 AM" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationOperationStatus/784b77ce-04ba-42a5-83d2-335bfe4d4943?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationOperationStatus/2c142b96-02ad-4e70-8a68-8964f46dd904?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "71f786e8-0e7c-4b47-bc16-495bca2c766d-2020-04-23 00:34:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "433c5131-6a18-4e2d-bc2c-dffd4f7df361" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1195" ], "x-ms-correlation-request-id": [ - "4729cc11-dc5e-4b41-940f-5af159cf54c2" + "749bd417-8585-4f49-a958-715dfab2f9a3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003403Z:4729cc11-dc5e-4b41-940f-5af159cf54c2" + "CENTRALINDIA:20210419T070026Z:749bd417-8585-4f49-a958-715dfab2f9a3" ], "Date": [ - "Thu, 23 Apr 2020 00:34:03 GMT" + "Mon, 19 Apr 2021 07:00:25 GMT" ], "Expires": [ "-1" @@ -5692,25 +5187,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvNzg0Yjc3Y2UtMDRiYS00MmE1LTgzZDItMzM1YmZlNGQ0OTQzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy8yYzE0MmI5Ni0wMmFkLTRlNzAtOGE2OC04OTY0ZjQ2ZGQ5MDQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba016e62-824f-49eb-89c5-1c1d44228b3c-2020-04-23 00:34:04Z-Ps" + "433c5131-6a18-4e2d-bc2c-dffd4f7df361" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598444194)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203244194)\\/\",\"ClientRequestId\":\"ba016e62-824f-49eb-89c5-1c1d44228b3c-2020-04-23 00:34:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4iRvnDO30fZ7X83ca5dUIb24Ynrj6aKb1aLSRllqEmc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812026599)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416826599)\\/\",\"ClientRequestId\":\"4e628bc6-4c58-4288-a6da-46d2612dd874-2021-04-19 07:00:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RHuf9okbxKMQ/JfTlzVvoZjMAo1cYrZPmRsNPOo9k2E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5721,38 +5216,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11975" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ba016e62-824f-49eb-89c5-1c1d44228b3c-2020-04-23 00:34:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "433c5131-6a18-4e2d-bc2c-dffd4f7df361" ], "x-ms-correlation-request-id": [ - "6214d364-dfb1-42be-9fa6-c746577cd0a5" + "d61feedd-31f2-477c-b96c-08498d9f23e1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003404Z:6214d364-dfb1-42be-9fa6-c746577cd0a5" + "CENTRALINDIA:20210419T070026Z:d61feedd-31f2-477c-b96c-08498d9f23e1" ], "Date": [ - "Thu, 23 Apr 2020 00:34:04 GMT" + "Mon, 19 Apr 2021 07:00:26 GMT" ], "Content-Length": [ - "1757" + "1733" ], "Content-Type": [ "application/json" @@ -5761,29 +5253,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"71f786e8-0e7c-4b47-bc16-495bca2c766d-2020-04-23 00:34:03Z-Ps ActivityId: 4729cc11-dc5e-4b41-940f-5af159cf54c2\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2020-04-23T00:34:03.7909886Z\",\r\n \"endTime\": \"2020-04-23T00:34:03.9159843Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2020-04-23T00:34:03.9159843Z\",\r\n \"endTime\": \"2020-04-23T00:34:03.9159843Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"433c5131-6a18-4e2d-bc2c-dffd4f7df361 ActivityId: 749bd417-8585-4f49-a958-715dfab2f9a3\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2021-04-19T07:00:26.5452733Z\",\r\n \"endTime\": \"2021-04-19T07:00:26.620273Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2021-04-19T07:00:26.620273Z\",\r\n \"endTime\": \"2021-04-19T07:00:26.620273Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvNzg0Yjc3Y2UtMDRiYS00MmE1LTgzZDItMzM1YmZlNGQ0OTQzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy8yYzE0MmI5Ni0wMmFkLTRlNzAtOGE2OC04OTY0ZjQ2ZGQ5MDQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7dfaa7fe-bd0a-45ea-9512-c1b6eb7d9c33-2020-04-23 00:34:04Z-Ps" + "d6694d42-692e-44e3-9fc0-49f9c1f957e3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598444787)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203244787)\\/\",\"ClientRequestId\":\"7dfaa7fe-bd0a-45ea-9512-c1b6eb7d9c33-2020-04-23 00:34:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xpT+P2RO9NfSmn2WFz6QUc1StXIg7/j9lvemzn6qDz0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812026957)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416826957)\\/\",\"ClientRequestId\":\"badfbd65-c001-4c10-80ae-dd10ddbf7394-2021-04-19 07:00:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ChOmqrW5/dC+XiW017aBPRs+/0s73Anta3Jf5PGtk4M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5794,38 +5286,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11974" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7dfaa7fe-bd0a-45ea-9512-c1b6eb7d9c33-2020-04-23 00:34:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d6694d42-692e-44e3-9fc0-49f9c1f957e3" ], "x-ms-correlation-request-id": [ - "4cd7d793-fa81-43b1-b452-ee694c99cebc" + "83ec11fc-b20f-4e0b-aee0-d325dac9f17f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003405Z:4cd7d793-fa81-43b1-b452-ee694c99cebc" + "CENTRALINDIA:20210419T070027Z:83ec11fc-b20f-4e0b-aee0-d325dac9f17f" ], "Date": [ - "Thu, 23 Apr 2020 00:34:04 GMT" + "Mon, 19 Apr 2021 07:00:26 GMT" ], "Content-Length": [ - "1757" + "1733" ], "Content-Type": [ "application/json" @@ -5834,29 +5323,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"71f786e8-0e7c-4b47-bc16-495bca2c766d-2020-04-23 00:34:03Z-Ps ActivityId: 4729cc11-dc5e-4b41-940f-5af159cf54c2\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2020-04-23T00:34:03.7909886Z\",\r\n \"endTime\": \"2020-04-23T00:34:03.9159843Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2020-04-23T00:34:03.9159843Z\",\r\n \"endTime\": \"2020-04-23T00:34:03.9159843Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"433c5131-6a18-4e2d-bc2c-dffd4f7df361 ActivityId: 749bd417-8585-4f49-a958-715dfab2f9a3\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2021-04-19T07:00:26.5452733Z\",\r\n \"endTime\": \"2021-04-19T07:00:26.620273Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2021-04-19T07:00:26.620273Z\",\r\n \"endTime\": \"2021-04-19T07:00:26.620273Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationPolicies/TestA2APolicy1910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxOTEwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationPolicies/TestA2APolicy19100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uUG9saWNpZXMvVGVzdEEyQVBvbGljeTE5MTAwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10b2cb09-2a5b-4f80-9718-1530a81818dc-2020-04-23 00:34:05Z-Ps" + "43d4d9bf-42cc-4dde-89f7-1bcc14d8ce8f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598445581)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203245581)\\/\",\"ClientRequestId\":\"10b2cb09-2a5b-4f80-9718-1530a81818dc-2020-04-23 00:34:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cmyfMiwPwIvX89NhjCYpIS146/wTDsIbIQb+vYxPHZ8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812027304)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416827304)\\/\",\"ClientRequestId\":\"700cb8ae-fcb1-4a85-b502-1bfefa6b8e04-2021-04-19 07:00:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UuIlc9Bybx2NxqqBYLOP0LDEVC+3Cz3MGIJeadEhH00=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5867,38 +5356,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11973" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "10b2cb09-2a5b-4f80-9718-1530a81818dc-2020-04-23 00:34:05Z-Ps 4/23/2020 12:34:05 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "43d4d9bf-42cc-4dde-89f7-1bcc14d8ce8f 4/19/2021 7:00:27 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "10b2cb09-2a5b-4f80-9718-1530a81818dc-2020-04-23 00:34:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "43d4d9bf-42cc-4dde-89f7-1bcc14d8ce8f" ], "x-ms-correlation-request-id": [ - "ded73834-6670-4b40-aa52-2688045f70ce" + "c4c4eb5b-7548-4541-973d-69665f27357f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003405Z:ded73834-6670-4b40-aa52-2688045f70ce" + "CENTRALINDIA:20210419T070027Z:c4c4eb5b-7548-4541-973d-69665f27357f" ], "Date": [ - "Thu, 23 Apr 2020 00:34:05 GMT" + "Mon, 19 Apr 2021 07:00:26 GMT" ], "Content-Length": [ - "557" + "562" ], "Content-Type": [ "application/json" @@ -5907,29 +5393,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationPolicies/TestA2APolicy1910\",\r\n \"name\": \"TestA2APolicy1910\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestA2APolicy1910\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationPolicies/TestA2APolicy19100\",\r\n \"name\": \"TestA2APolicy19100\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestA2APolicy19100\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationPolicies/TestA2APolicy1910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxOTEwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationPolicies/TestA2APolicy19100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uUG9saWNpZXMvVGVzdEEyQVBvbGljeTE5MTAwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9cf3fa1-f756-4013-926c-a4c9006f0578-2020-04-23 00:37:46Z-Ps" + "958bd7f4-b202-4a07-9a31-117bb697ae43" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598666778)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203466778)\\/\",\"ClientRequestId\":\"e9cf3fa1-f756-4013-926c-a4c9006f0578-2020-04-23 00:37:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qikfWXSqdY/ec/7292PEZWRSsLynuDzNRG2PSGtLTBw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812239402)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417039402)\\/\",\"ClientRequestId\":\"82fda248-9d26-467c-88f0-93fa9f27263f-2021-04-19 07:03:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2b5x1DA/E1DmdiYhtKXJ0kJQ8uNwPSDGIsXMHlb7psc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5940,38 +5426,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11952" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "e9cf3fa1-f756-4013-926c-a4c9006f0578-2020-04-23 00:37:46Z-Ps 4/23/2020 12:37:47 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "958bd7f4-b202-4a07-9a31-117bb697ae43 4/19/2021 7:03:59 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e9cf3fa1-f756-4013-926c-a4c9006f0578-2020-04-23 00:37:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "958bd7f4-b202-4a07-9a31-117bb697ae43" ], "x-ms-correlation-request-id": [ - "f140a8cc-6630-4198-a5d9-93b270a4450a" + "ccd7d027-9574-4f55-8238-c173e1e572dc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003747Z:f140a8cc-6630-4198-a5d9-93b270a4450a" + "CENTRALINDIA:20210419T070359Z:ccd7d027-9574-4f55-8238-c173e1e572dc" ], "Date": [ - "Thu, 23 Apr 2020 00:37:46 GMT" + "Mon, 19 Apr 2021 07:03:59 GMT" ], "Content-Length": [ - "557" + "562" ], "Content-Type": [ "application/json" @@ -5980,35 +5463,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationPolicies/TestA2APolicy1910\",\r\n \"name\": \"TestA2APolicy1910\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestA2APolicy1910\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationPolicies/TestA2APolicy19100\",\r\n \"name\": \"TestA2APolicy19100\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestA2APolicy19100\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectionContainerMappings/A2APCM910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUENNOTEwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectionContainerMappings/A2APCM9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljOTEwMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAwL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzL0EyQVBDTTkxMDA/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910\",\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationPolicies/TestA2APolicy1910\",\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"ReplicationProviderSpecificContainerMappingInput\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100\",\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationPolicies/TestA2APolicy19100\",\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"ReplicationProviderSpecificContainerMappingInput\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2201300c-f1b5-4252-b788-e95019cd53ea-2020-04-23 00:34:06Z-Ps" + "28cae441-d3a0-4d75-812c-5e214b471a75" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598446121)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203246121)\\/\",\"ClientRequestId\":\"2201300c-f1b5-4252-b788-e95019cd53ea-2020-04-23 00:34:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dXYD9XhSGGpnQ2NvEuym5W2DEXVwncBgj+ZKROJ8tGg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812027721)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416827721)\\/\",\"ClientRequestId\":\"f7e92029-c3d4-4744-b87e-d815019004e3-2021-04-19 07:00:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+D2C8tmy35ptc7Lg/w07j9vSKjYwLtTkjR7C7R7vrjg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "644" + "651" ] }, "ResponseHeaders": { @@ -6019,41 +5502,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectionContainerMappings/A2APCM910/operationresults/a4774469-bb40-45f6-a838-eafa48d3380b?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectionContainerMappings/A2APCM9100/operationresults/35659744-f2a4-40f0-aa35-a36422986b4f?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationOperationStatus/a4774469-bb40-45f6-a838-eafa48d3380b?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationOperationStatus/35659744-f2a4-40f0-aa35-a36422986b4f?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2201300c-f1b5-4252-b788-e95019cd53ea-2020-04-23 00:34:06Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "28cae441-d3a0-4d75-812c-5e214b471a75" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1194" ], "x-ms-correlation-request-id": [ - "d52f2591-0d41-4c0d-8913-d9dc28696b35" + "06f0fdfa-fc46-4672-bedf-e3e20893e965" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003407Z:d52f2591-0d41-4c0d-8913-d9dc28696b35" + "CENTRALINDIA:20210419T070028Z:06f0fdfa-fc46-4672-bedf-e3e20893e965" ], "Date": [ - "Thu, 23 Apr 2020 00:34:06 GMT" + "Mon, 19 Apr 2021 07:00:27 GMT" ], "Expires": [ "-1" @@ -6066,25 +5546,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTQ3NzQ0NjktYmI0MC00NWY2LWE4MzgtZWFmYTQ4ZDMzODBiP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy8zNTY1OTc0NC1mMmE0LTQwZjAtYWEzNS1hMzY0MjI5ODZiNGY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70598118-ce1c-4f54-aaf0-cf52d4913ed2-2020-04-23 00:34:07Z-Ps" + "28cae441-d3a0-4d75-812c-5e214b471a75" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598447415)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203247415)\\/\",\"ClientRequestId\":\"70598118-ce1c-4f54-aaf0-cf52d4913ed2-2020-04-23 00:34:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YHvSz0lsjOWiJrVk1vT49+QWgpF/TdCPCpxthVSo2GQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812028391)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416828391)\\/\",\"ClientRequestId\":\"6d514230-e723-4366-ae51-a0e0a8423c59-2021-04-19 07:00:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"magjBU7VJjDXm7Be26aDcV5jNov97uod7Gx/b3+Ai8U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6095,38 +5575,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11972" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "70598118-ce1c-4f54-aaf0-cf52d4913ed2-2020-04-23 00:34:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "28cae441-d3a0-4d75-812c-5e214b471a75" ], "x-ms-correlation-request-id": [ - "6116ac32-5382-426f-81db-4c005629f5dc" + "1a3e18e3-fa4a-4db3-96a0-4107c015cce9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003407Z:6116ac32-5382-426f-81db-4c005629f5dc" + "CENTRALINDIA:20210419T070028Z:1a3e18e3-fa4a-4db3-96a0-4107c015cce9" ], "Date": [ - "Thu, 23 Apr 2020 00:34:07 GMT" + "Mon, 19 Apr 2021 07:00:28 GMT" ], "Content-Length": [ - "2877" + "737" ], "Content-Type": [ "application/json" @@ -6135,29 +5612,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"2201300c-f1b5-4252-b788-e95019cd53ea-2020-04-23 00:34:06Z-Ps ActivityId: d52f2591-0d41-4c0d-8913-d9dc28696b35\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:34:07.5628739Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"28cae441-d3a0-4d75-812c-5e214b471a75 ActivityId: 06f0fdfa-fc46-4672-bedf-e3e20893e965\",\r\n \"scenarioName\": null,\r\n \"friendlyName\": null,\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"allowedActions\": [],\r\n \"targetObjectId\": null,\r\n \"targetObjectName\": null,\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTQ3NzQ0NjktYmI0MC00NWY2LWE4MzgtZWFmYTQ4ZDMzODBiP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy8zNTY1OTc0NC1mMmE0LTQwZjAtYWEzNS1hMzY0MjI5ODZiNGY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca4ac1fd-30db-4635-a6b1-09c1b905adf7-2020-04-23 00:34:07Z-Ps" + "4d7bdf0e-4a9a-4206-a30e-35f005b7ae2a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598447943)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203247943)\\/\",\"ClientRequestId\":\"ca4ac1fd-30db-4635-a6b1-09c1b905adf7-2020-04-23 00:34:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"r3fZmk0Hi0IBDYAYmd+G6X2xT6M/9Y98elRLIy9Rfk4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812028745)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416828745)\\/\",\"ClientRequestId\":\"810c7812-5296-468f-81c6-e638b9c7cee5-2021-04-19 07:00:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Mlvbnv0KBPpYqaVspTd7YSdOECG7tQkIiG85OilgTkw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6168,38 +5645,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11971" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ca4ac1fd-30db-4635-a6b1-09c1b905adf7-2020-04-23 00:34:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4d7bdf0e-4a9a-4206-a30e-35f005b7ae2a" ], "x-ms-correlation-request-id": [ - "cfe59f7e-89ce-4045-8900-575224578948" + "ed4d72b6-88ae-4b00-b722-37ab2bcc38bc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003408Z:cfe59f7e-89ce-4045-8900-575224578948" + "CENTRALINDIA:20210419T070029Z:ed4d72b6-88ae-4b00-b722-37ab2bcc38bc" ], "Date": [ - "Thu, 23 Apr 2020 00:34:07 GMT" + "Mon, 19 Apr 2021 07:00:28 GMT" ], "Content-Length": [ - "2909" + "2882" ], "Content-Type": [ "application/json" @@ -6208,29 +5682,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"2201300c-f1b5-4252-b788-e95019cd53ea-2020-04-23 00:34:06Z-Ps ActivityId: d52f2591-0d41-4c0d-8913-d9dc28696b35\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:34:07.5628739Z\",\r\n \"endTime\": \"2020-04-23T00:34:07.7509321Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-04-23T00:34:07.7509321Z\",\r\n \"endTime\": \"2020-04-23T00:34:07.7822028Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-04-23T00:34:07.7822028Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"28cae441-d3a0-4d75-812c-5e214b471a75 ActivityId: 06f0fdfa-fc46-4672-bedf-e3e20893e965\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:00:28.7902967Z\",\r\n \"endTime\": \"2021-04-19T07:00:28.8502942Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-19T07:00:28.8502942Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTQ3NzQ0NjktYmI0MC00NWY2LWE4MzgtZWFmYTQ4ZDMzODBiP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy8zNTY1OTc0NC1mMmE0LTQwZjAtYWEzNS1hMzY0MjI5ODZiNGY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0b99af0-1d5c-4a93-894b-e78188182128-2020-04-23 00:34:28Z-Ps" + "41849007-346c-4558-b473-d5a606af0c65" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598468674)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203268674)\\/\",\"ClientRequestId\":\"c0b99af0-1d5c-4a93-894b-e78188182128-2020-04-23 00:34:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IxHUZzIrnVDLSNiga7xa7PBdKz3Vwfh0kFEH8Pv0CZ4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812049099)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416849099)\\/\",\"ClientRequestId\":\"91f7caf7-f632-4e39-9263-51c2ae8a4a1c-2021-04-19 07:00:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Lm7FTjZBrCpluehDWVhflkzgnsghm0ZAH/outcdH++w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6241,38 +5715,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11970" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c0b99af0-1d5c-4a93-894b-e78188182128-2020-04-23 00:34:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "41849007-346c-4558-b473-d5a606af0c65" ], "x-ms-correlation-request-id": [ - "c32d8516-7439-4e74-bbeb-228ce6729395" + "573bfec2-ca68-4489-b47f-56f6369060d5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003429Z:c32d8516-7439-4e74-bbeb-228ce6729395" + "CENTRALINDIA:20210419T070049Z:573bfec2-ca68-4489-b47f-56f6369060d5" ], "Date": [ - "Thu, 23 Apr 2020 00:34:28 GMT" + "Mon, 19 Apr 2021 07:00:49 GMT" ], "Content-Length": [ - "2909" + "2898" ], "Content-Type": [ "application/json" @@ -6281,29 +5752,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"2201300c-f1b5-4252-b788-e95019cd53ea-2020-04-23 00:34:06Z-Ps ActivityId: d52f2591-0d41-4c0d-8913-d9dc28696b35\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:34:07.5628739Z\",\r\n \"endTime\": \"2020-04-23T00:34:07.7509321Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-04-23T00:34:07.7509321Z\",\r\n \"endTime\": \"2020-04-23T00:34:07.7822028Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-04-23T00:34:07.7822028Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"28cae441-d3a0-4d75-812c-5e214b471a75 ActivityId: 06f0fdfa-fc46-4672-bedf-e3e20893e965\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:00:28.7902967Z\",\r\n \"endTime\": \"2021-04-19T07:00:28.8952931Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-19T07:00:28.8952931Z\",\r\n \"endTime\": \"2021-04-19T07:00:28.9252985Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-19T07:00:28.9252985Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTQ3NzQ0NjktYmI0MC00NWY2LWE4MzgtZWFmYTQ4ZDMzODBiP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy8zNTY1OTc0NC1mMmE0LTQwZjAtYWEzNS1hMzY0MjI5ODZiNGY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f6e2929-072d-4bd4-b9eb-8205f040f0f7-2020-04-23 00:34:49Z-Ps" + "d76223f2-77f8-4ed4-803d-39a7a21c643b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598489406)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203289406)\\/\",\"ClientRequestId\":\"0f6e2929-072d-4bd4-b9eb-8205f040f0f7-2020-04-23 00:34:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mlWLIVQnIMNKq8rHXcAHv2mgCKNQqrjPfrMm1oemlgo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812069472)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416869472)\\/\",\"ClientRequestId\":\"6856fd7c-71aa-4eae-b1fd-1a6869c79208-2021-04-19 07:01:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JdcT7/vZjDmMWnn30bPYId3euXJRMopGaLANpGEpRZg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6314,38 +5785,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11969" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "0f6e2929-072d-4bd4-b9eb-8205f040f0f7-2020-04-23 00:34:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d76223f2-77f8-4ed4-803d-39a7a21c643b" ], "x-ms-correlation-request-id": [ - "4e7fd2ba-6c55-46b4-af0b-392c086ef92f" + "dafaf116-53c2-4284-91e4-f35caa7d7f19" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003450Z:4e7fd2ba-6c55-46b4-af0b-392c086ef92f" + "CENTRALINDIA:20210419T070109Z:dafaf116-53c2-4284-91e4-f35caa7d7f19" ], "Date": [ - "Thu, 23 Apr 2020 00:34:50 GMT" + "Mon, 19 Apr 2021 07:01:09 GMT" ], "Content-Length": [ - "2909" + "2898" ], "Content-Type": [ "application/json" @@ -6354,29 +5822,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"2201300c-f1b5-4252-b788-e95019cd53ea-2020-04-23 00:34:06Z-Ps ActivityId: d52f2591-0d41-4c0d-8913-d9dc28696b35\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:34:07.5628739Z\",\r\n \"endTime\": \"2020-04-23T00:34:07.7509321Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-04-23T00:34:07.7509321Z\",\r\n \"endTime\": \"2020-04-23T00:34:07.7822028Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-04-23T00:34:07.7822028Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"28cae441-d3a0-4d75-812c-5e214b471a75 ActivityId: 06f0fdfa-fc46-4672-bedf-e3e20893e965\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:00:28.7902967Z\",\r\n \"endTime\": \"2021-04-19T07:00:28.8952931Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-19T07:00:28.8952931Z\",\r\n \"endTime\": \"2021-04-19T07:00:28.9252985Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-19T07:00:28.9252985Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTQ3NzQ0NjktYmI0MC00NWY2LWE4MzgtZWFmYTQ4ZDMzODBiP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy8zNTY1OTc0NC1mMmE0LTQwZjAtYWEzNS1hMzY0MjI5ODZiNGY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "993feeed-49f7-4a30-9dff-db8a88827ee6-2020-04-23 00:35:10Z-Ps" + "1c591e7c-0962-4715-985e-0d728a1e1bf5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598510984)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203310984)\\/\",\"ClientRequestId\":\"993feeed-49f7-4a30-9dff-db8a88827ee6-2020-04-23 00:35:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"O3DBHojJKV9viOfbfY4pl1DXWvhxVHep+jPAxS6CTa8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812089830)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416889830)\\/\",\"ClientRequestId\":\"924800dc-48d6-4830-9032-e7dafbcc7c78-2021-04-19 07:01:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HP0oxV9W48sob0S9CRfFo2fSvxBQIqvhbxVmLrM4L/8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6387,38 +5855,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11968" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "993feeed-49f7-4a30-9dff-db8a88827ee6-2020-04-23 00:35:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1c591e7c-0962-4715-985e-0d728a1e1bf5" ], "x-ms-correlation-request-id": [ - "cc8036b0-ef7e-404d-ba8e-7a07b48ff0c5" + "f985af0a-b43b-43bb-8b13-fc2a63d9d9e5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003511Z:cc8036b0-ef7e-404d-ba8e-7a07b48ff0c5" + "CENTRALINDIA:20210419T070130Z:f985af0a-b43b-43bb-8b13-fc2a63d9d9e5" ], "Date": [ - "Thu, 23 Apr 2020 00:35:10 GMT" + "Mon, 19 Apr 2021 07:01:29 GMT" ], "Content-Length": [ - "2909" + "2898" ], "Content-Type": [ "application/json" @@ -6427,29 +5892,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"2201300c-f1b5-4252-b788-e95019cd53ea-2020-04-23 00:34:06Z-Ps ActivityId: d52f2591-0d41-4c0d-8913-d9dc28696b35\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:34:07.5628739Z\",\r\n \"endTime\": \"2020-04-23T00:34:07.7509321Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-04-23T00:34:07.7509321Z\",\r\n \"endTime\": \"2020-04-23T00:34:07.7822028Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-04-23T00:34:07.7822028Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"28cae441-d3a0-4d75-812c-5e214b471a75 ActivityId: 06f0fdfa-fc46-4672-bedf-e3e20893e965\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:00:28.7902967Z\",\r\n \"endTime\": \"2021-04-19T07:00:28.8952931Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-19T07:00:28.8952931Z\",\r\n \"endTime\": \"2021-04-19T07:00:28.9252985Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-19T07:00:28.9252985Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTQ3NzQ0NjktYmI0MC00NWY2LWE4MzgtZWFmYTQ4ZDMzODBiP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy8zNTY1OTc0NC1mMmE0LTQwZjAtYWEzNS1hMzY0MjI5ODZiNGY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9da58cf8-acb2-4b4f-8542-d0ea658ce5ef-2020-04-23 00:35:31Z-Ps" + "0b9162b0-e0f2-4366-8b6d-c8a4326eb58f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598531504)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203331504)\\/\",\"ClientRequestId\":\"9da58cf8-acb2-4b4f-8542-d0ea658ce5ef-2020-04-23 00:35:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bhBzVRDtfa3mTsfNOJVp3J0z9dLc0dBWqTczqjZgTGk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812110194)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416910194)\\/\",\"ClientRequestId\":\"9d32efb2-6f4e-44cb-a917-39e254d80801-2021-04-19 07:01:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YIaTClM/R8XRaQ07knkaLgWnCqxGW7OYrQlJsX0/Kok=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6460,38 +5925,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11967" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9da58cf8-acb2-4b4f-8542-d0ea658ce5ef-2020-04-23 00:35:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0b9162b0-e0f2-4366-8b6d-c8a4326eb58f" ], "x-ms-correlation-request-id": [ - "fd3d715e-353b-406e-80b3-5dce5813d2bd" + "c866efa4-a63d-4740-ac96-27f81190f031" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003531Z:fd3d715e-353b-406e-80b3-5dce5813d2bd" + "CENTRALINDIA:20210419T070150Z:c866efa4-a63d-4740-ac96-27f81190f031" ], "Date": [ - "Thu, 23 Apr 2020 00:35:31 GMT" + "Mon, 19 Apr 2021 07:01:50 GMT" ], "Content-Length": [ - "2955" + "2942" ], "Content-Type": [ "application/json" @@ -6500,29 +5962,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"2201300c-f1b5-4252-b788-e95019cd53ea-2020-04-23 00:34:06Z-Ps ActivityId: d52f2591-0d41-4c0d-8913-d9dc28696b35\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:34:07.5628739Z\",\r\n \"endTime\": \"2020-04-23T00:34:07.7509321Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-04-23T00:34:07.7509321Z\",\r\n \"endTime\": \"2020-04-23T00:35:13.3964099Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-04-23T00:35:13.3964099Z\",\r\n \"endTime\": \"2020-04-23T00:35:13.5839086Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"2020-04-23T00:35:13.5839086Z\",\r\n \"endTime\": \"2020-04-23T00:35:13.5839086Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"28cae441-d3a0-4d75-812c-5e214b471a75 ActivityId: 06f0fdfa-fc46-4672-bedf-e3e20893e965\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:00:28.7902967Z\",\r\n \"endTime\": \"2021-04-19T07:00:28.8952931Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-19T07:00:28.8952931Z\",\r\n \"endTime\": \"2021-04-19T07:01:34.290853Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-19T07:01:34.290853Z\",\r\n \"endTime\": \"2021-04-19T07:01:34.4058581Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"2021-04-19T07:01:34.4058581Z\",\r\n \"endTime\": \"2021-04-19T07:01:34.4058581Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectionContainerMappings/A2APCM910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUENNOTEwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectionContainerMappings/A2APCM9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljOTEwMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAwL3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzL0EyQVBDTTkxMDA/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e82fdc2-914c-4ebe-ac64-3984ed245910-2020-04-23 00:35:31Z-Ps" + "76fd2166-0401-4237-b9a8-d92a8247dbe6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598531962)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203331962)\\/\",\"ClientRequestId\":\"2e82fdc2-914c-4ebe-ac64-3984ed245910-2020-04-23 00:35:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"97IFsxQWX+XW1zaUq0hEzekFHfvWicxPoo9H9Te8Yx4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812110554)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416910554)\\/\",\"ClientRequestId\":\"02c0f693-7ab0-4771-a4fd-f99ca4b6bab4-2021-04-19 07:01:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Gvdv2s7h+DJsgHoj+62pmt7sY6emoP6XdoPKBadYeJQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6533,38 +5995,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11966" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "2e82fdc2-914c-4ebe-ac64-3984ed245910-2020-04-23 00:35:31Z-Ps 4/23/2020 12:35:32 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "76fd2166-0401-4237-b9a8-d92a8247dbe6 4/19/2021 7:01:50 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2e82fdc2-914c-4ebe-ac64-3984ed245910-2020-04-23 00:35:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "76fd2166-0401-4237-b9a8-d92a8247dbe6" ], "x-ms-correlation-request-id": [ - "6a4c8a47-f384-41da-8801-fdbf4d6ca08a" + "81c93031-7a27-46ed-974f-2de75f8936a6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003532Z:6a4c8a47-f384-41da-8801-fdbf4d6ca08a" + "CENTRALINDIA:20210419T070150Z:81c93031-7a27-46ed-974f-2de75f8936a6" ], "Date": [ - "Thu, 23 Apr 2020 00:35:32 GMT" + "Mon, 19 Apr 2021 07:01:50 GMT" ], "Content-Length": [ - "1424" + "1448" ], "Content-Type": [ "application/json" @@ -6573,35 +6032,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectionContainerMappings/A2APCM910\",\r\n \"name\": \"A2APCM910\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910\",\r\n \"targetProtectionContainerFriendlyName\": \"A2ARecoveryContainer910\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"agentAutoUpdateStatus\": \"Disabled\",\r\n \"automationAccountArmId\": null,\r\n \"scheduleName\": null,\r\n \"jobScheduleName\": null\r\n },\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationPolicies/TestA2APolicy1910\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"A2APrimaryContainer910\",\r\n \"sourceFabricFriendlyName\": \"West US\",\r\n \"targetFabricFriendlyName\": \"East US\",\r\n \"policyFriendlyName\": \"TestA2APolicy1910\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectionContainerMappings/A2APCM9100\",\r\n \"name\": \"A2APCM9100\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100\",\r\n \"targetProtectionContainerFriendlyName\": \"A2ARecoveryContainer9100\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"agentAutoUpdateStatus\": \"Disabled\",\r\n \"automationAccountArmId\": null,\r\n \"scheduleName\": null,\r\n \"jobScheduleName\": null\r\n },\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationPolicies/TestA2APolicy19100\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"A2APrimaryContainer9100\",\r\n \"sourceFabricFriendlyName\": \"East US\",\r\n \"targetFabricFriendlyName\": \"West Central US\",\r\n \"policyFriendlyName\": \"TestA2APolicy19100\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ANetworkMapping910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxMC9yZXBsaWNhdGlvbk5ldHdvcmtzL2F6dXJlTmV0d29yay9yZXBsaWNhdGlvbk5ldHdvcmtNYXBwaW5ncy9BMkFOZXR3b3JrTWFwcGluZzkxMD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ANetworkMapping9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljOTEwMC9yZXBsaWNhdGlvbk5ldHdvcmtzL2F6dXJlTmV0d29yay9yZXBsaWNhdGlvbk5ldHdvcmtNYXBwaW5ncy9BMkFOZXR3b3JrTWFwcGluZzkxMDA/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"recoveryFabricName\": \"a2aRecoveryFabric910\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork910\",\r\n \"fabricSpecificDetails\": {\r\n \"instanceType\": \"AzureToAzure\",\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/virtualNetworks/a2aVM910\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"recoveryFabricName\": \"a2aRecoveryFabric9100\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork9100\",\r\n \"fabricSpecificDetails\": {\r\n \"instanceType\": \"AzureToAzure\",\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/virtualNetworks/a2aVM9100\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bb6eb4e9-dabd-42b3-a7d5-42274bcd1a39-2020-04-23 00:35:32Z-Ps" + "4c091680-a5ee-477c-9512-04f98ffc2317" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598532728)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203332728)\\/\",\"ClientRequestId\":\"bb6eb4e9-dabd-42b3-a7d5-42274bcd1a39-2020-04-23 00:35:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GZXA+D0pa/vWg7HJa3jYSLlhpyyQ7HtpTMGg6/xJCe8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812111027)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416911027)\\/\",\"ClientRequestId\":\"9c00d198-2a10-4328-ae78-e947f155fc58-2021-04-19 07:01:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"g7EFCo5fm+mtnuzC05puVQv2sxBJxCOsEygFlyVoQ8E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "486" + "491" ] }, "ResponseHeaders": { @@ -6612,40 +6071,37 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ANetworkMapping910/operationresults/054d6366-f840-4e68-b810-9b56308825ce?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ANetworkMapping9100/operationresults/c5577312-ddf7-4ab0-999b-39e19a3937d9?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "bb6eb4e9-dabd-42b3-a7d5-42274bcd1a39-2020-04-23 00:35:32Z-Ps 4/23/2020 12:35:34 AM" + "4c091680-a5ee-477c-9512-04f98ffc2317 4/19/2021 7:01:51 AM" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationOperationStatus/054d6366-f840-4e68-b810-9b56308825ce?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationOperationStatus/c5577312-ddf7-4ab0-999b-39e19a3937d9?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "bb6eb4e9-dabd-42b3-a7d5-42274bcd1a39-2020-04-23 00:35:32Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "4c091680-a5ee-477c-9512-04f98ffc2317" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1193" ], "x-ms-correlation-request-id": [ - "750b9dae-06b8-4f88-b8b9-4a81ccc2bdb0" + "d2d94853-f844-413f-a5f3-14879d190f24" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003534Z:750b9dae-06b8-4f88-b8b9-4a81ccc2bdb0" + "CENTRALINDIA:20210419T070151Z:d2d94853-f844-413f-a5f3-14879d190f24" ], "Date": [ - "Thu, 23 Apr 2020 00:35:34 GMT" + "Mon, 19 Apr 2021 07:01:51 GMT" ], "Expires": [ "-1" @@ -6658,25 +6114,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMDU0ZDYzNjYtZjg0MC00ZTY4LWI4MTAtOWI1NjMwODgyNWNlP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9jNTU3NzMxMi1kZGY3LTRhYjAtOTk5Yi0zOWUxOWEzOTM3ZDk/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6398a4df-9f9b-49fe-a476-a72620f6439f-2020-04-23 00:35:34Z-Ps" + "4c091680-a5ee-477c-9512-04f98ffc2317" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598534690)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203334690)\\/\",\"ClientRequestId\":\"6398a4df-9f9b-49fe-a476-a72620f6439f-2020-04-23 00:35:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7M5ytItGCgwnZlRXSSJG9YYug+loSgv8uUadBr90PAM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812111697)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416911697)\\/\",\"ClientRequestId\":\"1680e1ed-b2f6-4857-9767-bcd17d035ae8-2021-04-19 07:01:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GgcmF2bf/lZnC5e0xfD00+AqR70ialRk8bVXBQ7YMdI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6687,38 +6143,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11965" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "6398a4df-9f9b-49fe-a476-a72620f6439f-2020-04-23 00:35:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4c091680-a5ee-477c-9512-04f98ffc2317" ], "x-ms-correlation-request-id": [ - "d54fbb2e-72e8-4d6b-a0fd-944a2405e23c" + "e7b77c38-d0a7-44ec-a0b9-bdc9a94ea510" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003535Z:d54fbb2e-72e8-4d6b-a0fd-944a2405e23c" + "CENTRALINDIA:20210419T070151Z:e7b77c38-d0a7-44ec-a0b9-bdc9a94ea510" ], "Date": [ - "Thu, 23 Apr 2020 00:35:34 GMT" + "Mon, 19 Apr 2021 07:01:51 GMT" ], "Content-Length": [ - "2188" + "2190" ], "Content-Type": [ "application/json" @@ -6727,29 +6180,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"bb6eb4e9-dabd-42b3-a7d5-42274bcd1a39-2020-04-23 00:35:32Z-Ps ActivityId: 750b9dae-06b8-4f88-b8b9-4a81ccc2bdb0\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"51310911-0c58-4786-adaa-91df00569cbe\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"86a344dc-306b-4a48-9165-dd1ca0a54fe2\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm910/providers/microsoft.network/virtualnetworks/a2avm910\",\r\n \"primaryNetworkName\": \"a2avm910\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.network/virtualnetworks/a2arecoverynetwork910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4c091680-a5ee-477c-9512-04f98ffc2317 ActivityId: d2d94853-f844-413f-a5f3-14879d190f24\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"d4f098b3-a45c-47e3-907b-a594baa5332d\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-19T07:01:51.6269309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"bf85a8d1-730a-4fa0-942d-94a5b3fddeae\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm9100/providers/microsoft.network/virtualnetworks/a2avm9100\",\r\n \"primaryNetworkName\": \"a2avm9100\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.network/virtualnetworks/a2arecoverynetwork9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMDU0ZDYzNjYtZjg0MC00ZTY4LWI4MTAtOWI1NjMwODgyNWNlP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9jNTU3NzMxMi1kZGY3LTRhYjAtOTk5Yi0zOWUxOWEzOTM3ZDk/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f2ce22b-fb95-4fb4-ab44-dbe639850954-2020-04-23 00:35:35Z-Ps" + "973e7c94-3f86-48a4-b0d6-113323fccc7a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598535177)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203335177)\\/\",\"ClientRequestId\":\"2f2ce22b-fb95-4fb4-ab44-dbe639850954-2020-04-23 00:35:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mD6Gazikz5N1rwq0KeD1z3KI5GZ+sFV4o8rG77Xwdg8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812112047)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416912047)\\/\",\"ClientRequestId\":\"0ce903e2-7e2d-4a87-b107-36cc469f9dee-2021-04-19 07:01:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"itDzJ9flWtqwoDwfupkRgZlEMjB3fF/qcNYHQy+6T8E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6760,38 +6213,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11964" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2f2ce22b-fb95-4fb4-ab44-dbe639850954-2020-04-23 00:35:35Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "973e7c94-3f86-48a4-b0d6-113323fccc7a" ], "x-ms-correlation-request-id": [ - "0d9c96e2-3922-495d-8ad1-bd38cf992c43" + "3af0c32d-c4ec-4fcc-b769-a2baa2590e6a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003535Z:0d9c96e2-3922-495d-8ad1-bd38cf992c43" + "CENTRALINDIA:20210419T070152Z:3af0c32d-c4ec-4fcc-b769-a2baa2590e6a" ], "Date": [ - "Thu, 23 Apr 2020 00:35:35 GMT" + "Mon, 19 Apr 2021 07:01:52 GMT" ], "Content-Length": [ - "2197" + "2190" ], "Content-Type": [ "application/json" @@ -6800,29 +6250,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"bb6eb4e9-dabd-42b3-a7d5-42274bcd1a39-2020-04-23 00:35:32Z-Ps ActivityId: 750b9dae-06b8-4f88-b8b9-4a81ccc2bdb0\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"51310911-0c58-4786-adaa-91df00569cbe\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2020-04-23T00:35:34.8314866Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"86a344dc-306b-4a48-9165-dd1ca0a54fe2\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm910/providers/microsoft.network/virtualnetworks/a2avm910\",\r\n \"primaryNetworkName\": \"a2avm910\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.network/virtualnetworks/a2arecoverynetwork910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4c091680-a5ee-477c-9512-04f98ffc2317 ActivityId: d2d94853-f844-413f-a5f3-14879d190f24\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"d4f098b3-a45c-47e3-907b-a594baa5332d\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-19T07:01:51.6269309Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"bf85a8d1-730a-4fa0-942d-94a5b3fddeae\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm9100/providers/microsoft.network/virtualnetworks/a2avm9100\",\r\n \"primaryNetworkName\": \"a2avm9100\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.network/virtualnetworks/a2arecoverynetwork9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMDU0ZDYzNjYtZjg0MC00ZTY4LWI4MTAtOWI1NjMwODgyNWNlP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9jNTU3NzMxMi1kZGY3LTRhYjAtOTk5Yi0zOWUxOWEzOTM3ZDk/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9fc630b-3dff-420c-92e5-394c46311502-2020-04-23 00:35:55Z-Ps" + "2d335a86-4b4e-4de2-9acc-4a655ff86246" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598555938)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203355938)\\/\",\"ClientRequestId\":\"e9fc630b-3dff-420c-92e5-394c46311502-2020-04-23 00:35:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"M0WQM9CLm78QW5yvXNjUwsPoXV+jPjxNY3Zv+RDwmeg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812132389)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416932389)\\/\",\"ClientRequestId\":\"cd3a9d3f-cd00-4e98-9abb-65268c403248-2021-04-19 07:02:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"B6aRFfBEYmP/ZsOm2trUl7aep3608nLHSEzsehaChZE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6832,39 +6282,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e9fc630b-3dff-420c-92e5-394c46311502-2020-04-23 00:35:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "2d335a86-4b4e-4de2-9acc-4a655ff86246" ], "x-ms-correlation-request-id": [ - "34119cf3-ac58-49b5-ac70-9fc064367ccd" + "b2a808e3-8e5c-40ce-9187-08701cd6b248" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003556Z:34119cf3-ac58-49b5-ac70-9fc064367ccd" + "CENTRALINDIA:20210419T070212Z:b2a808e3-8e5c-40ce-9187-08701cd6b248" ], "Date": [ - "Thu, 23 Apr 2020 00:35:55 GMT" + "Mon, 19 Apr 2021 07:02:12 GMT" ], "Content-Length": [ - "2219" + "2212" ], "Content-Type": [ "application/json" @@ -6873,35 +6320,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"bb6eb4e9-dabd-42b3-a7d5-42274bcd1a39-2020-04-23 00:35:32Z-Ps ActivityId: 750b9dae-06b8-4f88-b8b9-4a81ccc2bdb0\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"51310911-0c58-4786-adaa-91df00569cbe\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2020-04-23T00:35:34.8314866Z\",\r\n \"endTime\": \"2020-04-23T00:35:36.8603267Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"86a344dc-306b-4a48-9165-dd1ca0a54fe2\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm910/providers/microsoft.network/virtualnetworks/a2avm910\",\r\n \"primaryNetworkName\": \"a2avm910\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.network/virtualnetworks/a2arecoverynetwork910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"4c091680-a5ee-477c-9512-04f98ffc2317 ActivityId: d2d94853-f844-413f-a5f3-14879d190f24\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"d4f098b3-a45c-47e3-907b-a594baa5332d\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-19T07:01:51.6269309Z\",\r\n \"endTime\": \"2021-04-19T07:01:52.9554932Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"bf85a8d1-730a-4fa0-942d-94a5b3fddeae\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm9100/providers/microsoft.network/virtualnetworks/a2avm9100\",\r\n \"primaryNetworkName\": \"a2avm9100\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.network/virtualnetworks/a2arecoverynetwork9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectionContainerMappings/A2ARCM910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTAvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjkxMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncy9BMkFSQ005MTA/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectionContainerMappings/A2ARCM9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzkxMDAvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjkxMDAvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUkNNOTEwMD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910\",\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationPolicies/TestA2APolicy1910\",\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"ReplicationProviderSpecificContainerMappingInput\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100\",\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationPolicies/TestA2APolicy19100\",\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"ReplicationProviderSpecificContainerMappingInput\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "aec8e757-749e-4504-a368-480ce99e7f70-2020-04-23 00:35:56Z-Ps" + "a0c2bbbd-ea5a-4326-b51e-2decb7bded26" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598556579)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203356579)\\/\",\"ClientRequestId\":\"aec8e757-749e-4504-a368-480ce99e7f70-2020-04-23 00:35:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/KLA/SdTVFwze+4caNhoW1exKHIfM9/gg7QJD6A0rHY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812132732)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416932732)\\/\",\"ClientRequestId\":\"a357fcb9-e37a-41a0-b1ac-2c66293000aa-2021-04-19 07:02:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VziIyvTEcq7tqO8wZiVI7RVjjh+I3tMi1iVPSaGCf2A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "642" + "649" ] }, "ResponseHeaders": { @@ -6912,41 +6359,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectionContainerMappings/A2ARCM910/operationresults/be67700a-14cc-4a18-8c73-4968cb566598?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectionContainerMappings/A2ARCM9100/operationresults/cca5c3eb-af07-452a-abf9-44575dc8cbec?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationOperationStatus/be67700a-14cc-4a18-8c73-4968cb566598?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationOperationStatus/cca5c3eb-af07-452a-abf9-44575dc8cbec?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "aec8e757-749e-4504-a368-480ce99e7f70-2020-04-23 00:35:56Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "a0c2bbbd-ea5a-4326-b51e-2decb7bded26" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1192" ], "x-ms-correlation-request-id": [ - "ded1bae1-dcde-4eb8-b4e5-7e559a524813" + "fda36631-c3dd-4ae2-81c2-f063fe58cddc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003558Z:ded1bae1-dcde-4eb8-b4e5-7e559a524813" + "CENTRALINDIA:20210419T070213Z:fda36631-c3dd-4ae2-81c2-f063fe58cddc" ], "Date": [ - "Thu, 23 Apr 2020 00:35:57 GMT" + "Mon, 19 Apr 2021 07:02:12 GMT" ], "Expires": [ "-1" @@ -6959,25 +6403,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYmU2NzcwMGEtMTRjYy00YTE4LThjNzMtNDk2OGNiNTY2NTk4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9jY2E1YzNlYi1hZjA3LTQ1MmEtYWJmOS00NDU3NWRjOGNiZWM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76576255-8f0b-4a42-adb3-17178feef788-2020-04-23 00:35:58Z-Ps" + "a0c2bbbd-ea5a-4326-b51e-2decb7bded26" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598558685)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203358685)\\/\",\"ClientRequestId\":\"76576255-8f0b-4a42-adb3-17178feef788-2020-04-23 00:35:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5kPUmw0888su7b6n137aWvoDiFpjrGNIvVddmtOnQZA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812133382)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416933382)\\/\",\"ClientRequestId\":\"888c91c6-0fb9-42c4-8e7b-8b1b6ce31a73-2021-04-19 07:02:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1hnhDxaOpiz6MotMqcoVB5sr9FMgx4o6YMvZhxvByzA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6988,38 +6432,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11962" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "76576255-8f0b-4a42-adb3-17178feef788-2020-04-23 00:35:58Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a0c2bbbd-ea5a-4326-b51e-2decb7bded26" ], "x-ms-correlation-request-id": [ - "f3b2acfc-a044-41df-a062-2346ce2da5a5" + "9dadcd2a-70dd-4ce8-8886-9caf5ed36d31" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003559Z:f3b2acfc-a044-41df-a062-2346ce2da5a5" + "CENTRALINDIA:20210419T070214Z:9dadcd2a-70dd-4ce8-8886-9caf5ed36d31" ], "Date": [ - "Thu, 23 Apr 2020 00:35:58 GMT" + "Mon, 19 Apr 2021 07:02:13 GMT" ], "Content-Length": [ - "2893" + "2898" ], "Content-Type": [ "application/json" @@ -7028,29 +6469,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"aec8e757-749e-4504-a368-480ce99e7f70-2020-04-23 00:35:56Z-Ps ActivityId: ded1bae1-dcde-4eb8-b4e5-7e559a524813\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:35:58.7641556Z\",\r\n \"endTime\": \"2020-04-23T00:35:58.5766121Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-04-23T00:35:58.5766121Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer910\",\r\n \"recoveryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer910\",\r\n \"primaryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"recoveryVmmName\": \"West US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a0c2bbbd-ea5a-4326-b51e-2decb7bded26 ActivityId: fda36631-c3dd-4ae2-81c2-f063fe58cddc\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:02:13.3262073Z\",\r\n \"endTime\": \"2021-04-19T07:02:13.4312093Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-19T07:02:13.4312093Z\",\r\n \"endTime\": \"2021-04-19T07:02:13.4612061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-19T07:02:13.4612061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"recoveryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer9100\",\r\n \"primaryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYmU2NzcwMGEtMTRjYy00YTE4LThjNzMtNDk2OGNiNTY2NTk4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9jY2E1YzNlYi1hZjA3LTQ1MmEtYWJmOS00NDU3NWRjOGNiZWM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37b636e4-9625-4f7e-a908-1a1e0b6dd24c-2020-04-23 00:35:59Z-Ps" + "b6148405-a6af-405c-86af-e6f23c0feeaf" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598559145)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203359145)\\/\",\"ClientRequestId\":\"37b636e4-9625-4f7e-a908-1a1e0b6dd24c-2020-04-23 00:35:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7HgFasZZxLwkTAl6EjrV6lJ6L5Es+/xswrYuP4gAiPM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812134078)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416934078)\\/\",\"ClientRequestId\":\"6961d449-3f6c-4a65-af2d-425cd7996107-2021-04-19 07:02:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QjfDqpqy0iHx8OyPwlLwzSEP8OdUZc2VQixts7lc+8U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7061,38 +6502,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11961" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "37b636e4-9625-4f7e-a908-1a1e0b6dd24c-2020-04-23 00:35:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b6148405-a6af-405c-86af-e6f23c0feeaf" ], "x-ms-correlation-request-id": [ - "00260ab5-c98b-46c7-82e9-2fc9579b1678" + "ca43d31a-91d5-471e-b8ae-3337b9ffc53b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003559Z:00260ab5-c98b-46c7-82e9-2fc9579b1678" + "CENTRALINDIA:20210419T070214Z:ca43d31a-91d5-471e-b8ae-3337b9ffc53b" ], "Date": [ - "Thu, 23 Apr 2020 00:35:58 GMT" + "Mon, 19 Apr 2021 07:02:13 GMT" ], "Content-Length": [ - "2909" + "2898" ], "Content-Type": [ "application/json" @@ -7101,29 +6539,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"aec8e757-749e-4504-a368-480ce99e7f70-2020-04-23 00:35:56Z-Ps ActivityId: ded1bae1-dcde-4eb8-b4e5-7e559a524813\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:35:58.7641556Z\",\r\n \"endTime\": \"2020-04-23T00:35:59.1390934Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-04-23T00:35:59.1390934Z\",\r\n \"endTime\": \"2020-04-23T00:35:59.2640946Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-04-23T00:35:59.2640946Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer910\",\r\n \"recoveryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer910\",\r\n \"primaryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"recoveryVmmName\": \"West US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a0c2bbbd-ea5a-4326-b51e-2decb7bded26 ActivityId: fda36631-c3dd-4ae2-81c2-f063fe58cddc\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:02:13.3262073Z\",\r\n \"endTime\": \"2021-04-19T07:02:13.4312093Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-19T07:02:13.4312093Z\",\r\n \"endTime\": \"2021-04-19T07:02:13.4612061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-19T07:02:13.4612061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"recoveryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer9100\",\r\n \"primaryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYmU2NzcwMGEtMTRjYy00YTE4LThjNzMtNDk2OGNiNTY2NTk4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9jY2E1YzNlYi1hZjA3LTQ1MmEtYWJmOS00NDU3NWRjOGNiZWM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1ec51040-076a-4743-af0d-b4bd61f0305e-2020-04-23 00:36:19Z-Ps" + "64ec85b7-eb66-4869-9c9e-62f39ff244e9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598579715)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203379715)\\/\",\"ClientRequestId\":\"1ec51040-076a-4743-af0d-b4bd61f0305e-2020-04-23 00:36:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"14gzWoWa82U1Xo4AN0sua2NK6S4ZW2lXjJzi6tF5oC0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812154446)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416954446)\\/\",\"ClientRequestId\":\"61dd1e1d-892d-4589-92be-88a77bdd4a67-2021-04-19 07:02:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rg/KnZwIJX+uaiGHCvVoD8zaLxiT7ZaJaHSSAXPhx74=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7134,38 +6572,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11960" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1ec51040-076a-4743-af0d-b4bd61f0305e-2020-04-23 00:36:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "64ec85b7-eb66-4869-9c9e-62f39ff244e9" ], "x-ms-correlation-request-id": [ - "e0531e37-c1d2-4fd4-8dbb-2dcd2b82b60f" + "0d344e4d-8dfa-463b-98f2-6d04853926d4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003620Z:e0531e37-c1d2-4fd4-8dbb-2dcd2b82b60f" + "CENTRALINDIA:20210419T070234Z:0d344e4d-8dfa-463b-98f2-6d04853926d4" ], "Date": [ - "Thu, 23 Apr 2020 00:36:19 GMT" + "Mon, 19 Apr 2021 07:02:34 GMT" ], "Content-Length": [ - "2909" + "2898" ], "Content-Type": [ "application/json" @@ -7174,29 +6609,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"aec8e757-749e-4504-a368-480ce99e7f70-2020-04-23 00:35:56Z-Ps ActivityId: ded1bae1-dcde-4eb8-b4e5-7e559a524813\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:35:58.7641556Z\",\r\n \"endTime\": \"2020-04-23T00:35:59.1390934Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-04-23T00:35:59.1390934Z\",\r\n \"endTime\": \"2020-04-23T00:35:59.2640946Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-04-23T00:35:59.2640946Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer910\",\r\n \"recoveryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer910\",\r\n \"primaryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"recoveryVmmName\": \"West US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a0c2bbbd-ea5a-4326-b51e-2decb7bded26 ActivityId: fda36631-c3dd-4ae2-81c2-f063fe58cddc\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:02:13.3262073Z\",\r\n \"endTime\": \"2021-04-19T07:02:13.4312093Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-19T07:02:13.4312093Z\",\r\n \"endTime\": \"2021-04-19T07:02:13.4612061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-19T07:02:13.4612061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"recoveryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer9100\",\r\n \"primaryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYmU2NzcwMGEtMTRjYy00YTE4LThjNzMtNDk2OGNiNTY2NTk4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9jY2E1YzNlYi1hZjA3LTQ1MmEtYWJmOS00NDU3NWRjOGNiZWM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea455fb2-e7fb-45ae-8924-c260c1731f46-2020-04-23 00:36:40Z-Ps" + "59d6dae4-620b-401f-8c82-7dc002bdbcda" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598600299)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203400299)\\/\",\"ClientRequestId\":\"ea455fb2-e7fb-45ae-8924-c260c1731f46-2020-04-23 00:36:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Bzs3Djvwkn7GXEITL1mfH3+mNVzISQjcBthMKkt31Uw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812174978)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416974978)\\/\",\"ClientRequestId\":\"f2ee7760-8777-4af9-a660-b768b72b5e3b-2021-04-19 07:02:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RRxWl3FgTXOYCM9/SDJgQAwJY4SqJIVAHliii90T/5o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7207,38 +6642,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11959" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ea455fb2-e7fb-45ae-8924-c260c1731f46-2020-04-23 00:36:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "59d6dae4-620b-401f-8c82-7dc002bdbcda" ], "x-ms-correlation-request-id": [ - "07a33957-c4e5-45f0-8023-df0c457d19f5" + "85ab5bdc-71bf-4279-876d-69b6ff1e4754" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003640Z:07a33957-c4e5-45f0-8023-df0c457d19f5" + "CENTRALINDIA:20210419T070255Z:85ab5bdc-71bf-4279-876d-69b6ff1e4754" ], "Date": [ - "Thu, 23 Apr 2020 00:36:40 GMT" + "Mon, 19 Apr 2021 07:02:54 GMT" ], "Content-Length": [ - "2909" + "2898" ], "Content-Type": [ "application/json" @@ -7247,29 +6679,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"aec8e757-749e-4504-a368-480ce99e7f70-2020-04-23 00:35:56Z-Ps ActivityId: ded1bae1-dcde-4eb8-b4e5-7e559a524813\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:35:58.7641556Z\",\r\n \"endTime\": \"2020-04-23T00:35:59.1390934Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-04-23T00:35:59.1390934Z\",\r\n \"endTime\": \"2020-04-23T00:35:59.2640946Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-04-23T00:35:59.2640946Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer910\",\r\n \"recoveryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer910\",\r\n \"primaryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"recoveryVmmName\": \"West US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a0c2bbbd-ea5a-4326-b51e-2decb7bded26 ActivityId: fda36631-c3dd-4ae2-81c2-f063fe58cddc\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:02:13.3262073Z\",\r\n \"endTime\": \"2021-04-19T07:02:13.4312093Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-19T07:02:13.4312093Z\",\r\n \"endTime\": \"2021-04-19T07:02:13.4612061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-19T07:02:13.4612061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"recoveryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer9100\",\r\n \"primaryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYmU2NzcwMGEtMTRjYy00YTE4LThjNzMtNDk2OGNiNTY2NTk4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9jY2E1YzNlYi1hZjA3LTQ1MmEtYWJmOS00NDU3NWRjOGNiZWM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "982410ab-d51f-4a76-a9b7-bacad4868bca-2020-04-23 00:37:00Z-Ps" + "47cf314f-b93e-4504-b7a1-1e2e16142fb9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598620894)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203420894)\\/\",\"ClientRequestId\":\"982410ab-d51f-4a76-a9b7-bacad4868bca-2020-04-23 00:37:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cxUldW8PwB82+JDyU7/jbixAuf/hv1wqlEWSVxP/P5Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812195346)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619416995346)\\/\",\"ClientRequestId\":\"b0e8d2a6-2f44-44bd-822f-21738be22b46-2021-04-19 07:03:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ttFLjKn/jDEdIf4QWTID6kOrY7/5CW2JYxJSyg9v4HY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7279,39 +6711,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "982410ab-d51f-4a76-a9b7-bacad4868bca-2020-04-23 00:37:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "47cf314f-b93e-4504-b7a1-1e2e16142fb9" ], "x-ms-correlation-request-id": [ - "e7fb0fe8-8267-4282-9d8f-25aff1cefabf" + "c0f76234-856c-4c84-812e-ec0ead6bd7ab" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003701Z:e7fb0fe8-8267-4282-9d8f-25aff1cefabf" + "CENTRALINDIA:20210419T070315Z:c0f76234-856c-4c84-812e-ec0ead6bd7ab" ], "Date": [ - "Thu, 23 Apr 2020 00:37:00 GMT" + "Mon, 19 Apr 2021 07:03:14 GMT" ], "Content-Length": [ - "2909" + "2898" ], "Content-Type": [ "application/json" @@ -7320,29 +6749,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"aec8e757-749e-4504-a368-480ce99e7f70-2020-04-23 00:35:56Z-Ps ActivityId: ded1bae1-dcde-4eb8-b4e5-7e559a524813\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:35:58.7641556Z\",\r\n \"endTime\": \"2020-04-23T00:35:59.1390934Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-04-23T00:35:59.1390934Z\",\r\n \"endTime\": \"2020-04-23T00:35:59.2640946Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-04-23T00:35:59.2640946Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer910\",\r\n \"recoveryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer910\",\r\n \"primaryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"recoveryVmmName\": \"West US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a0c2bbbd-ea5a-4326-b51e-2decb7bded26 ActivityId: fda36631-c3dd-4ae2-81c2-f063fe58cddc\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:02:13.3262073Z\",\r\n \"endTime\": \"2021-04-19T07:02:13.4312093Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-19T07:02:13.4312093Z\",\r\n \"endTime\": \"2021-04-19T07:02:13.4612061Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-19T07:02:13.4612061Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"recoveryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer9100\",\r\n \"primaryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYmU2NzcwMGEtMTRjYy00YTE4LThjNzMtNDk2OGNiNTY2NTk4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9jY2E1YzNlYi1hZjA3LTQ1MmEtYWJmOS00NDU3NWRjOGNiZWM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "816e8b91-5a9a-4cf9-8ec5-63abf45f3d6f-2020-04-23 00:37:21Z-Ps" + "f95ed46c-8cb7-453d-8220-59547b2c9aea" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598641437)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203441437)\\/\",\"ClientRequestId\":\"816e8b91-5a9a-4cf9-8ec5-63abf45f3d6f-2020-04-23 00:37:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oAitWLosrTLjp4vKpHSbDIqSlRvby7FYk2adyYvB/TY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812215784)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417015784)\\/\",\"ClientRequestId\":\"a39ad978-5b41-4031-b832-bb4f6d7b9dff-2021-04-19 07:03:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"A9mI1x41eSoy7zWuc/HP06WIyQXPy5bRPUqs3t9G8+s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7352,39 +6781,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "816e8b91-5a9a-4cf9-8ec5-63abf45f3d6f-2020-04-23 00:37:21Z-Ps" + "f95ed46c-8cb7-453d-8220-59547b2c9aea" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" ], "x-ms-correlation-request-id": [ - "50067c48-2bfc-41d1-bcbf-a2498e273795" + "dfbac0f7-5fd7-4518-b304-c6a429c3d7c2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003722Z:50067c48-2bfc-41d1-bcbf-a2498e273795" + "CENTRALINDIA:20210419T070336Z:dfbac0f7-5fd7-4518-b304-c6a429c3d7c2" ], "Date": [ - "Thu, 23 Apr 2020 00:37:22 GMT" + "Mon, 19 Apr 2021 07:03:35 GMT" ], "Content-Length": [ - "2955" + "2944" ], "Content-Type": [ "application/json" @@ -7393,29 +6819,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"aec8e757-749e-4504-a368-480ce99e7f70-2020-04-23 00:35:56Z-Ps ActivityId: ded1bae1-dcde-4eb8-b4e5-7e559a524813\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:35:58.7641556Z\",\r\n \"endTime\": \"2020-04-23T00:35:59.1390934Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-04-23T00:35:59.1390934Z\",\r\n \"endTime\": \"2020-04-23T00:37:04.3838993Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-04-23T00:37:04.3838993Z\",\r\n \"endTime\": \"2020-04-23T00:37:04.4807321Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"2020-04-23T00:37:04.4807321Z\",\r\n \"endTime\": \"2020-04-23T00:37:04.4807321Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer910\",\r\n \"recoveryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer910\",\r\n \"primaryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"recoveryVmmName\": \"West US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a0c2bbbd-ea5a-4326-b51e-2decb7bded26 ActivityId: fda36631-c3dd-4ae2-81c2-f063fe58cddc\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:02:13.3262073Z\",\r\n \"endTime\": \"2021-04-19T07:02:13.4312093Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-19T07:02:13.4312093Z\",\r\n \"endTime\": \"2021-04-19T07:03:23.6467977Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-19T07:03:23.6467977Z\",\r\n \"endTime\": \"2021-04-19T07:03:23.7217968Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"2021-04-19T07:03:23.7217968Z\",\r\n \"endTime\": \"2021-04-19T07:03:23.7217968Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"recoveryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer9100\",\r\n \"primaryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectionContainerMappings/A2ARCM910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTAvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjkxMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncy9BMkFSQ005MTA/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectionContainerMappings/A2ARCM9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzkxMDAvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjkxMDAvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUkNNOTEwMD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8bab5660-3a62-4684-8ec2-8a1b4ddf917e-2020-04-23 00:37:23Z-Ps" + "1fac11bf-4829-403a-adfe-e09a3eeb5f6f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598643088)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203443088)\\/\",\"ClientRequestId\":\"8bab5660-3a62-4684-8ec2-8a1b4ddf917e-2020-04-23 00:37:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zOuhh/GNhScxbX2LT1J31OqVMR7fE39/InP1vT3uAXM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812216127)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417016127)\\/\",\"ClientRequestId\":\"0b79bf21-62c3-4580-a56a-d3fb80691fc2-2021-04-19 07:03:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Uz65XaNvcn+pD7E5X8+gwf0oaMZRcSoBeL6cMNb3gpY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7426,38 +6852,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11956" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "8bab5660-3a62-4684-8ec2-8a1b4ddf917e-2020-04-23 00:37:23Z-Ps 4/23/2020 12:37:23 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "1fac11bf-4829-403a-adfe-e09a3eeb5f6f 4/19/2021 7:03:37 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "8bab5660-3a62-4684-8ec2-8a1b4ddf917e-2020-04-23 00:37:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1fac11bf-4829-403a-adfe-e09a3eeb5f6f" ], "x-ms-correlation-request-id": [ - "6dfbacb8-e0de-4e0b-8aa4-e55cff254dfc" + "3fea5c38-cbbb-4121-8adc-1b9e851e5fe3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003723Z:6dfbacb8-e0de-4e0b-8aa4-e55cff254dfc" + "CENTRALINDIA:20210419T070337Z:3fea5c38-cbbb-4121-8adc-1b9e851e5fe3" ], "Date": [ - "Thu, 23 Apr 2020 00:37:22 GMT" + "Mon, 19 Apr 2021 07:03:37 GMT" ], "Content-Length": [ - "1424" + "1448" ], "Content-Type": [ "application/json" @@ -7466,35 +6889,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectionContainerMappings/A2ARCM910\",\r\n \"name\": \"A2ARCM910\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910\",\r\n \"targetProtectionContainerFriendlyName\": \"A2APrimaryContainer910\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"agentAutoUpdateStatus\": \"Disabled\",\r\n \"automationAccountArmId\": null,\r\n \"scheduleName\": null,\r\n \"jobScheduleName\": null\r\n },\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationPolicies/TestA2APolicy1910\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"A2ARecoveryContainer910\",\r\n \"sourceFabricFriendlyName\": \"East US\",\r\n \"targetFabricFriendlyName\": \"West US\",\r\n \"policyFriendlyName\": \"TestA2APolicy1910\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectionContainerMappings/A2ARCM9100\",\r\n \"name\": \"A2ARCM9100\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100\",\r\n \"targetProtectionContainerFriendlyName\": \"A2APrimaryContainer9100\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"agentAutoUpdateStatus\": \"Disabled\",\r\n \"automationAccountArmId\": null,\r\n \"scheduleName\": null,\r\n \"jobScheduleName\": null\r\n },\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationPolicies/TestA2APolicy19100\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"A2ARecoveryContainer9100\",\r\n \"sourceFabricFriendlyName\": \"West Central US\",\r\n \"targetFabricFriendlyName\": \"East US\",\r\n \"policyFriendlyName\": \"TestA2APolicy19100\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ARecoveryNetworkMapping910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTAvcmVwbGljYXRpb25OZXR3b3Jrcy9henVyZU5ldHdvcmsvcmVwbGljYXRpb25OZXR3b3JrTWFwcGluZ3MvQTJBUmVjb3ZlcnlOZXR3b3JrTWFwcGluZzkxMD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ARecoveryNetworkMapping9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzkxMDAvcmVwbGljYXRpb25OZXR3b3Jrcy9henVyZU5ldHdvcmsvcmVwbGljYXRpb25OZXR3b3JrTWFwcGluZ3MvQTJBUmVjb3ZlcnlOZXR3b3JrTWFwcGluZzkxMDA/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"recoveryFabricName\": \"a2aPrimaryFabric910\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/virtualNetworks/a2aVM910\",\r\n \"fabricSpecificDetails\": {\r\n \"instanceType\": \"AzureToAzure\",\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork910\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"recoveryFabricName\": \"a2aPrimaryFabric9100\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/virtualNetworks/a2aVM9100\",\r\n \"fabricSpecificDetails\": {\r\n \"instanceType\": \"AzureToAzure\",\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork9100\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e9343757-f1c3-42fd-9fdd-4885ac3dfcd6-2020-04-23 00:37:23Z-Ps" + "8613fcb1-6d9e-40f7-8feb-e9f21243044b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598643719)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203443719)\\/\",\"ClientRequestId\":\"e9343757-f1c3-42fd-9fdd-4885ac3dfcd6-2020-04-23 00:37:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZR8hiXTVp2HBIFmcgWM56CqznEbxT3EXhpuDqdO8vMg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812217781)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417017781)\\/\",\"ClientRequestId\":\"3acdd05f-7fed-47a9-8cf4-97afdb011de4-2021-04-19 07:03:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0+gbcH5kzEuKGN/4s6BhNB/3/BvSEPjbTMYIYlW5X1I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "485" + "490" ] }, "ResponseHeaders": { @@ -7505,40 +6928,37 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ARecoveryNetworkMapping910/operationresults/54331f3a-30be-4639-abfc-cc3cb7cb21eb?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ARecoveryNetworkMapping9100/operationresults/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "e9343757-f1c3-42fd-9fdd-4885ac3dfcd6-2020-04-23 00:37:23Z-Ps 4/23/2020 12:37:24 AM" + "8613fcb1-6d9e-40f7-8feb-e9f21243044b 4/19/2021 7:03:38 AM" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationOperationStatus/54331f3a-30be-4639-abfc-cc3cb7cb21eb?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationOperationStatus/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e9343757-f1c3-42fd-9fdd-4885ac3dfcd6-2020-04-23 00:37:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "8613fcb1-6d9e-40f7-8feb-e9f21243044b" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1191" ], "x-ms-correlation-request-id": [ - "bb3541b9-71a5-45d7-ba90-31fa3f425ed6" + "112e014a-6f8d-4f05-b72b-71ab57d267d9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003725Z:bb3541b9-71a5-45d7-ba90-31fa3f425ed6" + "CENTRALINDIA:20210419T070338Z:112e014a-6f8d-4f05-b72b-71ab57d267d9" ], "Date": [ - "Thu, 23 Apr 2020 00:37:24 GMT" + "Mon, 19 Apr 2021 07:03:37 GMT" ], "Expires": [ "-1" @@ -7551,25 +6971,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvNTQzMzFmM2EtMzBiZS00NjM5LWFiZmMtY2MzY2I3Y2IyMWViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy84MTM5NzllMS1iMGIyLTRjZjgtYjNmYS0wYzAxZWExNjg5YjI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdad84d2-79d5-4c6f-865e-0978c6309e03-2020-04-23 00:37:25Z-Ps" + "8613fcb1-6d9e-40f7-8feb-e9f21243044b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598645180)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203445180)\\/\",\"ClientRequestId\":\"cdad84d2-79d5-4c6f-865e-0978c6309e03-2020-04-23 00:37:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"B41BraaG1qGlUILP7JmFZpIJAr554yH3JLzB3EMetzs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812218318)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417018318)\\/\",\"ClientRequestId\":\"e48e5284-c1e2-4a7c-a213-d53baff08185-2021-04-19 07:03:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WyLDZTHFK0Lqn9S7ANzohbmNTzBAXJ9VcJbK6qnmvK0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7580,38 +7000,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11955" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "cdad84d2-79d5-4c6f-865e-0978c6309e03-2020-04-23 00:37:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8613fcb1-6d9e-40f7-8feb-e9f21243044b" ], "x-ms-correlation-request-id": [ - "ec5c3b67-d3ff-4762-86bd-f44c70f40963" + "92f9759c-3d89-467e-aab2-5320f3136e5f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003725Z:ec5c3b67-d3ff-4762-86bd-f44c70f40963" + "CENTRALINDIA:20210419T070338Z:92f9759c-3d89-467e-aab2-5320f3136e5f" ], "Date": [ - "Thu, 23 Apr 2020 00:37:24 GMT" + "Mon, 19 Apr 2021 07:03:38 GMT" ], "Content-Length": [ - "2269" + "2262" ], "Content-Type": [ "application/json" @@ -7620,29 +7037,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9343757-f1c3-42fd-9fdd-4885ac3dfcd6-2020-04-23 00:37:23Z-Ps ActivityId: bb3541b9-71a5-45d7-ba90-31fa3f425ed6\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"271ef775-d8bc-4378-94b7-4e6befb402a4\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2020-04-23T00:37:25.1142759Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"75bf7d7a-105c-480c-a536-bc5c125011db\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.network/virtualnetworks/a2arecoverynetwork910\",\r\n \"primaryNetworkName\": \"a2arecoverynetwork910\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm910/providers/microsoft.network/virtualnetworks/a2avm910\",\r\n \"recoveryNetworkName\": \"a2avm910\",\r\n \"primaryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"recoveryVmmName\": \"West US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"8613fcb1-6d9e-40f7-8feb-e9f21243044b ActivityId: 112e014a-6f8d-4f05-b72b-71ab57d267d9\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"e9d38d64-19e9-4126-8b54-5b8b5c2dca40\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-19T07:03:38.285886Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"f6a989eb-41a5-48f2-9cdc-5db9288cf08e\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.network/virtualnetworks/a2arecoverynetwork9100\",\r\n \"primaryNetworkName\": \"a2arecoverynetwork9100\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm9100/providers/microsoft.network/virtualnetworks/a2avm9100\",\r\n \"recoveryNetworkName\": \"a2avm9100\",\r\n \"primaryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvNTQzMzFmM2EtMzBiZS00NjM5LWFiZmMtY2MzY2I3Y2IyMWViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy84MTM5NzllMS1iMGIyLTRjZjgtYjNmYS0wYzAxZWExNjg5YjI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "433ecd9c-e609-44c2-a647-bda793aa2bb2-2020-04-23 00:37:25Z-Ps" + "4c216a92-790b-4143-94d2-b6d908a1ad06" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598645648)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203445648)\\/\",\"ClientRequestId\":\"433ecd9c-e609-44c2-a647-bda793aa2bb2-2020-04-23 00:37:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/wkkGlPg/D/uBw8vdEWiJ2NvI8lDIrVf62QG5D3DuW8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812218669)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417018669)\\/\",\"ClientRequestId\":\"b2feab31-6840-46f6-8c1d-acacd4dc0acd-2021-04-19 07:03:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WzVi1m0UVMQ5IG7vFPxk75/X0/puVSo23wCJO0EFkpc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7653,38 +7070,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11954" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "433ecd9c-e609-44c2-a647-bda793aa2bb2-2020-04-23 00:37:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4c216a92-790b-4143-94d2-b6d908a1ad06" ], "x-ms-correlation-request-id": [ - "a05e5a5c-57a9-4d91-a7e6-342d1c0418f5" + "5a710477-ade0-4ce7-b641-56d7c731bc11" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003726Z:a05e5a5c-57a9-4d91-a7e6-342d1c0418f5" + "CENTRALINDIA:20210419T070338Z:5a710477-ade0-4ce7-b641-56d7c731bc11" ], "Date": [ - "Thu, 23 Apr 2020 00:37:25 GMT" + "Mon, 19 Apr 2021 07:03:38 GMT" ], "Content-Length": [ - "2269" + "2262" ], "Content-Type": [ "application/json" @@ -7693,29 +7107,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9343757-f1c3-42fd-9fdd-4885ac3dfcd6-2020-04-23 00:37:23Z-Ps ActivityId: bb3541b9-71a5-45d7-ba90-31fa3f425ed6\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"271ef775-d8bc-4378-94b7-4e6befb402a4\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2020-04-23T00:37:25.1142759Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"75bf7d7a-105c-480c-a536-bc5c125011db\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.network/virtualnetworks/a2arecoverynetwork910\",\r\n \"primaryNetworkName\": \"a2arecoverynetwork910\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm910/providers/microsoft.network/virtualnetworks/a2avm910\",\r\n \"recoveryNetworkName\": \"a2avm910\",\r\n \"primaryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"recoveryVmmName\": \"West US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"8613fcb1-6d9e-40f7-8feb-e9f21243044b ActivityId: 112e014a-6f8d-4f05-b72b-71ab57d267d9\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"e9d38d64-19e9-4126-8b54-5b8b5c2dca40\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-19T07:03:38.285886Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"f6a989eb-41a5-48f2-9cdc-5db9288cf08e\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.network/virtualnetworks/a2arecoverynetwork9100\",\r\n \"primaryNetworkName\": \"a2arecoverynetwork9100\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm9100/providers/microsoft.network/virtualnetworks/a2avm9100\",\r\n \"recoveryNetworkName\": \"a2avm9100\",\r\n \"primaryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvNTQzMzFmM2EtMzBiZS00NjM5LWFiZmMtY2MzY2I3Y2IyMWViP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy84MTM5NzllMS1iMGIyLTRjZjgtYjNmYS0wYzAxZWExNjg5YjI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a089fe76-75ed-421a-8c17-5a6f6aa74f23-2020-04-23 00:37:46Z-Ps" + "14c21e8a-875d-4328-88d8-2da553c1dc3d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598666177)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203466177)\\/\",\"ClientRequestId\":\"a089fe76-75ed-421a-8c17-5a6f6aa74f23-2020-04-23 00:37:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mthsg7N0jY9aJtEjYTr5n2jRKhc38a/dPZctieqBnCQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812239019)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417039019)\\/\",\"ClientRequestId\":\"1ff55224-bde9-48fc-b8f8-e9f80363fa3a-2021-04-19 07:03:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GdVe1Wp+b14BMimA3dZx8PhnD9rdFQP3wEpVpvRK2Zk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7726,38 +7140,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11953" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a089fe76-75ed-421a-8c17-5a6f6aa74f23-2020-04-23 00:37:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "14c21e8a-875d-4328-88d8-2da553c1dc3d" ], "x-ms-correlation-request-id": [ - "8cb6eaf6-a6cc-4fe1-b51c-aeadb77e4161" + "0d9f642f-142c-443f-8e10-df57e43d0e18" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003746Z:8cb6eaf6-a6cc-4fe1-b51c-aeadb77e4161" + "CENTRALINDIA:20210419T070359Z:0d9f642f-142c-443f-8e10-df57e43d0e18" ], "Date": [ - "Thu, 23 Apr 2020 00:37:46 GMT" + "Mon, 19 Apr 2021 07:03:59 GMT" ], "Content-Length": [ - "2291" + "2284" ], "Content-Type": [ "application/json" @@ -7766,35 +7177,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9343757-f1c3-42fd-9fdd-4885ac3dfcd6-2020-04-23 00:37:23Z-Ps ActivityId: bb3541b9-71a5-45d7-ba90-31fa3f425ed6\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"271ef775-d8bc-4378-94b7-4e6befb402a4\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2020-04-23T00:37:25.1142759Z\",\r\n \"endTime\": \"2020-04-23T00:37:26.9588605Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"75bf7d7a-105c-480c-a536-bc5c125011db\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.network/virtualnetworks/a2arecoverynetwork910\",\r\n \"primaryNetworkName\": \"a2arecoverynetwork910\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm910/providers/microsoft.network/virtualnetworks/a2avm910\",\r\n \"recoveryNetworkName\": \"a2avm910\",\r\n \"primaryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"recoveryVmmName\": \"West US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"8613fcb1-6d9e-40f7-8feb-e9f21243044b ActivityId: 112e014a-6f8d-4f05-b72b-71ab57d267d9\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"e9d38d64-19e9-4126-8b54-5b8b5c2dca40\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-19T07:03:38.285886Z\",\r\n \"endTime\": \"2021-04-19T07:03:39.6046534Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"f6a989eb-41a5-48f2-9cdc-5db9288cf08e\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.network/virtualnetworks/a2arecoverynetwork9100\",\r\n \"primaryNetworkName\": \"a2arecoverynetwork9100\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm9100/providers/microsoft.network/virtualnetworks/a2avm9100\",\r\n \"recoveryNetworkName\": \"a2avm9100\",\r\n \"primaryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectedItems/a2aVM910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTkxMD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectedItems/a2aVM9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljOTEwMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAwL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk05MTAwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationPolicies/TestA2APolicy1910\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/virtualMachines/a2aVM910\",\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr\",\r\n \"vmDisks\": [],\r\n \"vmManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM910/providers/Microsoft.Compute/disks/a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Storage/storageAccounts/cache910\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationPolicies/TestA2APolicy19100\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/virtualMachines/a2aVM9100\",\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr\",\r\n \"vmDisks\": [],\r\n \"vmManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/disks/a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Storage/storageAccounts/cache9100\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps" + "958bd7f4-b202-4a07-9a31-117bb697ae43" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598667147)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203467147)\\/\",\"ClientRequestId\":\"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2foCs4Z4BxkRNyhjiHPkInhtANDHzKvA+X4/SDTEeKc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812239769)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417039769)\\/\",\"ClientRequestId\":\"b2c9fff7-fa18-4371-b96b-e7def8de1bbc-2021-04-19 07:03:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GpGGuzczPMxZNJJ022h3STbLg7Ng/S8vBGdB2mfKZ/k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1733" + "1749" ] }, "ResponseHeaders": { @@ -7805,41 +7216,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectedItems/a2aVM910/operationresults/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectedItems/a2aVM9100/operationresults/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationOperationStatus/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10" - ], - "X-Content-Type-Options": [ - "nosniff" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationOperationStatus/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10" ], - "x-ms-client-request-id": [ - "486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "X-Content-Type-Options": [ + "nosniff" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-client-request-id": [ + "958bd7f4-b202-4a07-9a31-117bb697ae43" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1190" ], "x-ms-correlation-request-id": [ - "3f1497e7-7455-4a82-b4a3-4dd4d39ace96" + "0d5aae5b-a258-4dac-a11c-abc1dac932f7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003748Z:3f1497e7-7455-4a82-b4a3-4dd4d39ace96" + "CENTRALINDIA:20210419T070400Z:0d5aae5b-a258-4dac-a11c-abc1dac932f7" ], "Date": [ - "Thu, 23 Apr 2020 00:37:48 GMT" + "Mon, 19 Apr 2021 07:04:00 GMT" ], "Expires": [ "-1" @@ -7852,25 +7260,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54946142-090f-4935-98ee-764106acac76-2020-04-23 00:37:49Z-Ps" + "958bd7f4-b202-4a07-9a31-117bb697ae43" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598669004)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203469004)\\/\",\"ClientRequestId\":\"54946142-090f-4935-98ee-764106acac76-2020-04-23 00:37:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5cCUAtYj1BuooXOtranTts4pzjfwwCiCSP0Fv+6ZQ0U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812240495)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417040495)\\/\",\"ClientRequestId\":\"74d997cd-9701-4675-9504-c121ce5d232b-2021-04-19 07:04:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hwT2z/d276qn+ROiOnongpiciDIjQRxh7W4cweKKx8w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7881,38 +7289,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11951" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "54946142-090f-4935-98ee-764106acac76-2020-04-23 00:37:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "958bd7f4-b202-4a07-9a31-117bb697ae43" ], "x-ms-correlation-request-id": [ - "a472cf02-79c6-4c24-9c4c-ba628fb42bb2" + "69b51ca0-4cbc-4d40-820a-bf1f3418b1c8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003749Z:a472cf02-79c6-4c24-9c4c-ba628fb42bb2" + "CENTRALINDIA:20210419T070400Z:69b51ca0-4cbc-4d40-820a-bf1f3418b1c8" ], "Date": [ - "Thu, 23 Apr 2020 00:37:48 GMT" + "Mon, 19 Apr 2021 07:04:00 GMT" ], "Content-Length": [ - "3379" + "3370" ], "Content-Type": [ "application/json" @@ -7921,29 +7326,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:48.9843109Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d670bd7-9d69-4797-ba2a-e4d4d4da0d1b-2020-04-23 00:37:49Z-Ps" + "29e80939-0d4a-45ac-8ed8-86742663aa5f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598669466)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203469466)\\/\",\"ClientRequestId\":\"9d670bd7-9d69-4797-ba2a-e4d4d4da0d1b-2020-04-23 00:37:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SRfbGIJRtbUZGXMRFiPg1yrykkznrS5EeDHntxlg5QE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812240861)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417040861)\\/\",\"ClientRequestId\":\"15774886-32b9-4d91-aeda-62a0a7226381-2021-04-19 07:04:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qwasNoJuChz2Enir18Clp8CEfJQ+HA6npxKSM68wAK4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7954,38 +7359,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11950" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9d670bd7-9d69-4797-ba2a-e4d4d4da0d1b-2020-04-23 00:37:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "29e80939-0d4a-45ac-8ed8-86742663aa5f" ], "x-ms-correlation-request-id": [ - "b72cf9ba-136b-43cb-8b42-7add68c75e75" + "ea9aefe3-501e-410e-9ee5-84ec04c1bc3c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003749Z:b72cf9ba-136b-43cb-8b42-7add68c75e75" + "CENTRALINDIA:20210419T070401Z:ea9aefe3-501e-410e-9ee5-84ec04c1bc3c" ], "Date": [ - "Thu, 23 Apr 2020 00:37:49 GMT" + "Mon, 19 Apr 2021 07:04:00 GMT" ], "Content-Length": [ - "3379" + "3370" ], "Content-Type": [ "application/json" @@ -7994,29 +7396,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "881c796f-573b-483b-a891-8500444150da-2020-04-23 00:38:10Z-Ps" + "cc82f2fc-453e-4608-8686-b253810f9bc1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598690106)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203490106)\\/\",\"ClientRequestId\":\"881c796f-573b-483b-a891-8500444150da-2020-04-23 00:38:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"B17m705rZVqnvP9J5d071q/v9ZKAEDKgTCbZqb2yXVg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812261229)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417061229)\\/\",\"ClientRequestId\":\"f825b426-70d8-43e5-8495-05ec5e972378-2021-04-19 07:04:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iz2zhErOongR4L8xGmn5bMHXLQIN2NzyDFmYmm4ajHQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8027,38 +7429,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11949" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "881c796f-573b-483b-a891-8500444150da-2020-04-23 00:38:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cc82f2fc-453e-4608-8686-b253810f9bc1" ], "x-ms-correlation-request-id": [ - "24fab874-53ec-4915-a9f6-8d4f89838c9c" + "bda054ab-ff68-4389-98cc-f39c70d83c98" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003810Z:24fab874-53ec-4915-a9f6-8d4f89838c9c" + "CENTRALINDIA:20210419T070421Z:bda054ab-ff68-4389-98cc-f39c70d83c98" ], "Date": [ - "Thu, 23 Apr 2020 00:38:09 GMT" + "Mon, 19 Apr 2021 07:04:20 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -8067,29 +7466,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8e865cce-96b9-4d19-ac4b-14f58028506b-2020-04-23 00:38:30Z-Ps" + "12c4dd4d-1955-4665-88da-c31a2b30ea7c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598710642)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203510642)\\/\",\"ClientRequestId\":\"8e865cce-96b9-4d19-ac4b-14f58028506b-2020-04-23 00:38:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tSHWEqXHwNJXgrNn1lgPqzMeQXzI0GU1L0g09lfZxQM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812281589)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417081589)\\/\",\"ClientRequestId\":\"a5756422-fcbb-44c3-948d-8440a890b8c4-2021-04-19 07:04:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gDi1SWGPRcO5gfJtotPHXYgtOXG6VFTsgkNOSFxZ5gQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8099,39 +7498,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "8e865cce-96b9-4d19-ac4b-14f58028506b-2020-04-23 00:38:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "12c4dd4d-1955-4665-88da-c31a2b30ea7c" ], "x-ms-correlation-request-id": [ - "03b1dbbf-10b4-4bc6-9894-a75288a203a0" + "042cac97-872d-4bb7-aa55-3f4a96725902" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003831Z:03b1dbbf-10b4-4bc6-9894-a75288a203a0" + "CENTRALINDIA:20210419T070441Z:042cac97-872d-4bb7-aa55-3f4a96725902" ], "Date": [ - "Thu, 23 Apr 2020 00:38:30 GMT" + "Mon, 19 Apr 2021 07:04:41 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -8140,29 +7536,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "519d8494-f690-43c4-aed4-896771aac68b-2020-04-23 00:38:51Z-Ps" + "c403650b-f118-448a-927f-cbed243e374e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598731276)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203531276)\\/\",\"ClientRequestId\":\"519d8494-f690-43c4-aed4-896771aac68b-2020-04-23 00:38:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kzu4zRFzaDzw0QF42wBIloWCLl82WO7rPMeNA/lL8pg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812301951)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417101951)\\/\",\"ClientRequestId\":\"3206587e-a47d-4139-93e7-fe70da5b39dc-2021-04-19 07:05:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PxqMrxM4AsHkxuNQTr9/OrSd/ojW+oKx5RxIbKTpxWk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8173,38 +7569,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11947" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "519d8494-f690-43c4-aed4-896771aac68b-2020-04-23 00:38:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c403650b-f118-448a-927f-cbed243e374e" ], "x-ms-correlation-request-id": [ - "ab29b3d8-6c88-429e-a4d2-3cdba61a65a8" + "48e3b419-2188-4d88-901b-101d86c0de3f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003853Z:ab29b3d8-6c88-429e-a4d2-3cdba61a65a8" + "CENTRALINDIA:20210419T070502Z:48e3b419-2188-4d88-901b-101d86c0de3f" ], "Date": [ - "Thu, 23 Apr 2020 00:38:52 GMT" + "Mon, 19 Apr 2021 07:05:01 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -8213,29 +7606,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8aee69fa-bcd4-4ad2-a218-e4940c321e7b-2020-04-23 00:39:13Z-Ps" + "11794459-daa6-412f-93fd-2e542601d19a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598753404)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203553404)\\/\",\"ClientRequestId\":\"8aee69fa-bcd4-4ad2-a218-e4940c321e7b-2020-04-23 00:39:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"S7LTf1xeZonsEruUHH236qEs6Fk1L5QVzxwwe8icJOY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812322367)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417122367)\\/\",\"ClientRequestId\":\"a71a5f6c-b92b-465f-8359-d4998ee3b195-2021-04-19 07:05:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HUFn9Pdg1y1Oypqj2u+1BrHhi87YVJhbQ8hL+EDumzI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8246,38 +7639,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11946" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "8aee69fa-bcd4-4ad2-a218-e4940c321e7b-2020-04-23 00:39:13Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "11794459-daa6-412f-93fd-2e542601d19a" ], "x-ms-correlation-request-id": [ - "6d132a3c-da4c-4275-9099-1f8b1a9e16f6" + "36a89b72-2b34-47d0-9073-3d4f3edcfccf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003913Z:6d132a3c-da4c-4275-9099-1f8b1a9e16f6" + "CENTRALINDIA:20210419T070522Z:36a89b72-2b34-47d0-9073-3d4f3edcfccf" ], "Date": [ - "Thu, 23 Apr 2020 00:39:13 GMT" + "Mon, 19 Apr 2021 07:05:22 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -8286,29 +7676,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ded7e5e6-58d5-4b53-a71b-e74cdd7a8039-2020-04-23 00:39:34Z-Ps" + "e9fc905f-168d-4a27-bc36-9265c54c96a3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598774014)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203574014)\\/\",\"ClientRequestId\":\"ded7e5e6-58d5-4b53-a71b-e74cdd7a8039-2020-04-23 00:39:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"q3kkh/l6fFzKZ54s1llEElkWNvFJy29bcfvq4eQYt98=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812342750)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417142750)\\/\",\"ClientRequestId\":\"bc56f510-9860-4260-b883-6f16b9b14016-2021-04-19 07:05:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PB7liThTQAiS95n/Fc4dzUHwteuZK4SUocrQsUM/m10=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8319,38 +7709,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11945" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ded7e5e6-58d5-4b53-a71b-e74cdd7a8039-2020-04-23 00:39:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e9fc905f-168d-4a27-bc36-9265c54c96a3" ], "x-ms-correlation-request-id": [ - "16e455c0-e55d-49fe-9433-f41c22b185fc" + "f661ad80-071b-4c6c-83e6-c22bc260c999" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003934Z:16e455c0-e55d-49fe-9433-f41c22b185fc" + "CENTRALINDIA:20210419T070543Z:f661ad80-071b-4c6c-83e6-c22bc260c999" ], "Date": [ - "Thu, 23 Apr 2020 00:39:34 GMT" + "Mon, 19 Apr 2021 07:05:42 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -8359,29 +7746,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67d39d8d-6c37-4165-8cf4-236071d210ad-2020-04-23 00:39:54Z-Ps" + "6c3efa9f-7c16-478d-aed7-428712007586" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598794999)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203594999)\\/\",\"ClientRequestId\":\"67d39d8d-6c37-4165-8cf4-236071d210ad-2020-04-23 00:39:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ANxDi9Jrlcb+Szd2LYe4N8EAwUVgXCsPLSkL1vL2HtE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812363129)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417163129)\\/\",\"ClientRequestId\":\"6b9407a8-c9a5-4b67-b620-4f305cc9af50-2021-04-19 07:06:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GCbjY1iTVg8zG5ApKNH3+QJNdsWspPsf9pEQ8SSrGDA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8391,39 +7778,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "67d39d8d-6c37-4165-8cf4-236071d210ad-2020-04-23 00:39:54Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "6c3efa9f-7c16-478d-aed7-428712007586" ], "x-ms-correlation-request-id": [ - "d529e144-1696-4df1-ba97-172f0d552c25" + "d24f187b-ebb2-4921-ba64-de3967213998" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T003956Z:d529e144-1696-4df1-ba97-172f0d552c25" + "CENTRALINDIA:20210419T070603Z:d24f187b-ebb2-4921-ba64-de3967213998" ], "Date": [ - "Thu, 23 Apr 2020 00:39:55 GMT" + "Mon, 19 Apr 2021 07:06:03 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -8432,29 +7816,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b540015f-db15-42c4-b08b-e20e7222f80c-2020-04-23 00:40:16Z-Ps" + "1790d9dd-8fc1-41d7-9f62-df07c7f3d7c2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598816647)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203616647)\\/\",\"ClientRequestId\":\"b540015f-db15-42c4-b08b-e20e7222f80c-2020-04-23 00:40:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KuKLRHd/YJa5nDFXbIFIRtx2YUSJEp8hVBJEen8YPM4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812383511)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417183511)\\/\",\"ClientRequestId\":\"2b2089a5-77b1-4343-b693-8a31065ca6e6-2021-04-19 07:06:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3fLtGQBiX/OhrMaYg5XskvRNKdrD52Wn5Ly+6DHy1yg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8465,38 +7849,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11943" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b540015f-db15-42c4-b08b-e20e7222f80c-2020-04-23 00:40:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1790d9dd-8fc1-41d7-9f62-df07c7f3d7c2" ], "x-ms-correlation-request-id": [ - "093169d0-e79c-4486-8c22-78a959640bdf" + "6fcbffff-d675-4594-8d19-3eeb5273071c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004018Z:093169d0-e79c-4486-8c22-78a959640bdf" + "CENTRALINDIA:20210419T070623Z:6fcbffff-d675-4594-8d19-3eeb5273071c" ], "Date": [ - "Thu, 23 Apr 2020 00:40:17 GMT" + "Mon, 19 Apr 2021 07:06:23 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -8505,29 +7886,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "302fff9a-a96a-4135-9277-b9f24299d536-2020-04-23 00:40:38Z-Ps" + "ee4ab897-70d9-44a5-b811-1d079a3432da" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598838385)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203638385)\\/\",\"ClientRequestId\":\"302fff9a-a96a-4135-9277-b9f24299d536-2020-04-23 00:40:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4EjPPOpKGUFz7i/dTb8m89jxZh3F/vdUlDj1PgstwEA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812403903)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417203903)\\/\",\"ClientRequestId\":\"64d6a648-c011-45d6-b292-16fc094ca9cd-2021-04-19 07:06:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"amZOrIEo/ETRyv1HEpF5PMhok5wn2eSnia/2rgkl0jw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8538,38 +7919,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11942" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "302fff9a-a96a-4135-9277-b9f24299d536-2020-04-23 00:40:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ee4ab897-70d9-44a5-b811-1d079a3432da" ], "x-ms-correlation-request-id": [ - "29a34803-7491-40bd-8cba-a7a1ceb8f60e" + "79733d99-81a6-434c-89f2-20f4a92ecad8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004038Z:29a34803-7491-40bd-8cba-a7a1ceb8f60e" + "CENTRALINDIA:20210419T070644Z:79733d99-81a6-434c-89f2-20f4a92ecad8" ], "Date": [ - "Thu, 23 Apr 2020 00:40:38 GMT" + "Mon, 19 Apr 2021 07:06:43 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -8578,29 +7956,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "460b2ca0-6fc6-4b1a-a1fc-a6c83d4231e5-2020-04-23 00:40:58Z-Ps" + "b659174d-ce31-46d2-bce9-68d1144c8df4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598858958)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203658958)\\/\",\"ClientRequestId\":\"460b2ca0-6fc6-4b1a-a1fc-a6c83d4231e5-2020-04-23 00:40:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wTTgLFQNySzGw7UnBml4pXyzUxMaJoKm1L29+cgS0ls=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812424280)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417224280)\\/\",\"ClientRequestId\":\"8a988904-85f0-4218-a333-c395672eee43-2021-04-19 07:07:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"afccw7S2yvXD0N4BT72zcG+qjth8SPnKUfKC91VVxSI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8611,38 +7989,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "11941" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "460b2ca0-6fc6-4b1a-a1fc-a6c83d4231e5-2020-04-23 00:40:58Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b659174d-ce31-46d2-bce9-68d1144c8df4" ], "x-ms-correlation-request-id": [ - "b5a4c1fa-7925-4656-b7f7-999dd9ff4d96" + "2391cd32-7795-4324-8aa2-ba57add7e5d8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004059Z:b5a4c1fa-7925-4656-b7f7-999dd9ff4d96" + "CENTRALINDIA:20210419T070704Z:2391cd32-7795-4324-8aa2-ba57add7e5d8" ], "Date": [ - "Thu, 23 Apr 2020 00:40:58 GMT" + "Mon, 19 Apr 2021 07:07:03 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -8651,29 +8026,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5583d98-d67f-4fdd-b2ef-2df8f9e07d4e-2020-04-23 00:41:19Z-Ps" + "8c261874-1e84-4a69-b8d8-3a80b70b8467" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598879575)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203679575)\\/\",\"ClientRequestId\":\"a5583d98-d67f-4fdd-b2ef-2df8f9e07d4e-2020-04-23 00:41:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"P4dwgXRZkOqRhsaSQZtAzTuPeyNhwCXGzcOnVFhl590=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812444635)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417244635)\\/\",\"ClientRequestId\":\"bfdfe769-c314-4d95-a196-f25aa58bd59a-2021-04-19 07:07:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dWOal0F1eo3icIEiFkhcF6nUW+O/wF+qu5pcpPCvBfg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8683,39 +8058,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a5583d98-d67f-4fdd-b2ef-2df8f9e07d4e-2020-04-23 00:41:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "8c261874-1e84-4a69-b8d8-3a80b70b8467" ], "x-ms-correlation-request-id": [ - "061d2d1f-e58a-41ee-b5d5-df2f86f7e913" + "4e027a14-8a52-4893-9f4e-7b129f447625" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004120Z:061d2d1f-e58a-41ee-b5d5-df2f86f7e913" + "CENTRALINDIA:20210419T070724Z:4e027a14-8a52-4893-9f4e-7b129f447625" ], "Date": [ - "Thu, 23 Apr 2020 00:41:19 GMT" + "Mon, 19 Apr 2021 07:07:24 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -8724,29 +8096,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab4d7c02-9ba9-4906-ac23-a3c74ecc0904-2020-04-23 00:41:40Z-Ps" + "894b509c-0204-4068-b328-91a1cc94e80b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598900215)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203700215)\\/\",\"ClientRequestId\":\"ab4d7c02-9ba9-4906-ac23-a3c74ecc0904-2020-04-23 00:41:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Y/zY/LkZhnajsh4RxSHs2MtoX0AneM+XslLBXp9AJXs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812464990)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417264990)\\/\",\"ClientRequestId\":\"952cfa42-067d-4d41-a5e0-338bcc29c972-2021-04-19 07:07:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"h5GKqbiGAUDFIbebTS+fREqCa7DchVvyb12+443pkdc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8757,38 +8129,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11939" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ab4d7c02-9ba9-4906-ac23-a3c74ecc0904-2020-04-23 00:41:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "894b509c-0204-4068-b328-91a1cc94e80b" ], "x-ms-correlation-request-id": [ - "6ee03197-c657-45ad-af53-36bef6c80fd9" + "ea1b6cdf-9209-4bef-8cca-1efc55484e7b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004142Z:6ee03197-c657-45ad-af53-36bef6c80fd9" + "CENTRALINDIA:20210419T070745Z:ea1b6cdf-9209-4bef-8cca-1efc55484e7b" ], "Date": [ - "Thu, 23 Apr 2020 00:41:41 GMT" + "Mon, 19 Apr 2021 07:07:44 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -8797,29 +8166,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e5c6ee8b-7033-48fc-b564-ef393e73d83d-2020-04-23 00:42:02Z-Ps" + "d0ca1846-899d-4a79-b500-5034a8372193" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598922308)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203722308)\\/\",\"ClientRequestId\":\"e5c6ee8b-7033-48fc-b564-ef393e73d83d-2020-04-23 00:42:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XOs9wrMcQYMT8HVx+ky2qtEbeaORJ4toVIDHBnr7/bU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812485352)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417285352)\\/\",\"ClientRequestId\":\"c2673552-1681-44cc-8787-79be8bf9520e-2021-04-19 07:08:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+NHRzn1e3GfbkdYoDUawxTx6+WmE26xsp4eT2c8lQNI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8830,38 +8199,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11938" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e5c6ee8b-7033-48fc-b564-ef393e73d83d-2020-04-23 00:42:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d0ca1846-899d-4a79-b500-5034a8372193" ], "x-ms-correlation-request-id": [ - "1653fe9a-75f2-477c-af2b-360b3f1251de" + "320a56f8-2934-42f2-aa92-3bbd39a6f8b5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004202Z:1653fe9a-75f2-477c-af2b-360b3f1251de" + "CENTRALINDIA:20210419T070805Z:320a56f8-2934-42f2-aa92-3bbd39a6f8b5" ], "Date": [ - "Thu, 23 Apr 2020 00:42:02 GMT" + "Mon, 19 Apr 2021 07:08:05 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -8870,29 +8236,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf58678e-0237-4385-8ee2-031f559fce14-2020-04-23 00:42:22Z-Ps" + "643097f0-56b3-480f-a5bb-4c00cf7af69c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598942873)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203742873)\\/\",\"ClientRequestId\":\"bf58678e-0237-4385-8ee2-031f559fce14-2020-04-23 00:42:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IWXjzJ6TOG178y20fFcmLHamXYqW/Pyg27nANc8UKkc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812505722)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417305722)\\/\",\"ClientRequestId\":\"cbec4246-8a05-435c-9d63-57a1fb8bd4a6-2021-04-19 07:08:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MH3Ya242ReL6zr0TPKebzhCgTx5Eg2cXKpx5nWA9TKw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8903,38 +8269,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "11937" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "bf58678e-0237-4385-8ee2-031f559fce14-2020-04-23 00:42:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "643097f0-56b3-480f-a5bb-4c00cf7af69c" ], "x-ms-correlation-request-id": [ - "3338abee-d661-4a07-b5b0-5ba537253e3d" + "c8ab0e17-e405-4c9a-a361-3a459d259bff" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004223Z:3338abee-d661-4a07-b5b0-5ba537253e3d" + "CENTRALINDIA:20210419T070826Z:c8ab0e17-e405-4c9a-a361-3a459d259bff" ], "Date": [ - "Thu, 23 Apr 2020 00:42:22 GMT" + "Mon, 19 Apr 2021 07:08:25 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -8943,29 +8306,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "396e3cfc-2e80-4731-bffa-d387f81a1f70-2020-04-23 00:42:43Z-Ps" + "792fa155-279a-41ee-81fc-5761b169d4c5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598963462)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203763462)\\/\",\"ClientRequestId\":\"396e3cfc-2e80-4731-bffa-d387f81a1f70-2020-04-23 00:42:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qnmbPX/7BolyULD/HHKlE5S/Q0kDZAK29e8ev5TIvQA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812526089)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417326089)\\/\",\"ClientRequestId\":\"c2e7f43b-4595-40c0-b3cd-ac46532b7e4f-2021-04-19 07:08:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QGpC9NXkWDR7pKJCSwTouw+6mA8VDBuyZpygOZUuAb8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8975,39 +8338,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "396e3cfc-2e80-4731-bffa-d387f81a1f70-2020-04-23 00:42:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" + "792fa155-279a-41ee-81fc-5761b169d4c5" ], "x-ms-correlation-request-id": [ - "d06a6fb3-edb2-4152-9654-283d49aa8664" + "cf159760-9144-4c71-90c9-2e3dff68f740" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004243Z:d06a6fb3-edb2-4152-9654-283d49aa8664" + "CENTRALINDIA:20210419T070846Z:cf159760-9144-4c71-90c9-2e3dff68f740" ], "Date": [ - "Thu, 23 Apr 2020 00:42:43 GMT" + "Mon, 19 Apr 2021 07:08:45 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -9016,29 +8376,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "113e09d8-9f14-4989-bda4-b6efe1e57a3c-2020-04-23 00:43:04Z-Ps" + "6ba703ae-fa9c-4686-ae9e-4c670bad4fd6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587598984012)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203784012)\\/\",\"ClientRequestId\":\"113e09d8-9f14-4989-bda4-b6efe1e57a3c-2020-04-23 00:43:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"18ogFsXbM0bHKKwDpHDgjlXFHBDKUdDUrk9mKbAkrQA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812546453)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417346453)\\/\",\"ClientRequestId\":\"83134401-94f9-4d67-8171-b10b32a01b4f-2021-04-19 07:09:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WZ+2tJJx31FgOQoG0Wa4LMtLpWEOcv6hQrYcwttEecM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9049,38 +8409,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" + "11935" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "113e09d8-9f14-4989-bda4-b6efe1e57a3c-2020-04-23 00:43:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6ba703ae-fa9c-4686-ae9e-4c670bad4fd6" ], "x-ms-correlation-request-id": [ - "03f160b5-9e09-463d-9495-1b9e5465c3ed" + "1643e856-60a6-44a5-8fe9-d9d9ad360bcd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004304Z:03f160b5-9e09-463d-9495-1b9e5465c3ed" + "CENTRALINDIA:20210419T070906Z:1643e856-60a6-44a5-8fe9-d9d9ad360bcd" ], "Date": [ - "Thu, 23 Apr 2020 00:43:04 GMT" + "Mon, 19 Apr 2021 07:09:06 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -9089,29 +8446,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "262fc25e-5248-4bf7-914b-3d092afd9bd0-2020-04-23 00:43:24Z-Ps" + "a98a3b61-7007-44c3-833b-27312398328b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599004605)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203804605)\\/\",\"ClientRequestId\":\"262fc25e-5248-4bf7-914b-3d092afd9bd0-2020-04-23 00:43:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HkycHthrmz7Y6UezxIQIxVk4Eh5cIVz4M3ne6pGDnGE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812566830)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417366830)\\/\",\"ClientRequestId\":\"868686ee-6933-4b52-830d-0f7648aaef4e-2021-04-19 07:09:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hUnwuqAkgPIjAlOwK38TLzUPgFmn8orjzNLJ4J7NMAQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9122,38 +8479,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" + "11934" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "262fc25e-5248-4bf7-914b-3d092afd9bd0-2020-04-23 00:43:24Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a98a3b61-7007-44c3-833b-27312398328b" ], "x-ms-correlation-request-id": [ - "3190ed5e-918c-4029-b45d-5b5a0dad99e4" + "21620cd7-9efa-4fba-bdb4-30bc476ed659" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004325Z:3190ed5e-918c-4029-b45d-5b5a0dad99e4" + "CENTRALINDIA:20210419T070927Z:21620cd7-9efa-4fba-bdb4-30bc476ed659" ], "Date": [ - "Thu, 23 Apr 2020 00:43:24 GMT" + "Mon, 19 Apr 2021 07:09:26 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -9162,29 +8516,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a8cb576-1b20-4345-8fcd-dccfd222dd97-2020-04-23 00:43:45Z-Ps" + "96946a38-06a0-4117-bd04-ce0faef46c14" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599025316)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203825316)\\/\",\"ClientRequestId\":\"6a8cb576-1b20-4345-8fcd-dccfd222dd97-2020-04-23 00:43:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"P3HlH4Yl00Uq5G+3qvWbQW/e7gGPd6iQc1KsT0rVk6M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812587212)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417387212)\\/\",\"ClientRequestId\":\"e4d68a44-68e9-4b9d-88bd-4ac7aaf79f4f-2021-04-19 07:09:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"COVP78+UOvQ051Trfz/Q+OlpXPqDsg1ZkTJPwujM2pY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9194,39 +8548,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "6a8cb576-1b20-4345-8fcd-dccfd222dd97-2020-04-23 00:43:45Z-Ps" + "96946a38-06a0-4117-bd04-ce0faef46c14" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" ], "x-ms-correlation-request-id": [ - "172d325a-425c-4ffd-8b83-1dd7d9fedb57" + "ec955d52-b99a-481d-b576-8b97c6960364" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004346Z:172d325a-425c-4ffd-8b83-1dd7d9fedb57" + "CENTRALINDIA:20210419T070947Z:ec955d52-b99a-481d-b576-8b97c6960364" ], "Date": [ - "Thu, 23 Apr 2020 00:43:45 GMT" + "Mon, 19 Apr 2021 07:09:46 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -9235,29 +8586,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "891e808c-6b36-4ee7-84fe-8cb7d9eb4c04-2020-04-23 00:44:06Z-Ps" + "b51511ad-f1b6-4ccd-9373-6adf2a928743" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599046438)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203846438)\\/\",\"ClientRequestId\":\"891e808c-6b36-4ee7-84fe-8cb7d9eb4c04-2020-04-23 00:44:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vGzSiJ2qbMipdqTjSxbFNDE//oiKvsr/n+2oie0ELsk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812607626)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417407626)\\/\",\"ClientRequestId\":\"8e1e63b1-3383-4bed-9ff0-6b022492f31d-2021-04-19 07:10:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0BFCn/RgD8tlrzpMCXMpZQv1y/yEXFL9WPu7BLSbifg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9267,39 +8618,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "891e808c-6b36-4ee7-84fe-8cb7d9eb4c04-2020-04-23 00:44:06Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" + "b51511ad-f1b6-4ccd-9373-6adf2a928743" ], "x-ms-correlation-request-id": [ - "987534c7-a35a-4273-b24f-237e57a72e39" + "7c0a5899-2e9a-4f08-adc7-be9a7fde5955" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004406Z:987534c7-a35a-4273-b24f-237e57a72e39" + "CENTRALINDIA:20210419T071009Z:7c0a5899-2e9a-4f08-adc7-be9a7fde5955" ], "Date": [ - "Thu, 23 Apr 2020 00:44:06 GMT" + "Mon, 19 Apr 2021 07:10:08 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -9308,29 +8656,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3a35ca1-b996-4858-adb7-f319b2d2438c-2020-04-23 00:44:27Z-Ps" + "b1d4e50a-34f9-4be2-909f-38b01e848ad1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599067092)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203867092)\\/\",\"ClientRequestId\":\"c3a35ca1-b996-4858-adb7-f319b2d2438c-2020-04-23 00:44:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FaMpuC03DM3x8YeUGLKG4Mqcq3V9o49/Mlc8O7VJzoA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812629124)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417429124)\\/\",\"ClientRequestId\":\"8ba2692a-aed4-40d3-b432-6927fb6b32f3-2021-04-19 07:10:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"18GIDv5Yc8CheY+uHmzFROqgngxXoOptjGpz7ObJgM4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9341,38 +8689,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" + "11931" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c3a35ca1-b996-4858-adb7-f319b2d2438c-2020-04-23 00:44:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b1d4e50a-34f9-4be2-909f-38b01e848ad1" ], "x-ms-correlation-request-id": [ - "3a787449-03c1-4279-9fbc-217c44c1b113" + "9a8f1f11-370b-482a-a3c1-e8e6413806bc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004428Z:3a787449-03c1-4279-9fbc-217c44c1b113" + "CENTRALINDIA:20210419T071029Z:9a8f1f11-370b-482a-a3c1-e8e6413806bc" ], "Date": [ - "Thu, 23 Apr 2020 00:44:27 GMT" + "Mon, 19 Apr 2021 07:10:28 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -9381,29 +8726,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3287a61a-3ab5-4184-8c23-d6422f4af04c-2020-04-23 00:44:48Z-Ps" + "0eac23a3-af5c-4cd2-a731-d80e88ae2446" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599088882)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203888882)\\/\",\"ClientRequestId\":\"3287a61a-3ab5-4184-8c23-d6422f4af04c-2020-04-23 00:44:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ziWdLlDaD7kAvAb4nqtW8faMY0HjdueqnA9TWmeR+lo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812649465)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417449465)\\/\",\"ClientRequestId\":\"9dc8f85f-1646-4251-b4be-b66fd00ed88c-2021-04-19 07:10:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wiB8OSOAwkjj5/VXu0ikC+eKJ5TYuUOip8mP2SH+rqg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9414,38 +8759,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" + "11930" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3287a61a-3ab5-4184-8c23-d6422f4af04c-2020-04-23 00:44:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0eac23a3-af5c-4cd2-a731-d80e88ae2446" ], "x-ms-correlation-request-id": [ - "22e0048d-6bed-45e0-8238-0a94a3d73d76" + "2b41e818-5ae3-45c8-94a7-3a95b0b5a534" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004449Z:22e0048d-6bed-45e0-8238-0a94a3d73d76" + "CENTRALINDIA:20210419T071049Z:2b41e818-5ae3-45c8-94a7-3a95b0b5a534" ], "Date": [ - "Thu, 23 Apr 2020 00:44:48 GMT" + "Mon, 19 Apr 2021 07:10:49 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -9454,29 +8796,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eddd101c-8149-4594-a891-1bbfe41ec6c6-2020-04-23 00:45:09Z-Ps" + "b8778783-3ed4-4911-a656-811fc10b3284" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599109521)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203909521)\\/\",\"ClientRequestId\":\"eddd101c-8149-4594-a891-1bbfe41ec6c6-2020-04-23 00:45:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"h8w6SngjQu2AmJ5LE07ho+krdqYE40FaRdpESb04t4U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812669815)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417469815)\\/\",\"ClientRequestId\":\"8f3675b6-ed81-4efc-b012-10e8e0ac9fbd-2021-04-19 07:11:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Gg21JmEfO0RUvWrYNQAeKIkSez36z0YBpciCItA7B2Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9487,38 +8829,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" + "11929" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "eddd101c-8149-4594-a891-1bbfe41ec6c6-2020-04-23 00:45:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b8778783-3ed4-4911-a656-811fc10b3284" ], "x-ms-correlation-request-id": [ - "9b248f9b-c80e-42cc-bdf1-d967b369547d" + "adbcf30f-a16e-460f-a101-7d01f32ed4b4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004509Z:9b248f9b-c80e-42cc-bdf1-d967b369547d" + "CENTRALINDIA:20210419T071110Z:adbcf30f-a16e-460f-a101-7d01f32ed4b4" ], "Date": [ - "Thu, 23 Apr 2020 00:45:09 GMT" + "Mon, 19 Apr 2021 07:11:09 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -9527,29 +8866,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f34a21b-182f-4366-a786-da8991f8e432-2020-04-23 00:45:30Z-Ps" + "811af324-fdad-4f0c-bd05-560337adb919" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599130080)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203930080)\\/\",\"ClientRequestId\":\"9f34a21b-182f-4366-a786-da8991f8e432-2020-04-23 00:45:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+mTgmzC2J5G6Z6bUoI72bYePBnpgn1Rww9K4mpEap2E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812690156)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417490156)\\/\",\"ClientRequestId\":\"ce6cf37c-fbc0-488a-bfd2-3507bc09ed52-2021-04-19 07:11:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9Ras0w2D5XLu3ZZwbfSVMxIb3xbWLN07ZXN5bXSv0a0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9559,39 +8898,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9f34a21b-182f-4366-a786-da8991f8e432-2020-04-23 00:45:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" + "811af324-fdad-4f0c-bd05-560337adb919" ], "x-ms-correlation-request-id": [ - "51f0eaa0-4f79-4c70-a0a1-dda884707baa" + "96d00554-8d6d-411c-b7b8-33a8316aae1a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004530Z:51f0eaa0-4f79-4c70-a0a1-dda884707baa" + "CENTRALINDIA:20210419T071130Z:96d00554-8d6d-411c-b7b8-33a8316aae1a" ], "Date": [ - "Thu, 23 Apr 2020 00:45:30 GMT" + "Mon, 19 Apr 2021 07:11:29 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -9600,29 +8936,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "885f9b67-4975-475c-8f89-0b48107e49b0-2020-04-23 00:45:50Z-Ps" + "d677c3fb-2d2b-4eca-a54e-b4c0754724ce" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599150920)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203950920)\\/\",\"ClientRequestId\":\"885f9b67-4975-475c-8f89-0b48107e49b0-2020-04-23 00:45:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fK5B6mkWVq384n/pa7hxKbPXEQfXOXCMZMNgrKTHf9c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812710497)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417510497)\\/\",\"ClientRequestId\":\"a9ec1af2-9dd2-4e2e-af59-05868e090add-2021-04-19 07:11:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4qez8Q6W2WRTCYMYsGw43na5G0WbGgp3ud7uSx6M4xo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9633,38 +8969,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" + "11927" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "885f9b67-4975-475c-8f89-0b48107e49b0-2020-04-23 00:45:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d677c3fb-2d2b-4eca-a54e-b4c0754724ce" ], "x-ms-correlation-request-id": [ - "6565e47a-eabd-4c5f-8f3f-c1670b78653a" + "9b49dbcb-0315-4f63-9ad9-10e959b1f963" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004552Z:6565e47a-eabd-4c5f-8f3f-c1670b78653a" + "CENTRALINDIA:20210419T071150Z:9b49dbcb-0315-4f63-9ad9-10e959b1f963" ], "Date": [ - "Thu, 23 Apr 2020 00:45:51 GMT" + "Mon, 19 Apr 2021 07:11:50 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -9673,29 +9006,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34a318da-d523-408f-95b7-48eadbe2427c-2020-04-23 00:46:12Z-Ps" + "1d31a951-db91-4ee8-9188-2b9021073166" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599172556)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203972556)\\/\",\"ClientRequestId\":\"34a318da-d523-408f-95b7-48eadbe2427c-2020-04-23 00:46:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Fh4peh/Edi+RawtCRWpmd0QujI4y4dP0PonJwXsQck8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812730856)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417530856)\\/\",\"ClientRequestId\":\"e34f72c7-4a8a-4f12-84db-d01ddd62897f-2021-04-19 07:12:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"U+95QWFNWpVDrKpA0ixuGF5FLOk1cVBmqVlz/UssERQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9706,38 +9039,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" + "11926" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "34a318da-d523-408f-95b7-48eadbe2427c-2020-04-23 00:46:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1d31a951-db91-4ee8-9188-2b9021073166" ], "x-ms-correlation-request-id": [ - "3e558d6d-b85b-413e-a088-16d89d87e52b" + "61224c48-50ba-4ff0-b810-6364824ae104" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004612Z:3e558d6d-b85b-413e-a088-16d89d87e52b" + "CENTRALINDIA:20210419T071211Z:61224c48-50ba-4ff0-b810-6364824ae104" ], "Date": [ - "Thu, 23 Apr 2020 00:46:12 GMT" + "Mon, 19 Apr 2021 07:12:10 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -9746,29 +9076,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "233a62ab-1165-4ac4-a0d8-d293b1f31d95-2020-04-23 00:46:33Z-Ps" + "c450804d-098f-461d-aeb3-06b71c3ee0c9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599193085)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588203993085)\\/\",\"ClientRequestId\":\"233a62ab-1165-4ac4-a0d8-d293b1f31d95-2020-04-23 00:46:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5Bz8mz/E9/aD8Vsv8tJfCAwaz8AawnbYUFg5kvSckYU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812751202)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417551202)\\/\",\"ClientRequestId\":\"b46601b3-0946-4d35-98e2-9a32b31c9510-2021-04-19 07:12:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wNa5n11BQJdzjnpBgjIY9r6AF0XqjLgHzi2LHuVnvhA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9779,38 +9109,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" + "11925" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "233a62ab-1165-4ac4-a0d8-d293b1f31d95-2020-04-23 00:46:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c450804d-098f-461d-aeb3-06b71c3ee0c9" ], "x-ms-correlation-request-id": [ - "842e5fe8-0835-47b6-b5cf-963792c802db" + "33e74183-c058-407d-91d9-1e5f100ba956" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004633Z:842e5fe8-0835-47b6-b5cf-963792c802db" + "CENTRALINDIA:20210419T071231Z:33e74183-c058-407d-91d9-1e5f100ba956" ], "Date": [ - "Thu, 23 Apr 2020 00:46:33 GMT" + "Mon, 19 Apr 2021 07:12:31 GMT" ], "Content-Length": [ - "3395" + "3386" ], "Content-Type": [ "application/json" @@ -9819,29 +9146,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12502c4f-69de-4d78-badb-eb130be2418b-2020-04-23 00:46:53Z-Ps" + "05f160ce-a66d-4762-bf50-c0be27fb5333" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599213883)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204013883)\\/\",\"ClientRequestId\":\"12502c4f-69de-4d78-badb-eb130be2418b-2020-04-23 00:46:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ombVIx9/+6WLgefCyoBITPbFyOPWizd1UXTQe3YPBpk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812771546)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417571546)\\/\",\"ClientRequestId\":\"d2b576f7-aa83-4f36-9713-41ef2a1b3f53-2021-04-19 07:12:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NFgNHq1mpNqBUor+dfHjqbHytRj78Pv1ID53+peoYAo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9851,39 +9178,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "12502c4f-69de-4d78-badb-eb130be2418b-2020-04-23 00:46:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" + "05f160ce-a66d-4762-bf50-c0be27fb5333" ], "x-ms-correlation-request-id": [ - "732afa47-5782-46cb-a0a2-2be4a7f6e1da" + "eba83177-1eed-4d96-98d0-2cbd4464d30f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004654Z:732afa47-5782-46cb-a0a2-2be4a7f6e1da" + "CENTRALINDIA:20210419T071251Z:eba83177-1eed-4d96-98d0-2cbd4464d30f" ], "Date": [ - "Thu, 23 Apr 2020 00:46:54 GMT" + "Mon, 19 Apr 2021 07:12:50 GMT" ], "Content-Length": [ - "3427" + "3386" ], "Content-Type": [ "application/json" @@ -9892,29 +9216,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e91cc738-2a62-47e9-8732-578a077396ae-2020-04-23 00:47:14Z-Ps" + "3990b996-ef2c-4242-98b1-04291510a3ec" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599234550)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204034550)\\/\",\"ClientRequestId\":\"e91cc738-2a62-47e9-8732-578a077396ae-2020-04-23 00:47:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"u0M99EhW2GeXbn89iS3vZh6G++gfwylVIWXpUYj3op8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812791920)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417591920)\\/\",\"ClientRequestId\":\"1d7ec9c6-8e10-44b7-9f35-94becdd4f575-2021-04-19 07:13:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rMBaistKrvfQfrqunXYl34cPTD3ePX/+Z8kxDdEu+Mc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9925,38 +9249,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" + "11923" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e91cc738-2a62-47e9-8732-578a077396ae-2020-04-23 00:47:14Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3990b996-ef2c-4242-98b1-04291510a3ec" ], "x-ms-correlation-request-id": [ - "9891ece8-42e4-4a13-883c-c458a70d4c13" + "3fe16e22-6abb-4b02-b0d9-628e41440419" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004714Z:9891ece8-42e4-4a13-883c-c458a70d4c13" + "CENTRALINDIA:20210419T071312Z:3fe16e22-6abb-4b02-b0d9-628e41440419" ], "Date": [ - "Thu, 23 Apr 2020 00:47:14 GMT" + "Mon, 19 Apr 2021 07:13:11 GMT" ], "Content-Length": [ - "3427" + "3386" ], "Content-Type": [ "application/json" @@ -9965,29 +9286,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "88d7a6ec-c23a-420a-a6de-2ed0f9558bed-2020-04-23 00:47:35Z-Ps" + "7b57e422-b0d6-4ff7-bcd2-d2bc4b77832f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599255095)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204055095)\\/\",\"ClientRequestId\":\"88d7a6ec-c23a-420a-a6de-2ed0f9558bed-2020-04-23 00:47:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9qfufHcHgSMQxA9SIhH6KKp2eYd3pkb16vrsLTl8Tf0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812812279)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417612279)\\/\",\"ClientRequestId\":\"4d322739-87c5-403a-b0fe-6110b93a3334-2021-04-19 07:13:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xbIN5GixcSNw7TgVl5/dAJJV1YDkBYe4UbGoCp8IWQk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9998,38 +9319,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" + "11922" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "88d7a6ec-c23a-420a-a6de-2ed0f9558bed-2020-04-23 00:47:35Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7b57e422-b0d6-4ff7-bcd2-d2bc4b77832f" ], "x-ms-correlation-request-id": [ - "b9de54b5-8581-43b6-8034-8284f5e70f0e" + "b9561d9a-12c6-494d-a386-1092ebf2b40a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004735Z:b9de54b5-8581-43b6-8034-8284f5e70f0e" + "CENTRALINDIA:20210419T071332Z:b9561d9a-12c6-494d-a386-1092ebf2b40a" ], "Date": [ - "Thu, 23 Apr 2020 00:47:35 GMT" + "Mon, 19 Apr 2021 07:13:31 GMT" ], "Content-Length": [ - "3427" + "3418" ], "Content-Type": [ "application/json" @@ -10038,29 +9356,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b2016a6-858d-43a4-8397-ebdffa82a7d3-2020-04-23 00:47:55Z-Ps" + "06d22eae-97a0-4657-81fa-8d15476cdbfd" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599275621)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204075621)\\/\",\"ClientRequestId\":\"8b2016a6-858d-43a4-8397-ebdffa82a7d3-2020-04-23 00:47:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"a34IKTogdBcVrMg/ZxUtItrtL5+DeTDLJ3Cc0c8yJWY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812832668)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417632668)\\/\",\"ClientRequestId\":\"2d3f51c3-0e7d-44ee-8f92-f032637864ea-2021-04-19 07:13:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"q9a2RRIR6d5+fUGAz/N5KYigAsjYhaZzG9STEwm7yUo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10071,38 +9389,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" + "11921" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "8b2016a6-858d-43a4-8397-ebdffa82a7d3-2020-04-23 00:47:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "06d22eae-97a0-4657-81fa-8d15476cdbfd" ], "x-ms-correlation-request-id": [ - "694adb81-d0b7-41fc-a5a4-465206211373" + "d3d0987c-45e0-4b1c-ac02-0436f8641a48" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004756Z:694adb81-d0b7-41fc-a5a4-465206211373" + "CENTRALINDIA:20210419T071352Z:d3d0987c-45e0-4b1c-ac02-0436f8641a48" ], "Date": [ - "Thu, 23 Apr 2020 00:47:55 GMT" + "Mon, 19 Apr 2021 07:13:52 GMT" ], "Content-Length": [ - "3427" + "3418" ], "Content-Type": [ "application/json" @@ -10111,29 +9426,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21efb4ec-e0d1-46f6-a9c5-ebfabce2abab-2020-04-23 00:48:16Z-Ps" + "769de310-e58d-40d3-b83a-fc58976871b3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599296216)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204096216)\\/\",\"ClientRequestId\":\"21efb4ec-e0d1-46f6-a9c5-ebfabce2abab-2020-04-23 00:48:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Kn1kl8gD0bC1QqqvYIuYAs92AfB6MEhv0ZyoR1FZbys=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812853013)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417653013)\\/\",\"ClientRequestId\":\"78fce5dd-782d-41e1-ba49-623c499f6b0a-2021-04-19 07:14:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lg/tFz5Q72qiikAvEqaHxZWUl2tN70OAe9riEGB1+yU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10143,39 +9458,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "21efb4ec-e0d1-46f6-a9c5-ebfabce2abab-2020-04-23 00:48:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" + "769de310-e58d-40d3-b83a-fc58976871b3" ], "x-ms-correlation-request-id": [ - "65466823-f890-45df-861a-9efe13a8ad13" + "378e216f-3a86-4f3a-885e-8d0997d72271" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004817Z:65466823-f890-45df-861a-9efe13a8ad13" + "CENTRALINDIA:20210419T071413Z:378e216f-3a86-4f3a-885e-8d0997d72271" ], "Date": [ - "Thu, 23 Apr 2020 00:48:16 GMT" + "Mon, 19 Apr 2021 07:14:12 GMT" ], "Content-Length": [ - "3427" + "3418" ], "Content-Type": [ "application/json" @@ -10184,29 +9496,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3bb9ac7e-d7a7-4d3b-957f-60f00f1c1d01-2020-04-23 00:48:37Z-Ps" + "ae775c6e-7e2a-4d88-8246-ff28cdd3731a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599317212)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204117212)\\/\",\"ClientRequestId\":\"3bb9ac7e-d7a7-4d3b-957f-60f00f1c1d01-2020-04-23 00:48:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IkRTOlftEdaakM/0K+tBUYpXezTh4+vqRrtcsNkBBdA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812873359)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417673359)\\/\",\"ClientRequestId\":\"076a77b3-c5b7-4ab7-9177-1d17a5004bd7-2021-04-19 07:14:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"y6twJHG0PI3AHCBkV6iK92TzOD2bpEl3D7HTkjyTziM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10217,38 +9529,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" + "11919" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3bb9ac7e-d7a7-4d3b-957f-60f00f1c1d01-2020-04-23 00:48:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ae775c6e-7e2a-4d88-8246-ff28cdd3731a" ], "x-ms-correlation-request-id": [ - "51ce36db-a801-444b-8541-ba86174455a9" + "cf0a9891-6103-412f-a059-942ea7f77e5b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004838Z:51ce36db-a801-444b-8541-ba86174455a9" + "CENTRALINDIA:20210419T071433Z:cf0a9891-6103-412f-a059-942ea7f77e5b" ], "Date": [ - "Thu, 23 Apr 2020 00:48:37 GMT" + "Mon, 19 Apr 2021 07:14:33 GMT" ], "Content-Length": [ - "3427" + "3418" ], "Content-Type": [ "application/json" @@ -10257,29 +9566,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9324f958-c06b-4814-925c-c417921c8c68-2020-04-23 00:48:58Z-Ps" + "23ef68b4-f1e1-40c1-8936-841db48f26a0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599338874)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204138874)\\/\",\"ClientRequestId\":\"9324f958-c06b-4814-925c-c417921c8c68-2020-04-23 00:48:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"q1N6KruDVbHzCtjEIxy+HbH9ELY2/K+ERGV6mTkYh+c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812893712)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417693712)\\/\",\"ClientRequestId\":\"7745ccf2-5a2d-463e-aeb0-8bb3faa1d3de-2021-04-19 07:14:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gmu9iC2Xu/jE+sUxdkF2LuceINniH0vp5QYUrtyz2nk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10290,38 +9599,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" + "11918" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9324f958-c06b-4814-925c-c417921c8c68-2020-04-23 00:48:58Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "23ef68b4-f1e1-40c1-8936-841db48f26a0" ], "x-ms-correlation-request-id": [ - "3c65872b-9f6b-42e8-8b55-c6e7dfff1ca5" + "35c301b3-020e-475a-a79f-a46b6667d95b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004859Z:3c65872b-9f6b-42e8-8b55-c6e7dfff1ca5" + "CENTRALINDIA:20210419T071453Z:35c301b3-020e-475a-a79f-a46b6667d95b" ], "Date": [ - "Thu, 23 Apr 2020 00:48:58 GMT" + "Mon, 19 Apr 2021 07:14:53 GMT" ], "Content-Length": [ - "3427" + "3418" ], "Content-Type": [ "application/json" @@ -10330,29 +9636,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc0e7480-b23a-499d-ac64-d966b5d29f69-2020-04-23 00:49:19Z-Ps" + "6f8ecd3c-9372-43fc-aea9-73d86f04fc0e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599359532)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204159532)\\/\",\"ClientRequestId\":\"dc0e7480-b23a-499d-ac64-d966b5d29f69-2020-04-23 00:49:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yK61oIsU3lMFbJB360ROk963r3/QHd7hcCv2LhCAYZk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812914051)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417714051)\\/\",\"ClientRequestId\":\"28f02561-ae4d-4873-aae7-87338e017b66-2021-04-19 07:15:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"T5DEvmGzW6lDE5IFlngqEreckaHox8nyjWQDjiKItWw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10363,38 +9669,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" + "11917" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "dc0e7480-b23a-499d-ac64-d966b5d29f69-2020-04-23 00:49:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6f8ecd3c-9372-43fc-aea9-73d86f04fc0e" ], "x-ms-correlation-request-id": [ - "43e386a3-4b39-42f1-9e82-00939c59c93c" + "a8e8da66-bda9-4533-b761-2e6b5aaef0a4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004919Z:43e386a3-4b39-42f1-9e82-00939c59c93c" + "CENTRALINDIA:20210419T071514Z:a8e8da66-bda9-4533-b761-2e6b5aaef0a4" ], "Date": [ - "Thu, 23 Apr 2020 00:49:19 GMT" + "Mon, 19 Apr 2021 07:15:13 GMT" ], "Content-Length": [ - "3427" + "3418" ], "Content-Type": [ "application/json" @@ -10403,29 +9706,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcd63fa3-077e-45a9-a940-649c5e0858f9-2020-04-23 00:49:40Z-Ps" + "257d8ba9-b154-48a0-8276-2813ca8fbd19" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599380143)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204180143)\\/\",\"ClientRequestId\":\"bcd63fa3-077e-45a9-a940-649c5e0858f9-2020-04-23 00:49:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"J7Wwd3f8ewwGW6mvx3Gvl3vdQ9hjnQ9yhUqdKX+UFhg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812934445)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417734445)\\/\",\"ClientRequestId\":\"911dfc8c-e78e-4b23-92a4-e00332657823-2021-04-19 07:15:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fwq/TnpELyxgtPyAgEA7iDHbVAPLVFIIwI/P/KaGZQc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10435,39 +9738,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "bcd63fa3-077e-45a9-a940-649c5e0858f9-2020-04-23 00:49:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" + "257d8ba9-b154-48a0-8276-2813ca8fbd19" ], "x-ms-correlation-request-id": [ - "55d1a457-eb0a-4e7d-9ffb-625e7e9a5876" + "393732fd-bf8c-482b-a41e-826421d96d37" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T004940Z:55d1a457-eb0a-4e7d-9ffb-625e7e9a5876" + "CENTRALINDIA:20210419T071534Z:393732fd-bf8c-482b-a41e-826421d96d37" ], "Date": [ - "Thu, 23 Apr 2020 00:49:40 GMT" + "Mon, 19 Apr 2021 07:15:34 GMT" ], "Content-Length": [ - "3427" + "3418" ], "Content-Type": [ "application/json" @@ -10476,29 +9776,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2564bbca-0b4b-4a46-b034-d427cbbfa327-2020-04-23 00:50:00Z-Ps" + "392489a2-9502-4f69-9fef-2e8d43a337aa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599400767)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204200767)\\/\",\"ClientRequestId\":\"2564bbca-0b4b-4a46-b034-d427cbbfa327-2020-04-23 00:50:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"i8BIbgbhzcZQKaBFRNy9KFC2wSvtl35vE1JD2jEXthg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812954885)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417754885)\\/\",\"ClientRequestId\":\"e811c90b-147f-4f2c-90c9-3ca1f32f78f2-2021-04-19 07:15:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oKyqV60m3jLigHDdUqojA5PG6DoaKB6M1GrfxRATphg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10509,38 +9809,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" + "11915" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2564bbca-0b4b-4a46-b034-d427cbbfa327-2020-04-23 00:50:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "392489a2-9502-4f69-9fef-2e8d43a337aa" ], "x-ms-correlation-request-id": [ - "c0d80ba6-3320-4f00-871a-22f3c3cb310d" + "c13c528a-2bd0-4f3d-9882-4f3a4c5b90ce" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005016Z:c0d80ba6-3320-4f00-871a-22f3c3cb310d" + "CENTRALINDIA:20210419T071555Z:c13c528a-2bd0-4f3d-9882-4f3a4c5b90ce" ], "Date": [ - "Thu, 23 Apr 2020 00:50:16 GMT" + "Mon, 19 Apr 2021 07:15:54 GMT" ], "Content-Length": [ - "3427" + "3418" ], "Content-Type": [ "application/json" @@ -10549,29 +9846,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYzNjYjZmM2YtMDc5Yy00NWZjLWIxMzMtMjE4YjczN2RmNWI5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fbde92ed-ff90-445c-93a7-5487a6c5ffc2-2020-04-23 00:50:36Z-Ps" + "259f7f9b-6798-4ca1-b0fa-70424518984e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599436991)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204236991)\\/\",\"ClientRequestId\":\"fbde92ed-ff90-445c-93a7-5487a6c5ffc2-2020-04-23 00:50:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qd1e6VQU+Ih9+OSgHKVxr/KsBA3iR4XpagGj1KkC0rI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812975249)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417775249)\\/\",\"ClientRequestId\":\"13e5e674-534e-476f-b36f-c60c3be154d2-2021-04-19 07:16:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MUH0PRtJ69eL5o8GhAlOtdOKcpXIP+B/TQnBk2vseyA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10581,39 +9878,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "fbde92ed-ff90-445c-93a7-5487a6c5ffc2-2020-04-23 00:50:36Z-Ps" + "259f7f9b-6798-4ca1-b0fa-70424518984e" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11914" ], "x-ms-correlation-request-id": [ - "3ffd2b51-cea3-40a8-a06d-5c3a626098b2" + "1cb5016f-8fbb-4301-805e-127d1ebe2fdb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005037Z:3ffd2b51-cea3-40a8-a06d-5c3a626098b2" + "CENTRALINDIA:20210419T071615Z:1cb5016f-8fbb-4301-805e-127d1ebe2fdb" ], "Date": [ - "Thu, 23 Apr 2020 00:50:37 GMT" + "Mon, 19 Apr 2021 07:16:14 GMT" ], "Content-Length": [ - "3473" + "3418" ], "Content-Type": [ "application/json" @@ -10622,29 +9916,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T00:37:49.1406389Z\",\r\n \"endTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-04-23T00:38:02.9327732Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-04-23T00:46:48.5417472Z\",\r\n \"endTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-04-23T00:46:48.7448597Z\",\r\n \"endTime\": \"2020-04-23T00:50:23.5390742Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2020-04-23T00:50:23.5390742Z\",\r\n \"endTime\": \"2020-04-23T00:50:23.6797068Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47bb2371-7a17-407d-92ba-efe64f754651-2020-04-23 00:50:37Z-Ps" + "baba9d5a-0954-47b2-a8aa-e2fb9a639540" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599437596)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204237596)\\/\",\"ClientRequestId\":\"47bb2371-7a17-407d-92ba-efe64f754651-2020-04-23 00:50:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9sy8CcA0QLN11nE9NeOJYWQpqfGNjv/n+eJDoFpAkT8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618812995604)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417795604)\\/\",\"ClientRequestId\":\"b6afc6f5-cdf5-466e-9b20-488d0522642d-2021-04-19 07:16:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HR3umJ5XDiSzW62I+YbMXPWW5TyxkEu3Ia10w1auKi4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10655,38 +9949,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" + "11913" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-request-id": [ - "4e66b710-00c3-4b75-8e42-d25d84404468" - ], "x-ms-client-request-id": [ - "47bb2371-7a17-407d-92ba-efe64f754651-2020-04-23 00:50:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "baba9d5a-0954-47b2-a8aa-e2fb9a639540" ], "x-ms-correlation-request-id": [ - "4e66b710-00c3-4b75-8e42-d25d84404468" + "cfe61895-6be7-45bc-9d7f-dc7fcaf380f6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005038Z:4e66b710-00c3-4b75-8e42-d25d84404468" + "CENTRALINDIA:20210419T071637Z:cfe61895-6be7-45bc-9d7f-dc7fcaf380f6" ], "Date": [ - "Thu, 23 Apr 2020 00:50:37 GMT" + "Mon, 19 Apr 2021 07:16:37 GMT" ], "Content-Length": [ - "7480" + "3418" ], "Content-Type": [ "application/json" @@ -10695,29 +9986,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02bb2541-50ac-49b4-8d5b-76d4b89322cb-2020-04-23 00:50:48Z-Ps" + "b85bdf11-4484-4765-831b-47c737177712" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599448176)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204248176)\\/\",\"ClientRequestId\":\"02bb2541-50ac-49b4-8d5b-76d4b89322cb-2020-04-23 00:50:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3KQuw4dfI9+OHOuhIeLO9xBnNmglMj7r43P4shcm1AI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813017280)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417817280)\\/\",\"ClientRequestId\":\"47ca8651-c2d0-4e8c-bf52-2b64ca0151bf-2021-04-19 07:16:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"40tlQYvxTNmaS21Lt80wvTnB7w4AuS5liSIDMjFNa7E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10728,38 +10019,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" + "11912" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-request-id": [ - "aef50807-3a6f-4a7a-a69a-337f2c5ada70" - ], "x-ms-client-request-id": [ - "02bb2541-50ac-49b4-8d5b-76d4b89322cb-2020-04-23 00:50:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b85bdf11-4484-4765-831b-47c737177712" ], "x-ms-correlation-request-id": [ - "aef50807-3a6f-4a7a-a69a-337f2c5ada70" + "7bb689a9-b52b-4f8e-9bb1-77ce910e31c0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005114Z:aef50807-3a6f-4a7a-a69a-337f2c5ada70" + "CENTRALINDIA:20210419T071657Z:7bb689a9-b52b-4f8e-9bb1-77ce910e31c0" ], "Date": [ - "Thu, 23 Apr 2020 00:51:14 GMT" + "Mon, 19 Apr 2021 07:16:56 GMT" ], "Content-Length": [ - "7480" + "3418" ], "Content-Type": [ "application/json" @@ -10768,29 +10056,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy85OTU2OWFmZC01Yjc5LTRjNzQtYWZhZS1iMjdiYjc4Mjc1ZDI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f318fe0-e99a-4492-997d-8b52e041cd8c-2020-04-23 00:51:24Z-Ps" + "99715ec9-3645-48ec-a7aa-4f47378d3e6d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599484864)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204284864)\\/\",\"ClientRequestId\":\"3f318fe0-e99a-4492-997d-8b52e041cd8c-2020-04-23 00:51:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Y0iIjWWwJ/wal3lr51LdYJyTZV7/IHxesNS/ZhMxo3Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813037631)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417837631)\\/\",\"ClientRequestId\":\"00744e2c-a536-4340-a03f-a641627cdcb6-2021-04-19 07:17:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KyZVMLdujIXz/WRwARjJDonBuLNyenT9vSVcfLYgl20=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10800,39 +10088,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-request-id": [ - "a69f98f4-2e14-45f8-b152-15d916d40430" - ], "x-ms-client-request-id": [ - "3f318fe0-e99a-4492-997d-8b52e041cd8c-2020-04-23 00:51:24Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" + "99715ec9-3645-48ec-a7aa-4f47378d3e6d" ], "x-ms-correlation-request-id": [ - "a69f98f4-2e14-45f8-b152-15d916d40430" + "f0dc7b83-9973-4caf-9bc0-406eb92851c8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005131Z:a69f98f4-2e14-45f8-b152-15d916d40430" + "CENTRALINDIA:20210419T071717Z:f0dc7b83-9973-4caf-9bc0-406eb92851c8" ], "Date": [ - "Thu, 23 Apr 2020 00:51:31 GMT" + "Mon, 19 Apr 2021 07:17:17 GMT" ], "Content-Length": [ - "7480" + "3462" ], "Content-Type": [ "application/json" @@ -10841,29 +10126,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:04:00.3467145Z\",\r\n \"endTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-19T07:04:14.6372306Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-19T07:13:31.3451449Z\",\r\n \"endTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-19T07:13:31.4801446Z\",\r\n \"endTime\": \"2021-04-19T07:17:04.741518Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2021-04-19T07:17:04.741518Z\",\r\n \"endTime\": \"2021-04-19T07:17:04.8965188Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0e69b53-9b60-42f1-bb8e-ef996f985412-2020-04-23 00:51:42Z-Ps" + "52b16c2f-d198-457b-abdb-7da0280f102d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599502110)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204302110)\\/\",\"ClientRequestId\":\"c0e69b53-9b60-42f1-bb8e-ef996f985412-2020-04-23 00:51:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TWmIPlfM+U+Y5knJ2rUw1RUwJu/fHf0DE7HkGktKeX0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813038009)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417838009)\\/\",\"ClientRequestId\":\"5b86c2af-79fd-4fac-bac3-54920d876c6d-2021-04-19 07:17:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BHPphI99bl72YNuNwiBSGIlIhes6fI1uI2BktGLUl9E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10874,38 +10159,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" + "11910" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f69940ff-1542-47d6-9a05-83f3f50dcd8a" + "546488a1-3be3-432f-86a7-be7e13af5930" ], "x-ms-client-request-id": [ - "c0e69b53-9b60-42f1-bb8e-ef996f985412-2020-04-23 00:51:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "52b16c2f-d198-457b-abdb-7da0280f102d" ], "x-ms-correlation-request-id": [ - "f69940ff-1542-47d6-9a05-83f3f50dcd8a" + "546488a1-3be3-432f-86a7-be7e13af5930" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005142Z:f69940ff-1542-47d6-9a05-83f3f50dcd8a" + "CENTRALINDIA:20210419T071718Z:546488a1-3be3-432f-86a7-be7e13af5930" ], "Date": [ - "Thu, 23 Apr 2020 00:51:42 GMT" + "Mon, 19 Apr 2021 07:17:18 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -10914,29 +10196,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8bb55fb-dd12-48c6-a54f-905d9c21c8ad-2020-04-23 00:51:52Z-Ps" + "a512b87e-d6a8-46b7-b700-1e857fa76d77" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599512819)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204312819)\\/\",\"ClientRequestId\":\"e8bb55fb-dd12-48c6-a54f-905d9c21c8ad-2020-04-23 00:51:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Tkfd2HyOH7HxRUTUb/PetI3yBxUAqRTc8Ed21T5DnPs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813048446)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417848446)\\/\",\"ClientRequestId\":\"950eadfe-be1e-4d2f-8a41-ad7c251f0b5c-2021-04-19 07:17:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3xLbHxu3JdJf2x4Q1a/HdwR1JSxKHA+vORvX7NTYoNM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10947,38 +10229,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" + "11909" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "cd26dd9a-8053-42c9-adc9-dd3685c03da7" + "83b99e15-00a5-4888-b828-f35b2452d2f5" ], "x-ms-client-request-id": [ - "e8bb55fb-dd12-48c6-a54f-905d9c21c8ad-2020-04-23 00:51:52Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a512b87e-d6a8-46b7-b700-1e857fa76d77" ], "x-ms-correlation-request-id": [ - "cd26dd9a-8053-42c9-adc9-dd3685c03da7" + "83b99e15-00a5-4888-b828-f35b2452d2f5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005154Z:cd26dd9a-8053-42c9-adc9-dd3685c03da7" + "CENTRALINDIA:20210419T071728Z:83b99e15-00a5-4888-b828-f35b2452d2f5" ], "Date": [ - "Thu, 23 Apr 2020 00:51:53 GMT" + "Mon, 19 Apr 2021 07:17:28 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -10987,29 +10266,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04b9e2d5-fcd9-4d17-85a4-0927a1908152-2020-04-23 00:52:04Z-Ps" + "66bf1829-1a45-4dd3-9931-fd3704af8daa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599524337)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204324337)\\/\",\"ClientRequestId\":\"04b9e2d5-fcd9-4d17-85a4-0927a1908152-2020-04-23 00:52:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"i1HW5w6QmmHxedzjemOkRvoeIgJWPTuFVWVsFUTcJ5Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813058794)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417858794)\\/\",\"ClientRequestId\":\"1c7ed126-002e-40a6-b3c9-dab8a360fee2-2021-04-19 07:17:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IqmWfUtOwPCdtLpCftx8VetUpnoobb/+nZEYRoGwtyg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11019,39 +10298,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11908" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2dc7d29d-1408-47da-87bc-916ea5941654" + "39b5c094-f15a-496c-8e17-f346b1fc3a77" ], "x-ms-client-request-id": [ - "04b9e2d5-fcd9-4d17-85a4-0927a1908152-2020-04-23 00:52:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" + "66bf1829-1a45-4dd3-9931-fd3704af8daa" ], "x-ms-correlation-request-id": [ - "2dc7d29d-1408-47da-87bc-916ea5941654" + "39b5c094-f15a-496c-8e17-f346b1fc3a77" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005206Z:2dc7d29d-1408-47da-87bc-916ea5941654" + "CENTRALINDIA:20210419T071739Z:39b5c094-f15a-496c-8e17-f346b1fc3a77" ], "Date": [ - "Thu, 23 Apr 2020 00:52:06 GMT" + "Mon, 19 Apr 2021 07:17:38 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -11060,29 +10336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "458508ec-3a31-42e8-84f6-fd531768e260-2020-04-23 00:52:17Z-Ps" + "870b41e9-d45c-4288-9038-cf6e2b26941b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599537007)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204337007)\\/\",\"ClientRequestId\":\"458508ec-3a31-42e8-84f6-fd531768e260-2020-04-23 00:52:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nliz70oCbl/29R5ZRqispyDQze9IFmUbdEGrT4S5zdY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813069145)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417869145)\\/\",\"ClientRequestId\":\"ec33b915-1f9c-4ca5-aa21-84908eb0511e-2021-04-19 07:17:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eXNOJb6vyRU05GhMrb1CX6ZL9i1UZzz2iv9jJFqTGpI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11093,38 +10369,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" + "11907" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "286f9068-4af0-418d-9478-cab574e05041" + "bea70f45-7e44-4ae8-9397-ca62fa9225fa" ], "x-ms-client-request-id": [ - "458508ec-3a31-42e8-84f6-fd531768e260-2020-04-23 00:52:17Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "870b41e9-d45c-4288-9038-cf6e2b26941b" ], "x-ms-correlation-request-id": [ - "286f9068-4af0-418d-9478-cab574e05041" + "bea70f45-7e44-4ae8-9397-ca62fa9225fa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005218Z:286f9068-4af0-418d-9478-cab574e05041" + "CENTRALINDIA:20210419T071749Z:bea70f45-7e44-4ae8-9397-ca62fa9225fa" ], "Date": [ - "Thu, 23 Apr 2020 00:52:18 GMT" + "Mon, 19 Apr 2021 07:17:48 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -11133,29 +10406,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fea4433e-9e9f-4e05-9e8d-720677a83af8-2020-04-23 00:52:28Z-Ps" + "24acb9bd-1997-41fe-821a-b506d0658f9f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599548693)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204348693)\\/\",\"ClientRequestId\":\"fea4433e-9e9f-4e05-9e8d-720677a83af8-2020-04-23 00:52:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"82pSYtIY22Vk6tA6pCokXAdH5FKHLELKpHBD+Pn4UoE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813079496)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417879496)\\/\",\"ClientRequestId\":\"d5a40a65-824b-46a1-a999-950683bf1d0a-2021-04-19 07:17:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QNDp93d85/lhNC414kaDlyHArJBXqgt2o+rfrYucutg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11166,38 +10439,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" + "11906" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1a231d16-cfc2-49f0-91ec-acdd41135f8b" + "2be25b6e-b5ce-4293-b483-a18385c8be7f" ], "x-ms-client-request-id": [ - "fea4433e-9e9f-4e05-9e8d-720677a83af8-2020-04-23 00:52:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "24acb9bd-1997-41fe-821a-b506d0658f9f" ], "x-ms-correlation-request-id": [ - "1a231d16-cfc2-49f0-91ec-acdd41135f8b" + "2be25b6e-b5ce-4293-b483-a18385c8be7f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005229Z:1a231d16-cfc2-49f0-91ec-acdd41135f8b" + "CENTRALINDIA:20210419T071759Z:2be25b6e-b5ce-4293-b483-a18385c8be7f" ], "Date": [ - "Thu, 23 Apr 2020 00:52:28 GMT" + "Mon, 19 Apr 2021 07:17:59 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -11206,29 +10476,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74a2365c-5e25-4edf-a35e-27e48ff480b8-2020-04-23 00:52:39Z-Ps" + "5789801a-14f3-41dc-99c2-6eaac53b6bf2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599559161)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204359161)\\/\",\"ClientRequestId\":\"74a2365c-5e25-4edf-a35e-27e48ff480b8-2020-04-23 00:52:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EEpaHwYeV4qh5LyGd/KYCVBDIc4uOs7tKA1k/QgKIw0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813089860)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417889860)\\/\",\"ClientRequestId\":\"44461ab8-3f19-42c2-9aef-fab43aebfc15-2021-04-19 07:18:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ae4Yck9tEllyZinLQ+uN8IcbP4hoMERHjaoqntyfnlY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11239,38 +10509,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" + "11905" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "603dc9c1-741c-464b-b311-1a7a9d77f966" + "8e53880b-9b7a-4128-9650-dc1481e5b268" ], "x-ms-client-request-id": [ - "74a2365c-5e25-4edf-a35e-27e48ff480b8-2020-04-23 00:52:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5789801a-14f3-41dc-99c2-6eaac53b6bf2" ], "x-ms-correlation-request-id": [ - "603dc9c1-741c-464b-b311-1a7a9d77f966" + "8e53880b-9b7a-4128-9650-dc1481e5b268" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005239Z:603dc9c1-741c-464b-b311-1a7a9d77f966" + "CENTRALINDIA:20210419T071810Z:8e53880b-9b7a-4128-9650-dc1481e5b268" ], "Date": [ - "Thu, 23 Apr 2020 00:52:39 GMT" + "Mon, 19 Apr 2021 07:18:09 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -11279,29 +10546,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "849f2f74-e100-4ef4-856c-47dc30b25123-2020-04-23 00:52:49Z-Ps" + "226b7f8c-7d43-46c0-a164-22245cb418c8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599569643)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204369643)\\/\",\"ClientRequestId\":\"849f2f74-e100-4ef4-856c-47dc30b25123-2020-04-23 00:52:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EwxwtJx2jdvNfcaA5SjY1nQ2qOnMjCEGRFXaGkwfXx8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813100193)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417900193)\\/\",\"ClientRequestId\":\"cee46bd6-6226-42dc-aec4-3e754fa78f79-2021-04-19 07:18:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Z4VoNCaVNBO/lhxrJbd1rOJNkVN3P3O6WZSt0fTjQyU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11312,38 +10579,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" + "11904" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "724ba215-c86f-448a-a772-91db52feb145" + "4a78b388-223c-4cc9-8d7f-f1b67ce9ee69" ], "x-ms-client-request-id": [ - "849f2f74-e100-4ef4-856c-47dc30b25123-2020-04-23 00:52:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "226b7f8c-7d43-46c0-a164-22245cb418c8" ], "x-ms-correlation-request-id": [ - "724ba215-c86f-448a-a772-91db52feb145" + "4a78b388-223c-4cc9-8d7f-f1b67ce9ee69" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005249Z:724ba215-c86f-448a-a772-91db52feb145" + "CENTRALINDIA:20210419T071820Z:4a78b388-223c-4cc9-8d7f-f1b67ce9ee69" ], "Date": [ - "Thu, 23 Apr 2020 00:52:49 GMT" + "Mon, 19 Apr 2021 07:18:19 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -11352,29 +10616,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26cb5493-260c-4cbb-8cbf-b46ee8845394-2020-04-23 00:53:00Z-Ps" + "cdf59192-1ee1-410f-bdfb-b269dcece896" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599580127)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204380127)\\/\",\"ClientRequestId\":\"26cb5493-260c-4cbb-8cbf-b46ee8845394-2020-04-23 00:53:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MtIHYq66g8HSGVra/EE1Wh4OwIia7IZh3RmTML1Ykac=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813110547)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417910547)\\/\",\"ClientRequestId\":\"42c3f6e4-903f-4570-a174-dcc7c0600c4c-2021-04-19 07:18:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mDFJHJUDShPS+5EejQlmVnwBma8tTnIKX/J7YreFVyI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11385,38 +10649,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" + "11903" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9876b95c-09aa-4c0b-96b8-2fbc37769158" + "55e448e2-d2a3-40ce-ab3b-103dd48326ef" ], "x-ms-client-request-id": [ - "26cb5493-260c-4cbb-8cbf-b46ee8845394-2020-04-23 00:53:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cdf59192-1ee1-410f-bdfb-b269dcece896" ], "x-ms-correlation-request-id": [ - "9876b95c-09aa-4c0b-96b8-2fbc37769158" + "55e448e2-d2a3-40ce-ab3b-103dd48326ef" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005300Z:9876b95c-09aa-4c0b-96b8-2fbc37769158" + "CENTRALINDIA:20210419T071830Z:55e448e2-d2a3-40ce-ab3b-103dd48326ef" ], "Date": [ - "Thu, 23 Apr 2020 00:52:59 GMT" + "Mon, 19 Apr 2021 07:18:29 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -11425,29 +10686,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0ac0227-72c9-45b2-a815-dd7f75aa5a5f-2020-04-23 00:53:10Z-Ps" + "bb117b41-db62-47d4-877e-58648aa3e058" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599590650)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204390650)\\/\",\"ClientRequestId\":\"b0ac0227-72c9-45b2-a815-dd7f75aa5a5f-2020-04-23 00:53:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"a9UyOFrtujwa3GtqfeEZVxgHcIqvR0z8ku0NZ3eXb4c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813120901)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417920901)\\/\",\"ClientRequestId\":\"3656697a-ade6-4337-bb1b-55cb659b13f9-2021-04-19 07:18:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ATwhQ96nPeji8m3A1YlTA0PO5QOrLHGoLBOW4R8E+cI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11458,38 +10719,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" + "11902" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9af1430b-53d0-4e77-bc48-f4918cb0fa14" + "3a4a2d51-2c27-48c3-b063-fb2cba2b870c" ], "x-ms-client-request-id": [ - "b0ac0227-72c9-45b2-a815-dd7f75aa5a5f-2020-04-23 00:53:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bb117b41-db62-47d4-877e-58648aa3e058" ], "x-ms-correlation-request-id": [ - "9af1430b-53d0-4e77-bc48-f4918cb0fa14" + "3a4a2d51-2c27-48c3-b063-fb2cba2b870c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005310Z:9af1430b-53d0-4e77-bc48-f4918cb0fa14" + "CENTRALINDIA:20210419T071841Z:3a4a2d51-2c27-48c3-b063-fb2cba2b870c" ], "Date": [ - "Thu, 23 Apr 2020 00:53:09 GMT" + "Mon, 19 Apr 2021 07:18:41 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -11498,29 +10756,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56134b2d-97ea-4227-832f-3cfcef0b419b-2020-04-23 00:53:21Z-Ps" + "da8ecd9f-1732-4c61-927e-f16e3f3a2984" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599601134)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204401134)\\/\",\"ClientRequestId\":\"56134b2d-97ea-4227-832f-3cfcef0b419b-2020-04-23 00:53:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zWYwCB4hKX58Z9VbzDN/3ReeGfjWuOwPcxRMQYRccvI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813131246)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417931246)\\/\",\"ClientRequestId\":\"e0a76c36-dc90-4dcf-84c3-a0c0b35a3ec3-2021-04-19 07:18:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"31cSw4Gg6siigEDca+itjLd77KsLeilZbIb5aF54BNI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11530,39 +10788,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11901" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7465ad50-51a7-492a-8869-421a8de466b6" + "827b1465-b447-4c77-b816-79614fec16c7" ], "x-ms-client-request-id": [ - "56134b2d-97ea-4227-832f-3cfcef0b419b-2020-04-23 00:53:21Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" + "da8ecd9f-1732-4c61-927e-f16e3f3a2984" ], "x-ms-correlation-request-id": [ - "7465ad50-51a7-492a-8869-421a8de466b6" + "827b1465-b447-4c77-b816-79614fec16c7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005321Z:7465ad50-51a7-492a-8869-421a8de466b6" + "CENTRALINDIA:20210419T071851Z:827b1465-b447-4c77-b816-79614fec16c7" ], "Date": [ - "Thu, 23 Apr 2020 00:53:21 GMT" + "Mon, 19 Apr 2021 07:18:51 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -11571,29 +10826,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "860e5a8e-29dc-42fa-8b1a-49ed743291c9-2020-04-23 00:53:31Z-Ps" + "6ebfee64-2dcb-452e-bb2d-910caf458e34" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599611615)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204411615)\\/\",\"ClientRequestId\":\"860e5a8e-29dc-42fa-8b1a-49ed743291c9-2020-04-23 00:53:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7Nq89AUrioYtH0F+wz0UyR9sY9ufuufb/8n0BwziY78=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813141593)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417941593)\\/\",\"ClientRequestId\":\"82ea11a2-2a50-4f19-91aa-1e6057a42d3b-2021-04-19 07:19:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Dl6ibVVX7DVT1cTCzBWBrHlqtSXOs9fYltUUQP1cn/s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11604,38 +10859,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" + "11900" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "573e8fb4-8a5b-434a-a006-753cb0ae8810" + "1a2b5322-2484-49e8-9486-ba863db95b85" ], "x-ms-client-request-id": [ - "860e5a8e-29dc-42fa-8b1a-49ed743291c9-2020-04-23 00:53:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6ebfee64-2dcb-452e-bb2d-910caf458e34" ], "x-ms-correlation-request-id": [ - "573e8fb4-8a5b-434a-a006-753cb0ae8810" + "1a2b5322-2484-49e8-9486-ba863db95b85" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005333Z:573e8fb4-8a5b-434a-a006-753cb0ae8810" + "CENTRALINDIA:20210419T071901Z:1a2b5322-2484-49e8-9486-ba863db95b85" ], "Date": [ - "Thu, 23 Apr 2020 00:53:33 GMT" + "Mon, 19 Apr 2021 07:19:00 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -11644,29 +10896,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41c70f7f-0c5a-432c-8284-5036cb9287c0-2020-04-23 00:53:43Z-Ps" + "971aa3b9-a155-44aa-9463-2e4193ab9cf3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599623333)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204423333)\\/\",\"ClientRequestId\":\"41c70f7f-0c5a-432c-8284-5036cb9287c0-2020-04-23 00:53:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZhCbe8O+OyqYGcrZoO6tO3/N996lbdLaPHV8DJoEaFg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813151939)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417951939)\\/\",\"ClientRequestId\":\"7a80e9cb-919d-431b-8736-464c3dbbbf38-2021-04-19 07:19:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LXZ0U2DnJ9l0eMGAi7yTUHoInZ4ZmXFlN2KlM5mWWQs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11677,38 +10929,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11896" + "11899" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "56add4be-313f-4813-aab5-4c9dabcbab81" + "ece7f6bc-5fcc-49d9-b0e5-9964b025fd67" ], "x-ms-client-request-id": [ - "41c70f7f-0c5a-432c-8284-5036cb9287c0-2020-04-23 00:53:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "971aa3b9-a155-44aa-9463-2e4193ab9cf3" ], "x-ms-correlation-request-id": [ - "56add4be-313f-4813-aab5-4c9dabcbab81" + "ece7f6bc-5fcc-49d9-b0e5-9964b025fd67" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005343Z:56add4be-313f-4813-aab5-4c9dabcbab81" + "CENTRALINDIA:20210419T071912Z:ece7f6bc-5fcc-49d9-b0e5-9964b025fd67" ], "Date": [ - "Thu, 23 Apr 2020 00:53:43 GMT" + "Mon, 19 Apr 2021 07:19:11 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -11717,29 +10966,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56647bb2-02e7-4dbe-835c-cef97938c0c6-2020-04-23 00:53:53Z-Ps" + "2c8d9a82-9676-445c-bc71-f3a41d47dc58" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599633806)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204433806)\\/\",\"ClientRequestId\":\"56647bb2-02e7-4dbe-835c-cef97938c0c6-2020-04-23 00:53:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1aOx/ct/yRj6puYUrgbx21hkIe8jq430lHYNld6u3Mk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813162294)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417962294)\\/\",\"ClientRequestId\":\"1ec597e6-bac9-4598-8f0a-d06a17fd4523-2021-04-19 07:19:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2TpFWRPcCRpvd5slyL+8pQ7a5wkwy1wviDUXXWUSWWQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11750,38 +10999,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" + "11898" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "585d0d08-b733-4c96-8e59-51e56947062c" + "90d14612-6b7c-4d23-a725-d8cd69e7118c" ], "x-ms-client-request-id": [ - "56647bb2-02e7-4dbe-835c-cef97938c0c6-2020-04-23 00:53:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2c8d9a82-9676-445c-bc71-f3a41d47dc58" ], "x-ms-correlation-request-id": [ - "585d0d08-b733-4c96-8e59-51e56947062c" + "90d14612-6b7c-4d23-a725-d8cd69e7118c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005354Z:585d0d08-b733-4c96-8e59-51e56947062c" + "CENTRALINDIA:20210419T071922Z:90d14612-6b7c-4d23-a725-d8cd69e7118c" ], "Date": [ - "Thu, 23 Apr 2020 00:53:53 GMT" + "Mon, 19 Apr 2021 07:19:21 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -11790,29 +11036,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ec19909-900c-4304-a834-a2c3815f9dae-2020-04-23 00:54:04Z-Ps" + "7a20cab1-fd38-445f-b5ad-a1a2dd759de4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599644319)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204444319)\\/\",\"ClientRequestId\":\"6ec19909-900c-4304-a834-a2c3815f9dae-2020-04-23 00:54:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZSAtwvCGvhgdkhyNbtfIEu3ok5KqfeJWyM6Vy81rONk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813172650)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417972650)\\/\",\"ClientRequestId\":\"51b7ea4c-60ee-477c-9832-dd4030b0694b-2021-04-19 07:19:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"s2fYlsPhy4nbiSG+QUdthzRnUJ6XL0rUTXZt18CvfFk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11823,38 +11069,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11894" + "11897" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6e591562-575e-4ef1-8ad6-9f5f853341e2" + "6490072a-aee6-4253-83fe-eb04f5766fcb" ], "x-ms-client-request-id": [ - "6ec19909-900c-4304-a834-a2c3815f9dae-2020-04-23 00:54:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7a20cab1-fd38-445f-b5ad-a1a2dd759de4" ], "x-ms-correlation-request-id": [ - "6e591562-575e-4ef1-8ad6-9f5f853341e2" + "6490072a-aee6-4253-83fe-eb04f5766fcb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005405Z:6e591562-575e-4ef1-8ad6-9f5f853341e2" + "CENTRALINDIA:20210419T071932Z:6490072a-aee6-4253-83fe-eb04f5766fcb" ], "Date": [ - "Thu, 23 Apr 2020 00:54:05 GMT" + "Mon, 19 Apr 2021 07:19:31 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -11863,29 +11106,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23697378-a36e-448e-8341-133a3cf38aba-2020-04-23 00:54:15Z-Ps" + "16ac1db6-ca6a-450e-8d68-cb6584edad75" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599655657)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204455657)\\/\",\"ClientRequestId\":\"23697378-a36e-448e-8341-133a3cf38aba-2020-04-23 00:54:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ccGEIoWwGftlnqCDHzlrdye3ODOwzn+BcaLvMzV2LZc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813182981)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417982981)\\/\",\"ClientRequestId\":\"37d828c6-cf2b-42e1-91af-bb3a6b8fe335-2021-04-19 07:19:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PXKf5polUyJCRM9tHKwCOV0AT5Cf4yUE+vAOQI9n/ic=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11896,38 +11139,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" + "11896" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3439f4df-3348-4887-84ba-34b5a405fa32" + "4a979b19-4b97-498f-836a-ed86b155b4e1" ], "x-ms-client-request-id": [ - "23697378-a36e-448e-8341-133a3cf38aba-2020-04-23 00:54:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "16ac1db6-ca6a-450e-8d68-cb6584edad75" ], "x-ms-correlation-request-id": [ - "3439f4df-3348-4887-84ba-34b5a405fa32" + "4a979b19-4b97-498f-836a-ed86b155b4e1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005415Z:3439f4df-3348-4887-84ba-34b5a405fa32" + "CENTRALINDIA:20210419T071943Z:4a979b19-4b97-498f-836a-ed86b155b4e1" ], "Date": [ - "Thu, 23 Apr 2020 00:54:15 GMT" + "Mon, 19 Apr 2021 07:19:43 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -11936,29 +11176,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0687af37-1124-4097-bb5c-91dd0724a517-2020-04-23 00:54:26Z-Ps" + "01d2a499-46bf-4b3b-a281-ffe62f3236cd" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599666146)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204466146)\\/\",\"ClientRequestId\":\"0687af37-1124-4097-bb5c-91dd0724a517-2020-04-23 00:54:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fxveNXb5S+49mAZurx2X252lAwRJ/uPEDklIqV+Rlok=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813193326)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619417993326)\\/\",\"ClientRequestId\":\"e913a02d-bbcd-4537-a87f-cffb4e01147e-2021-04-19 07:19:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8mcv7LezMlE7X2wQNklv7a1iVUa4fhI+kylovDERnsU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11969,38 +11209,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" + "11895" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ac3e1338-d8e6-4bc0-9dd3-d859f2af12ab" + "4aeb8049-f014-43eb-bfcf-e487c473ae0a" ], "x-ms-client-request-id": [ - "0687af37-1124-4097-bb5c-91dd0724a517-2020-04-23 00:54:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "01d2a499-46bf-4b3b-a281-ffe62f3236cd" ], "x-ms-correlation-request-id": [ - "ac3e1338-d8e6-4bc0-9dd3-d859f2af12ab" + "4aeb8049-f014-43eb-bfcf-e487c473ae0a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005426Z:ac3e1338-d8e6-4bc0-9dd3-d859f2af12ab" + "CENTRALINDIA:20210419T071953Z:4aeb8049-f014-43eb-bfcf-e487c473ae0a" ], "Date": [ - "Thu, 23 Apr 2020 00:54:26 GMT" + "Mon, 19 Apr 2021 07:19:53 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -12009,29 +11246,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0523227-a05f-47b7-b6f5-47142e79ff12-2020-04-23 00:54:36Z-Ps" + "d668c17d-f71e-46cb-b3cf-f14287fd30e5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599676708)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204476708)\\/\",\"ClientRequestId\":\"c0523227-a05f-47b7-b6f5-47142e79ff12-2020-04-23 00:54:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4Frcg/rGANG0ivmlRdJ3JIWcI58FVNMDS5uHpUOzFVw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813203698)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418003698)\\/\",\"ClientRequestId\":\"8992fea6-f6d9-4404-83e1-86bfde843f58-2021-04-19 07:20:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bL4lKw2aQdLQV08jLCd8W/XaXPRN7awCnRYFib0qXTI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12041,39 +11278,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11894" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a7fba09d-c059-4119-8e3e-b73f5ac08dea" + "42f048aa-29c2-48c7-b7e7-731ebef29e47" ], "x-ms-client-request-id": [ - "c0523227-a05f-47b7-b6f5-47142e79ff12-2020-04-23 00:54:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" + "d668c17d-f71e-46cb-b3cf-f14287fd30e5" ], "x-ms-correlation-request-id": [ - "a7fba09d-c059-4119-8e3e-b73f5ac08dea" + "42f048aa-29c2-48c7-b7e7-731ebef29e47" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005437Z:a7fba09d-c059-4119-8e3e-b73f5ac08dea" + "CENTRALINDIA:20210419T072003Z:42f048aa-29c2-48c7-b7e7-731ebef29e47" ], "Date": [ - "Thu, 23 Apr 2020 00:54:36 GMT" + "Mon, 19 Apr 2021 07:20:03 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -12082,29 +11316,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d00a321c-3dca-4470-8902-f63e42d6a7ca-2020-04-23 00:54:47Z-Ps" + "468e8198-3e66-4e4e-a924-79f0abd9ad32" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599687190)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204487190)\\/\",\"ClientRequestId\":\"d00a321c-3dca-4470-8902-f63e42d6a7ca-2020-04-23 00:54:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uFqiEu0cFvEXs+IxaV2nke9jXQuU7DZViYTpLJpns58=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813214029)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418014029)\\/\",\"ClientRequestId\":\"9b0315bb-073b-4bb3-a26a-6e86060444b2-2021-04-19 07:20:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"goOjJblNnbSli8Wd839N5mF+ieVWMGSM0tVpr6ZTfSc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12115,38 +11349,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" + "11893" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c2c8356f-6242-4bc1-9202-e043c4995c3f" + "d485c8d4-afe5-4a99-b596-4cd374d0b468" ], "x-ms-client-request-id": [ - "d00a321c-3dca-4470-8902-f63e42d6a7ca-2020-04-23 00:54:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "468e8198-3e66-4e4e-a924-79f0abd9ad32" ], "x-ms-correlation-request-id": [ - "c2c8356f-6242-4bc1-9202-e043c4995c3f" + "d485c8d4-afe5-4a99-b596-4cd374d0b468" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005448Z:c2c8356f-6242-4bc1-9202-e043c4995c3f" + "CENTRALINDIA:20210419T072014Z:d485c8d4-afe5-4a99-b596-4cd374d0b468" ], "Date": [ - "Thu, 23 Apr 2020 00:54:48 GMT" + "Mon, 19 Apr 2021 07:20:13 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -12155,29 +11386,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc2d058c-a167-4513-a9d5-784a737b6db4-2020-04-23 00:54:59Z-Ps" + "5ea2fa4e-333e-45fd-adbf-c883ef49bcfb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599699062)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204499062)\\/\",\"ClientRequestId\":\"dc2d058c-a167-4513-a9d5-784a737b6db4-2020-04-23 00:54:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DG+ZEs8fLCE7Va2pEW3YOdf6TMzGSNZRfPdk25Zvt1M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813224376)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418024376)\\/\",\"ClientRequestId\":\"bfb93dd7-8e65-4269-a3ed-9d905e8d89e6-2021-04-19 07:20:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tglMa2mjS6l89Uolg5g1lh8HG2cqmv6WICFkAy63vXg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12188,38 +11419,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" + "11892" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "44e5320f-bcdc-423a-9010-2bd93e67f3d9" + "4293f788-24eb-4ec5-99da-0c55e7641880" ], "x-ms-client-request-id": [ - "dc2d058c-a167-4513-a9d5-784a737b6db4-2020-04-23 00:54:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5ea2fa4e-333e-45fd-adbf-c883ef49bcfb" ], "x-ms-correlation-request-id": [ - "44e5320f-bcdc-423a-9010-2bd93e67f3d9" + "4293f788-24eb-4ec5-99da-0c55e7641880" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005459Z:44e5320f-bcdc-423a-9010-2bd93e67f3d9" + "CENTRALINDIA:20210419T072024Z:4293f788-24eb-4ec5-99da-0c55e7641880" ], "Date": [ - "Thu, 23 Apr 2020 00:54:58 GMT" + "Mon, 19 Apr 2021 07:20:23 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -12228,29 +11456,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "679fbbdc-b500-480f-9217-c0ae03b10e82-2020-04-23 00:55:09Z-Ps" + "10b0ce81-87bf-4157-a9d7-cca0d658b0c7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599709625)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204509625)\\/\",\"ClientRequestId\":\"679fbbdc-b500-480f-9217-c0ae03b10e82-2020-04-23 00:55:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZWZgf3WkKrNiFbGrzszC8y7lCk9Z1XXVSp3Lp76sfiM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813234792)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418034792)\\/\",\"ClientRequestId\":\"5ba14d30-2991-4d0c-a4d7-980907d5ca03-2021-04-19 07:20:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ju7+k9vWwIYKY8BIGRhYjXqn88Kz8H3IgSdYbjN6IRY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12261,38 +11489,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" + "11891" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "dbd06c62-65c8-47c3-a168-7f93803e8ea4" + "80f35698-ba3d-4c73-876e-db8983104edd" ], "x-ms-client-request-id": [ - "679fbbdc-b500-480f-9217-c0ae03b10e82-2020-04-23 00:55:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "10b0ce81-87bf-4157-a9d7-cca0d658b0c7" ], "x-ms-correlation-request-id": [ - "dbd06c62-65c8-47c3-a168-7f93803e8ea4" + "80f35698-ba3d-4c73-876e-db8983104edd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005510Z:dbd06c62-65c8-47c3-a168-7f93803e8ea4" + "CENTRALINDIA:20210419T072035Z:80f35698-ba3d-4c73-876e-db8983104edd" ], "Date": [ - "Thu, 23 Apr 2020 00:55:09 GMT" + "Mon, 19 Apr 2021 07:20:35 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -12301,29 +11526,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0840cc06-2b2c-4966-a2b4-078dd5b750ae-2020-04-23 00:55:20Z-Ps" + "2e9a0852-35a9-4ec3-9f4a-823210ad6044" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599720185)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204520185)\\/\",\"ClientRequestId\":\"0840cc06-2b2c-4966-a2b4-078dd5b750ae-2020-04-23 00:55:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HkFona/YnknVvgC6Cojoe1RdJN817ZrNTVd1hlTf2pk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813245128)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418045128)\\/\",\"ClientRequestId\":\"8043c5f5-3054-41f4-b2b9-d47ccb35f9f4-2021-04-19 07:20:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7pycKygA/Eb7fjUHEjJjeGz+xNrDdhAINAB7W1JyTi0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12334,38 +11559,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" + "11890" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "dcdd6be1-7a7b-4324-860b-7318f93a2012" + "9d745084-04d3-4268-a08f-9cc7aac94c88" ], "x-ms-client-request-id": [ - "0840cc06-2b2c-4966-a2b4-078dd5b750ae-2020-04-23 00:55:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2e9a0852-35a9-4ec3-9f4a-823210ad6044" ], "x-ms-correlation-request-id": [ - "dcdd6be1-7a7b-4324-860b-7318f93a2012" + "9d745084-04d3-4268-a08f-9cc7aac94c88" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005520Z:dcdd6be1-7a7b-4324-860b-7318f93a2012" + "CENTRALINDIA:20210419T072045Z:9d745084-04d3-4268-a08f-9cc7aac94c88" ], "Date": [ - "Thu, 23 Apr 2020 00:55:20 GMT" + "Mon, 19 Apr 2021 07:20:45 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -12374,29 +11596,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7673db9d-65a6-4748-bc99-3699b2224ec0-2020-04-23 00:55:30Z-Ps" + "598d4fb8-65bc-4926-943c-143adcc8404b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599730692)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204530692)\\/\",\"ClientRequestId\":\"7673db9d-65a6-4748-bc99-3699b2224ec0-2020-04-23 00:55:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2r0DneAOn5Lc+r3Gc/5XY5TiJiR4B1OWfdfeYuq6UrY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813255479)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418055479)\\/\",\"ClientRequestId\":\"dd18e1d5-b32c-40e7-ae4f-7eb152ceb7e8-2021-04-19 07:20:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5uVoO4qYNWQ41g8Z+roCS23eUnWYQeTnzIqJbOEdolQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12407,38 +11629,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" + "11889" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f5653731-fd9e-406e-8264-0149f1347af3" + "1266dd8d-94c4-41f3-bff6-e37308e9df7e" ], "x-ms-client-request-id": [ - "7673db9d-65a6-4748-bc99-3699b2224ec0-2020-04-23 00:55:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "598d4fb8-65bc-4926-943c-143adcc8404b" ], "x-ms-correlation-request-id": [ - "f5653731-fd9e-406e-8264-0149f1347af3" + "1266dd8d-94c4-41f3-bff6-e37308e9df7e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005531Z:f5653731-fd9e-406e-8264-0149f1347af3" + "CENTRALINDIA:20210419T072055Z:1266dd8d-94c4-41f3-bff6-e37308e9df7e" ], "Date": [ - "Thu, 23 Apr 2020 00:55:30 GMT" + "Mon, 19 Apr 2021 07:20:55 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -12447,29 +11666,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13087cd9-70e0-4a8f-8c14-e71753cf2a04-2020-04-23 00:55:41Z-Ps" + "7e28909d-e807-42de-929a-c1f8df4316d2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599741172)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204541172)\\/\",\"ClientRequestId\":\"13087cd9-70e0-4a8f-8c14-e71753cf2a04-2020-04-23 00:55:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"U1TdKp7RRrwz9NfNQEywtucCBu/xI/kuWGgIkmsqMhE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813265822)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418065822)\\/\",\"ClientRequestId\":\"353dd3c6-7619-4291-af41-b47937ccf9cb-2021-04-19 07:21:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"m0jAJOgcCrYX6vQvZewjLACjVYkSH6QeWzrdr+EKJsk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12480,38 +11699,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" + "11888" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5be64aa1-21bc-4208-8290-4fa85b732d73" + "7fa25f41-2085-49a1-8ece-bbc06c20b8ae" ], "x-ms-client-request-id": [ - "13087cd9-70e0-4a8f-8c14-e71753cf2a04-2020-04-23 00:55:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7e28909d-e807-42de-929a-c1f8df4316d2" ], "x-ms-correlation-request-id": [ - "5be64aa1-21bc-4208-8290-4fa85b732d73" + "7fa25f41-2085-49a1-8ece-bbc06c20b8ae" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005541Z:5be64aa1-21bc-4208-8290-4fa85b732d73" + "CENTRALINDIA:20210419T072106Z:7fa25f41-2085-49a1-8ece-bbc06c20b8ae" ], "Date": [ - "Thu, 23 Apr 2020 00:55:40 GMT" + "Mon, 19 Apr 2021 07:21:05 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -12520,29 +11736,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c534459b-14d4-4b8e-8bba-1e1b8db41052-2020-04-23 00:55:51Z-Ps" + "b81550de-f46e-4419-8e34-448f3bd6d7fb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599751794)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204551794)\\/\",\"ClientRequestId\":\"c534459b-14d4-4b8e-8bba-1e1b8db41052-2020-04-23 00:55:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"j9XHrv4gqdAuxim0D6uJdZ6vG57A63W8iEtrpm58tHM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813276163)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418076163)\\/\",\"ClientRequestId\":\"14b52e69-68c3-45a2-b515-310c6c006830-2021-04-19 07:21:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"U9rJy3dM3FXZaED2aVznvSM2H8UerCw/nbmNHEZCzQY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12552,39 +11768,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11887" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "02cb8f8f-d75d-4d94-adab-5bf64902200b" + "42344a25-615d-4a4a-9480-daaede585d00" ], "x-ms-client-request-id": [ - "c534459b-14d4-4b8e-8bba-1e1b8db41052-2020-04-23 00:55:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" + "b81550de-f46e-4419-8e34-448f3bd6d7fb" ], "x-ms-correlation-request-id": [ - "02cb8f8f-d75d-4d94-adab-5bf64902200b" + "42344a25-615d-4a4a-9480-daaede585d00" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005552Z:02cb8f8f-d75d-4d94-adab-5bf64902200b" + "CENTRALINDIA:20210419T072116Z:42344a25-615d-4a4a-9480-daaede585d00" ], "Date": [ - "Thu, 23 Apr 2020 00:55:52 GMT" + "Mon, 19 Apr 2021 07:21:16 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -12593,29 +11806,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a14b37e-b269-421c-a73d-2c54cbaca66e-2020-04-23 00:56:05Z-Ps" + "1f23118e-110c-4cf5-9c0e-69b56ced10eb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599765622)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204565622)\\/\",\"ClientRequestId\":\"7a14b37e-b269-421c-a73d-2c54cbaca66e-2020-04-23 00:56:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zwhZKT8FlINXfMpvVm0P3EVyt9WuuLIfkoPvB220aVw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813286512)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418086512)\\/\",\"ClientRequestId\":\"03fb558e-7b8a-4006-ab0a-32aa0f9cb73d-2021-04-19 07:21:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"F2bn44mGX1EYMBOT7CUzIoLcA5tOCVv5LJrPVCoh4r4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12626,38 +11839,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" + "11886" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f2a06d37-2525-4b5e-a979-6ed46f879039" + "7adb5693-2261-4b6a-b229-453df13a7625" ], "x-ms-client-request-id": [ - "7a14b37e-b269-421c-a73d-2c54cbaca66e-2020-04-23 00:56:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1f23118e-110c-4cf5-9c0e-69b56ced10eb" ], "x-ms-correlation-request-id": [ - "f2a06d37-2525-4b5e-a979-6ed46f879039" + "7adb5693-2261-4b6a-b229-453df13a7625" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005607Z:f2a06d37-2525-4b5e-a979-6ed46f879039" + "CENTRALINDIA:20210419T072126Z:7adb5693-2261-4b6a-b229-453df13a7625" ], "Date": [ - "Thu, 23 Apr 2020 00:56:06 GMT" + "Mon, 19 Apr 2021 07:21:26 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -12666,29 +11876,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f724d73f-01ed-4819-a489-3d242811c529-2020-04-23 00:56:17Z-Ps" + "a754fa37-7706-4706-86a0-dcda33289e1c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599777221)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204577221)\\/\",\"ClientRequestId\":\"f724d73f-01ed-4819-a489-3d242811c529-2020-04-23 00:56:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"g4kQxr7B4uKcKa8hog6/WoigAe5obm3ZF7Q3NNtoNeo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813296897)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418096897)\\/\",\"ClientRequestId\":\"1a88ff89-6694-45c9-a92f-78b9b02627ed-2021-04-19 07:21:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yiUeT3quzrym8CDasHDmBgBoENmT4bP/DQJu1enjB8I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12699,38 +11909,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" + "11885" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "98da8f5d-7551-41f6-b1f4-7e4b951f6188" + "3659c1f4-23b9-4a65-9c05-61ce253a3ebb" ], "x-ms-client-request-id": [ - "f724d73f-01ed-4819-a489-3d242811c529-2020-04-23 00:56:17Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a754fa37-7706-4706-86a0-dcda33289e1c" ], "x-ms-correlation-request-id": [ - "98da8f5d-7551-41f6-b1f4-7e4b951f6188" + "3659c1f4-23b9-4a65-9c05-61ce253a3ebb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005617Z:98da8f5d-7551-41f6-b1f4-7e4b951f6188" + "CENTRALINDIA:20210419T072137Z:3659c1f4-23b9-4a65-9c05-61ce253a3ebb" ], "Date": [ - "Thu, 23 Apr 2020 00:56:16 GMT" + "Mon, 19 Apr 2021 07:21:36 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -12739,29 +11946,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b1bea91-4b17-4e4d-a781-227633e32801-2020-04-23 00:56:27Z-Ps" + "6080eeaf-ed2a-47e7-9b8e-ce572df76edb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599787770)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204587770)\\/\",\"ClientRequestId\":\"6b1bea91-4b17-4e4d-a781-227633e32801-2020-04-23 00:56:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"W2HrzYsPOanRfirBIqBk/PF/f3UxtI1mV3jxhReUAXE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813307243)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418107243)\\/\",\"ClientRequestId\":\"2898abd9-0e92-4282-a147-105eab4478fe-2021-04-19 07:21:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xUtyzwPAOOiF2sUHsbDxNNH7zIK+g1+hmQ42E8TQXDE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12772,38 +11979,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" + "11884" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0af79302-b206-45e3-93a1-52d9795b7d1b" + "815fb7b4-2062-4d97-9161-405783c39c7c" ], "x-ms-client-request-id": [ - "6b1bea91-4b17-4e4d-a781-227633e32801-2020-04-23 00:56:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6080eeaf-ed2a-47e7-9b8e-ce572df76edb" ], "x-ms-correlation-request-id": [ - "0af79302-b206-45e3-93a1-52d9795b7d1b" + "815fb7b4-2062-4d97-9161-405783c39c7c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005628Z:0af79302-b206-45e3-93a1-52d9795b7d1b" + "CENTRALINDIA:20210419T072147Z:815fb7b4-2062-4d97-9161-405783c39c7c" ], "Date": [ - "Thu, 23 Apr 2020 00:56:28 GMT" + "Mon, 19 Apr 2021 07:21:46 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -12812,29 +12016,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa245a7e-e356-40e1-b835-1e70baf65515-2020-04-23 00:56:38Z-Ps" + "54bc09e1-b484-4926-8cd8-654a1aa55053" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599798394)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204598394)\\/\",\"ClientRequestId\":\"aa245a7e-e356-40e1-b835-1e70baf65515-2020-04-23 00:56:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DBqJ0f0iF9AchG1magjU7f9V317lnqIOGfyPCUTfHSg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813317572)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418117572)\\/\",\"ClientRequestId\":\"b0686bb0-63e0-452e-9a14-3183cd563a25-2021-04-19 07:21:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bikCVV7Mw8XoHDbBRs0BZeUibzkEnbuUnK7v7xYPpSA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12845,38 +12049,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" + "11883" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "fed63bbb-08c2-41d5-bf47-93c894ba2ce4" + "59306246-e915-4eb5-bb3a-669fbb5989bc" ], "x-ms-client-request-id": [ - "aa245a7e-e356-40e1-b835-1e70baf65515-2020-04-23 00:56:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "54bc09e1-b484-4926-8cd8-654a1aa55053" ], "x-ms-correlation-request-id": [ - "fed63bbb-08c2-41d5-bf47-93c894ba2ce4" + "59306246-e915-4eb5-bb3a-669fbb5989bc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005638Z:fed63bbb-08c2-41d5-bf47-93c894ba2ce4" + "CENTRALINDIA:20210419T072157Z:59306246-e915-4eb5-bb3a-669fbb5989bc" ], "Date": [ - "Thu, 23 Apr 2020 00:56:38 GMT" + "Mon, 19 Apr 2021 07:21:56 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -12885,29 +12086,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e80fd14b-e97c-4f40-9988-0ab139672eb9-2020-04-23 00:56:48Z-Ps" + "dc09a4c1-6829-41fe-b78c-a8d7236452d9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599808897)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204608897)\\/\",\"ClientRequestId\":\"e80fd14b-e97c-4f40-9988-0ab139672eb9-2020-04-23 00:56:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4KxrN5wL8GKPsOm7AgpqI8SQC/vKVMh8/nLXJXiMbag=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813327912)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418127912)\\/\",\"ClientRequestId\":\"e76991cd-8ee4-4143-8db1-42c1657eaad6-2021-04-19 07:22:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zAfe42kdeD/cmNssX5Q2HXpF0feCVTROBV56AtlrzoE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12918,38 +12119,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" + "11882" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "58b55b08-d701-4a5f-ade5-6ed1df1fcaa1" + "65ea086d-abaa-4dfa-9fc6-504066939f6a" ], "x-ms-client-request-id": [ - "e80fd14b-e97c-4f40-9988-0ab139672eb9-2020-04-23 00:56:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "dc09a4c1-6829-41fe-b78c-a8d7236452d9" ], "x-ms-correlation-request-id": [ - "58b55b08-d701-4a5f-ade5-6ed1df1fcaa1" + "65ea086d-abaa-4dfa-9fc6-504066939f6a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005649Z:58b55b08-d701-4a5f-ade5-6ed1df1fcaa1" + "CENTRALINDIA:20210419T072208Z:65ea086d-abaa-4dfa-9fc6-504066939f6a" ], "Date": [ - "Thu, 23 Apr 2020 00:56:48 GMT" + "Mon, 19 Apr 2021 07:22:07 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -12958,29 +12156,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a60975f8-ad72-4c9d-9fce-dc38a386b72b-2020-04-23 00:56:59Z-Ps" + "cdc3ce90-8c42-44f3-9c26-9eaccc9acc4a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599819391)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204619391)\\/\",\"ClientRequestId\":\"a60975f8-ad72-4c9d-9fce-dc38a386b72b-2020-04-23 00:56:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VK9G3h90qRytR7cOOxsMDDNKHDNre7AVUQ8tdsCnrNI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813338261)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418138261)\\/\",\"ClientRequestId\":\"82a42600-887c-43e0-af11-8fd0955da2dd-2021-04-19 07:22:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"o6FgVGQJT/eZlRw49ENR7qX9OpOkXcYNhYaUSuWQSzc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12991,38 +12189,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" + "11881" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9d853ed9-6170-4169-9e9c-ba167ffc62d2" + "86a144f3-7678-4614-82be-f43761de6f95" ], "x-ms-client-request-id": [ - "a60975f8-ad72-4c9d-9fce-dc38a386b72b-2020-04-23 00:56:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cdc3ce90-8c42-44f3-9c26-9eaccc9acc4a" ], "x-ms-correlation-request-id": [ - "9d853ed9-6170-4169-9e9c-ba167ffc62d2" + "86a144f3-7678-4614-82be-f43761de6f95" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005659Z:9d853ed9-6170-4169-9e9c-ba167ffc62d2" + "CENTRALINDIA:20210419T072218Z:86a144f3-7678-4614-82be-f43761de6f95" ], "Date": [ - "Thu, 23 Apr 2020 00:56:59 GMT" + "Mon, 19 Apr 2021 07:22:17 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -13031,29 +12226,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31635b9e-e3df-48e2-86ff-e3a4f64f4e82-2020-04-23 00:57:09Z-Ps" + "f08a3f70-ceb3-424a-87fe-05d67a3b1303" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599829915)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204629915)\\/\",\"ClientRequestId\":\"31635b9e-e3df-48e2-86ff-e3a4f64f4e82-2020-04-23 00:57:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uLG3sLf0+Dt2jA1OOujpRxytU5Pn/Y+iXa3Aj5qdCV4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813348619)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418148619)\\/\",\"ClientRequestId\":\"aaf836a9-77a7-4197-8e1c-4aa6a9f21419-2021-04-19 07:22:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"m5xSnkZuaMHbEQeP4sy7GGkP4cTxI+snirbdNSucxu0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13064,38 +12259,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" + "11880" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2ec60280-63e5-4cf4-b30a-c2fa887b6cfc" + "8ff575ba-124e-4a95-ad17-5c7301baa6f0" ], "x-ms-client-request-id": [ - "31635b9e-e3df-48e2-86ff-e3a4f64f4e82-2020-04-23 00:57:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f08a3f70-ceb3-424a-87fe-05d67a3b1303" ], "x-ms-correlation-request-id": [ - "2ec60280-63e5-4cf4-b30a-c2fa887b6cfc" + "8ff575ba-124e-4a95-ad17-5c7301baa6f0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005711Z:2ec60280-63e5-4cf4-b30a-c2fa887b6cfc" + "CENTRALINDIA:20210419T072228Z:8ff575ba-124e-4a95-ad17-5c7301baa6f0" ], "Date": [ - "Thu, 23 Apr 2020 00:57:11 GMT" + "Mon, 19 Apr 2021 07:22:27 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -13104,29 +12296,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "486e0827-dd03-4cfd-8e14-5fb4faea2110-2020-04-23 00:57:21Z-Ps" + "2139bcdd-9de0-4bdb-92f9-272dc8df10bc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599841674)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204641674)\\/\",\"ClientRequestId\":\"486e0827-dd03-4cfd-8e14-5fb4faea2110-2020-04-23 00:57:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2Gkb1wTdpGnjLPa6Pg+kSuKLlyKM02Qp0d0NPLM+LRY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813358975)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418158975)\\/\",\"ClientRequestId\":\"e260684e-5c68-4159-a852-f2a352c75510-2021-04-19 07:22:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lI1n2OX33iu4XR4z3dyU7Du842VbcISa/Hv3xNkpfRo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13136,39 +12328,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11876" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e72ba3f9-f386-4a2c-91da-f30869c66c4e" + "2ddc0922-4e5f-40e5-a0c8-6fe4ea0181c7" ], "x-ms-client-request-id": [ - "486e0827-dd03-4cfd-8e14-5fb4faea2110-2020-04-23 00:57:21Z-Ps" + "2139bcdd-9de0-4bdb-92f9-272dc8df10bc" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11879" ], "x-ms-correlation-request-id": [ - "e72ba3f9-f386-4a2c-91da-f30869c66c4e" + "2ddc0922-4e5f-40e5-a0c8-6fe4ea0181c7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005722Z:e72ba3f9-f386-4a2c-91da-f30869c66c4e" + "CENTRALINDIA:20210419T072239Z:2ddc0922-4e5f-40e5-a0c8-6fe4ea0181c7" ], "Date": [ - "Thu, 23 Apr 2020 00:57:21 GMT" + "Mon, 19 Apr 2021 07:22:39 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -13177,29 +12366,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bf21eda-f850-4e45-abe0-dc184b57e00f-2020-04-23 00:57:32Z-Ps" + "81836250-7e95-4e23-ba7a-7e9d196c39d8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599852301)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204652301)\\/\",\"ClientRequestId\":\"5bf21eda-f850-4e45-abe0-dc184b57e00f-2020-04-23 00:57:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mnQ/4uwyImRBI44C5RVneH9gumh82R3kOVj6OJU6/Fg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813369325)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418169325)\\/\",\"ClientRequestId\":\"7fd0305b-7db4-4e6c-84dc-857198ef677d-2021-04-19 07:22:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XDMuP5inPHT7OMCAPNlkBDuhrVj6rnP3PJeAwroYOnk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13210,38 +12399,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" + "11878" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c041a4ec-72b2-483a-be38-3ec8da284b02" + "74604d4f-9d0b-44c3-a543-3495f2b72b43" ], "x-ms-client-request-id": [ - "5bf21eda-f850-4e45-abe0-dc184b57e00f-2020-04-23 00:57:32Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "81836250-7e95-4e23-ba7a-7e9d196c39d8" ], "x-ms-correlation-request-id": [ - "c041a4ec-72b2-483a-be38-3ec8da284b02" + "74604d4f-9d0b-44c3-a543-3495f2b72b43" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005732Z:c041a4ec-72b2-483a-be38-3ec8da284b02" + "CENTRALINDIA:20210419T072250Z:74604d4f-9d0b-44c3-a543-3495f2b72b43" ], "Date": [ - "Thu, 23 Apr 2020 00:57:32 GMT" + "Mon, 19 Apr 2021 07:22:50 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -13250,29 +12436,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3ae7597-13dc-4a0c-8a96-70bf69c61400-2020-04-23 00:57:42Z-Ps" + "cdae3771-f1a2-4abf-a187-f228aebe186f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599862968)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204662968)\\/\",\"ClientRequestId\":\"d3ae7597-13dc-4a0c-8a96-70bf69c61400-2020-04-23 00:57:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7YPY5xXUr0R5clb5EfktbNbehfcP9I0qRQhO498Uhp0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813380872)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418180872)\\/\",\"ClientRequestId\":\"f0c3ea5c-0a5a-4495-80a9-95c5bc76e41e-2021-04-19 07:23:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JVTKtkPG5ZbtneyPjk+Dc8nL0kntUH374JiTVzn9RnA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13283,38 +12469,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" + "11877" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0fad9724-c3db-4548-9fa1-94536acebc4f" + "c29b254a-8d00-4047-86bc-8a45922703c9" ], "x-ms-client-request-id": [ - "d3ae7597-13dc-4a0c-8a96-70bf69c61400-2020-04-23 00:57:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cdae3771-f1a2-4abf-a187-f228aebe186f" ], "x-ms-correlation-request-id": [ - "0fad9724-c3db-4548-9fa1-94536acebc4f" + "c29b254a-8d00-4047-86bc-8a45922703c9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005743Z:0fad9724-c3db-4548-9fa1-94536acebc4f" + "CENTRALINDIA:20210419T072301Z:c29b254a-8d00-4047-86bc-8a45922703c9" ], "Date": [ - "Thu, 23 Apr 2020 00:57:42 GMT" + "Mon, 19 Apr 2021 07:23:00 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -13323,29 +12506,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "104548f0-6581-450a-aaaa-78b4972cff3f-2020-04-23 00:57:53Z-Ps" + "fa5bc600-7fbe-421b-985d-50039330f25a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599873473)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204673473)\\/\",\"ClientRequestId\":\"104548f0-6581-450a-aaaa-78b4972cff3f-2020-04-23 00:57:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GQ8dLj2GJmpxqI5EUcfknCMsE7Tb5gRjvZu2Hai8z1s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813391194)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418191194)\\/\",\"ClientRequestId\":\"a1d4958b-11d4-4d0e-ab3e-2dcc443a3e19-2021-04-19 07:23:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GvRbR37YDLUPA/dh4g2CoIb7Ye7WNEqXHQvLZl5nug8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13356,38 +12539,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" + "11876" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6c2c20bc-c3bd-4937-92e7-4c710c8101be" + "b4b44684-7f06-439a-adc3-4b8b0ffaddbc" ], "x-ms-client-request-id": [ - "104548f0-6581-450a-aaaa-78b4972cff3f-2020-04-23 00:57:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "fa5bc600-7fbe-421b-985d-50039330f25a" ], "x-ms-correlation-request-id": [ - "6c2c20bc-c3bd-4937-92e7-4c710c8101be" + "b4b44684-7f06-439a-adc3-4b8b0ffaddbc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005753Z:6c2c20bc-c3bd-4937-92e7-4c710c8101be" + "CENTRALINDIA:20210419T072311Z:b4b44684-7f06-439a-adc3-4b8b0ffaddbc" ], "Date": [ - "Thu, 23 Apr 2020 00:57:53 GMT" + "Mon, 19 Apr 2021 07:23:10 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -13396,29 +12576,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de55c233-983d-44b1-9b82-b01e30e5a1f5-2020-04-23 00:58:04Z-Ps" + "77cc1f1b-e57c-4d27-90de-d1679adb5bd9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599884039)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204684039)\\/\",\"ClientRequestId\":\"de55c233-983d-44b1-9b82-b01e30e5a1f5-2020-04-23 00:58:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iTtkp2C3/Tnro066N60Z+dJmB6IOiOwdkoMUxZvriH4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813401525)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418201525)\\/\",\"ClientRequestId\":\"2ff0dd0d-c9e5-4136-89dc-2c6df751035b-2021-04-19 07:23:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"c5FS4lvbZOFCUsK2w4aURpyWyXCouoB2mgJnO7fV9CI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13429,38 +12609,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11872" + "11875" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a343280a-c3af-4143-94c4-1a2379e2464d" + "b024ef22-dfbc-4a5d-822a-892a6285db7d" ], "x-ms-client-request-id": [ - "de55c233-983d-44b1-9b82-b01e30e5a1f5-2020-04-23 00:58:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "77cc1f1b-e57c-4d27-90de-d1679adb5bd9" ], "x-ms-correlation-request-id": [ - "a343280a-c3af-4143-94c4-1a2379e2464d" + "b024ef22-dfbc-4a5d-822a-892a6285db7d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005804Z:a343280a-c3af-4143-94c4-1a2379e2464d" + "CENTRALINDIA:20210419T072321Z:b024ef22-dfbc-4a5d-822a-892a6285db7d" ], "Date": [ - "Thu, 23 Apr 2020 00:58:03 GMT" + "Mon, 19 Apr 2021 07:23:21 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -13469,29 +12646,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dbe368ed-2c70-4dd0-989f-e8d723515887-2020-04-23 00:58:14Z-Ps" + "a657c7d7-b8c2-4e16-b69e-fdb8dcff17a6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599894608)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204694608)\\/\",\"ClientRequestId\":\"dbe368ed-2c70-4dd0-989f-e8d723515887-2020-04-23 00:58:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hXBT3mmpxKfIEyKBrSznX4gJ0en7KfTTDCTlP188x8U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813411855)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418211855)\\/\",\"ClientRequestId\":\"46210c61-121f-4384-9656-16c66574934c-2021-04-19 07:23:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ad74ZJ3PMS9OsdM7sVBpZSiRMItO1JSs31QNePwMvTM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13502,38 +12679,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" + "11874" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9799089c-c994-4e42-9888-8048bac05299" + "e294f3af-e583-4fee-a387-51e10a7a8437" ], "x-ms-client-request-id": [ - "dbe368ed-2c70-4dd0-989f-e8d723515887-2020-04-23 00:58:14Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a657c7d7-b8c2-4e16-b69e-fdb8dcff17a6" ], "x-ms-correlation-request-id": [ - "9799089c-c994-4e42-9888-8048bac05299" + "e294f3af-e583-4fee-a387-51e10a7a8437" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005816Z:9799089c-c994-4e42-9888-8048bac05299" + "CENTRALINDIA:20210419T072332Z:e294f3af-e583-4fee-a387-51e10a7a8437" ], "Date": [ - "Thu, 23 Apr 2020 00:58:15 GMT" + "Mon, 19 Apr 2021 07:23:31 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -13542,29 +12716,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd3ee68a-edc8-403d-814b-f542194acf3f-2020-04-23 00:58:26Z-Ps" + "95941307-948f-4d1a-badb-3593135d2595" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599906264)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204706264)\\/\",\"ClientRequestId\":\"bd3ee68a-edc8-403d-814b-f542194acf3f-2020-04-23 00:58:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FuOF1Bp7OK+5xE6E9N1SkunD+0oyRJZWixJ7UyJ+ZwM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813422178)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418222178)\\/\",\"ClientRequestId\":\"75e42f34-e6e0-4e40-9201-a3fa95c64012-2021-04-19 07:23:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tT6q7Uo4oNkWwcJD6qAg8B/ncv0jm1GbJJC/d8hOrBc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13575,38 +12749,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11870" + "11873" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1b667ab1-3ee7-4fff-b83f-8a442fbf0e94" + "b5c1deb4-4a2f-4c43-82d8-47509d0c25a1" ], "x-ms-client-request-id": [ - "bd3ee68a-edc8-403d-814b-f542194acf3f-2020-04-23 00:58:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "95941307-948f-4d1a-badb-3593135d2595" ], "x-ms-correlation-request-id": [ - "1b667ab1-3ee7-4fff-b83f-8a442fbf0e94" + "b5c1deb4-4a2f-4c43-82d8-47509d0c25a1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005826Z:1b667ab1-3ee7-4fff-b83f-8a442fbf0e94" + "CENTRALINDIA:20210419T072342Z:b5c1deb4-4a2f-4c43-82d8-47509d0c25a1" ], "Date": [ - "Thu, 23 Apr 2020 00:58:26 GMT" + "Mon, 19 Apr 2021 07:23:41 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -13615,29 +12786,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8cbbdc8-0b69-438a-83e9-665bcbdae0b7-2020-04-23 00:58:36Z-Ps" + "c3816b70-5bc2-43ae-9480-14e2cddaf89b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599916818)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204716818)\\/\",\"ClientRequestId\":\"c8cbbdc8-0b69-438a-83e9-665bcbdae0b7-2020-04-23 00:58:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pRu1YSRewF7LV/tGH6r84nJLWvfZNzAdpVWdRHADynw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813432515)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418232515)\\/\",\"ClientRequestId\":\"9e474ac1-f40d-441a-8ab5-6d42ff509cab-2021-04-19 07:23:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PZpPTz5G0OHzgXTMaVgXg+RPMiHBsVmvoPA4J0i+EC0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13648,38 +12819,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11869" + "11872" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a0f4e4cd-b730-48db-bb89-581f791bc62f" + "da97e4ec-c9ff-4ea5-8553-fe3d0acc5918" ], "x-ms-client-request-id": [ - "c8cbbdc8-0b69-438a-83e9-665bcbdae0b7-2020-04-23 00:58:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c3816b70-5bc2-43ae-9480-14e2cddaf89b" ], "x-ms-correlation-request-id": [ - "a0f4e4cd-b730-48db-bb89-581f791bc62f" + "da97e4ec-c9ff-4ea5-8553-fe3d0acc5918" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005837Z:a0f4e4cd-b730-48db-bb89-581f791bc62f" + "CENTRALINDIA:20210419T072352Z:da97e4ec-c9ff-4ea5-8553-fe3d0acc5918" ], "Date": [ - "Thu, 23 Apr 2020 00:58:36 GMT" + "Mon, 19 Apr 2021 07:23:52 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -13688,29 +12856,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed0fffa4-b214-4b89-9afe-e5abaf7c3710-2020-04-23 00:58:47Z-Ps" + "111aef64-ea3f-4387-b053-33a725404f5e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599927499)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204727499)\\/\",\"ClientRequestId\":\"ed0fffa4-b214-4b89-9afe-e5abaf7c3710-2020-04-23 00:58:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SRk1j0u8hPlhwFrzCPvgbWgzk/LwcIVypaJ6Twroya8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813442843)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418242843)\\/\",\"ClientRequestId\":\"36970811-3fa3-4258-b8ac-884ea86be316-2021-04-19 07:24:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kmufFpVS/M+Q4QRCuCpnsTayYu/B1FqPV0cKbGQXzUY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13721,38 +12889,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11868" + "11871" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2ae9cd38-a3f5-468b-a440-32735fe1ce4a" + "7827310c-bcde-4221-9d2f-46c09bd91f8f" ], "x-ms-client-request-id": [ - "ed0fffa4-b214-4b89-9afe-e5abaf7c3710-2020-04-23 00:58:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "111aef64-ea3f-4387-b053-33a725404f5e" ], "x-ms-correlation-request-id": [ - "2ae9cd38-a3f5-468b-a440-32735fe1ce4a" + "7827310c-bcde-4221-9d2f-46c09bd91f8f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005847Z:2ae9cd38-a3f5-468b-a440-32735fe1ce4a" + "CENTRALINDIA:20210419T072403Z:7827310c-bcde-4221-9d2f-46c09bd91f8f" ], "Date": [ - "Thu, 23 Apr 2020 00:58:47 GMT" + "Mon, 19 Apr 2021 07:24:02 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -13761,29 +12926,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73e1a8ae-ad2e-4e69-aaf7-29f9ce7b6cbb-2020-04-23 00:58:57Z-Ps" + "90e4e372-2531-4001-b623-c1b441ddc145" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599937979)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204737979)\\/\",\"ClientRequestId\":\"73e1a8ae-ad2e-4e69-aaf7-29f9ce7b6cbb-2020-04-23 00:58:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AAR1BBqjCI9nMzMmp6QEa/6iCx3Mt4xh9SiYjGMO7Ck=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813453182)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418253182)\\/\",\"ClientRequestId\":\"725cd65e-cd04-4555-8d95-2bf807a8cea1-2021-04-19 07:24:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SFt/Kkg/oLE5Zj+TKQ95w+af7RDrIu6LCRzC1UyjK9A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13794,38 +12959,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11867" + "11870" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "cd33633e-bded-4577-8751-e3ba6fa27d36" + "9d305455-4cff-4e38-ad9d-b77e065f6595" ], "x-ms-client-request-id": [ - "73e1a8ae-ad2e-4e69-aaf7-29f9ce7b6cbb-2020-04-23 00:58:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "90e4e372-2531-4001-b623-c1b441ddc145" ], "x-ms-correlation-request-id": [ - "cd33633e-bded-4577-8751-e3ba6fa27d36" + "9d305455-4cff-4e38-ad9d-b77e065f6595" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005858Z:cd33633e-bded-4577-8751-e3ba6fa27d36" + "CENTRALINDIA:20210419T072413Z:9d305455-4cff-4e38-ad9d-b77e065f6595" ], "Date": [ - "Thu, 23 Apr 2020 00:58:58 GMT" + "Mon, 19 Apr 2021 07:24:12 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -13834,29 +12996,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0669c8c5-8ade-45d5-8aeb-813a7aba5193-2020-04-23 00:59:08Z-Ps" + "87bac5f4-3b82-4108-bdab-730aef902c63" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599948472)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204748472)\\/\",\"ClientRequestId\":\"0669c8c5-8ade-45d5-8aeb-813a7aba5193-2020-04-23 00:59:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"12L2EprANkGDfXqteyUpi9bYiE9rosyI+hM5hgpun8g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813463512)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418263512)\\/\",\"ClientRequestId\":\"070bdb4f-26ad-4974-8a79-ef1fe06e3511-2021-04-19 07:24:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fBheVNb6JInR+mR54Xregw00BKQxXnOXhggh3SDk33k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13867,38 +13029,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11866" + "11869" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9c3c2f62-0b0d-457a-be96-c5a5e089c14b" + "d70f1c4b-7346-4d91-94d6-fe75ec7b7a55" ], "x-ms-client-request-id": [ - "0669c8c5-8ade-45d5-8aeb-813a7aba5193-2020-04-23 00:59:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "87bac5f4-3b82-4108-bdab-730aef902c63" ], "x-ms-correlation-request-id": [ - "9c3c2f62-0b0d-457a-be96-c5a5e089c14b" + "d70f1c4b-7346-4d91-94d6-fe75ec7b7a55" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005908Z:9c3c2f62-0b0d-457a-be96-c5a5e089c14b" + "CENTRALINDIA:20210419T072423Z:d70f1c4b-7346-4d91-94d6-fe75ec7b7a55" ], "Date": [ - "Thu, 23 Apr 2020 00:59:08 GMT" + "Mon, 19 Apr 2021 07:24:23 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -13907,29 +13066,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08881433-5358-49a4-a886-6c54bf7ca45d-2020-04-23 00:59:19Z-Ps" + "8330fdfe-abce-4ac9-af7b-7e874a9ab725" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599959126)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204759126)\\/\",\"ClientRequestId\":\"08881433-5358-49a4-a886-6c54bf7ca45d-2020-04-23 00:59:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4OFFUnz/9O9+XONd0e7Ec5JgTUus/gNhj+OGvI+N4VY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813473867)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418273867)\\/\",\"ClientRequestId\":\"8affb69f-b6e5-4006-9c34-caa3f6857715-2021-04-19 07:24:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vZbQsF/HQIpiRNj0/rD8ph4zblWZnSOS2cmeKX+G0AE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13939,39 +13098,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11868" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "488e18a2-1fb2-415f-88f3-2249f7715221" + "f39b3972-1639-42e4-91dd-ad255933a0c9" ], "x-ms-client-request-id": [ - "08881433-5358-49a4-a886-6c54bf7ca45d-2020-04-23 00:59:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" + "8330fdfe-abce-4ac9-af7b-7e874a9ab725" ], "x-ms-correlation-request-id": [ - "488e18a2-1fb2-415f-88f3-2249f7715221" + "f39b3972-1639-42e4-91dd-ad255933a0c9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005919Z:488e18a2-1fb2-415f-88f3-2249f7715221" + "CENTRALINDIA:20210419T072434Z:f39b3972-1639-42e4-91dd-ad255933a0c9" ], "Date": [ - "Thu, 23 Apr 2020 00:59:19 GMT" + "Mon, 19 Apr 2021 07:24:33 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -13980,29 +13136,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33ac80e9-264b-4671-a7d6-e03114d93f9e-2020-04-23 00:59:29Z-Ps" + "9bae5fb6-875f-4168-b0cc-834351574960" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599969695)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204769695)\\/\",\"ClientRequestId\":\"33ac80e9-264b-4671-a7d6-e03114d93f9e-2020-04-23 00:59:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"k0vjyqWNee/zHZUr58Wuz0mhu+YVm+naJaMi9y8PDqk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813484204)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418284204)\\/\",\"ClientRequestId\":\"907647c0-8afc-44f9-9da1-f8373f8c8f3f-2021-04-19 07:24:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Z7iI5CtLXjW5tx2W3dq9EWeBeQVAwikG/5VZ0RSqtDw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14013,38 +13169,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11864" + "11867" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5f9c7cb0-0b80-4e30-9ab4-7e77f15e51cc" + "50273530-1264-47ab-a9dd-1f5bb19c37fd" ], "x-ms-client-request-id": [ - "33ac80e9-264b-4671-a7d6-e03114d93f9e-2020-04-23 00:59:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9bae5fb6-875f-4168-b0cc-834351574960" ], "x-ms-correlation-request-id": [ - "5f9c7cb0-0b80-4e30-9ab4-7e77f15e51cc" + "50273530-1264-47ab-a9dd-1f5bb19c37fd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005931Z:5f9c7cb0-0b80-4e30-9ab4-7e77f15e51cc" + "CENTRALINDIA:20210419T072444Z:50273530-1264-47ab-a9dd-1f5bb19c37fd" ], "Date": [ - "Thu, 23 Apr 2020 00:59:30 GMT" + "Mon, 19 Apr 2021 07:24:43 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -14053,29 +13206,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c50f74d6-3d2a-44dd-a4f1-10e7233ef8d3-2020-04-23 00:59:41Z-Ps" + "50031341-f761-40c2-8d0c-04f42c3c416a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599981356)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204781356)\\/\",\"ClientRequestId\":\"c50f74d6-3d2a-44dd-a4f1-10e7233ef8d3-2020-04-23 00:59:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NchQrw2lsgwkZ0wcSzK1sGebBK6svMEs4Z7HINDZW4Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813494595)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418294595)\\/\",\"ClientRequestId\":\"b3d6e6ff-57a8-4c46-9fba-d14377dd5769-2021-04-19 07:24:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TWemlhE5NSAMZLS2B3iqVLI8zeyTbAfyedKJrMejo8s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14086,38 +13239,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11863" + "11866" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f64b1956-e763-447b-bcba-2597d656b1a6" + "2d2327c4-9e04-4ef0-92d0-06c6f7a72f48" ], "x-ms-client-request-id": [ - "c50f74d6-3d2a-44dd-a4f1-10e7233ef8d3-2020-04-23 00:59:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "50031341-f761-40c2-8d0c-04f42c3c416a" ], "x-ms-correlation-request-id": [ - "f64b1956-e763-447b-bcba-2597d656b1a6" + "2d2327c4-9e04-4ef0-92d0-06c6f7a72f48" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005941Z:f64b1956-e763-447b-bcba-2597d656b1a6" + "CENTRALINDIA:20210419T072454Z:2d2327c4-9e04-4ef0-92d0-06c6f7a72f48" ], "Date": [ - "Thu, 23 Apr 2020 00:59:41 GMT" + "Mon, 19 Apr 2021 07:24:54 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -14126,29 +13276,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "712875d3-5da8-464a-b09e-f0306d56df29-2020-04-23 00:59:51Z-Ps" + "9b6a2b9d-a0ae-4245-859b-6bd11f9eb491" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587599991956)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204791956)\\/\",\"ClientRequestId\":\"712875d3-5da8-464a-b09e-f0306d56df29-2020-04-23 00:59:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tWnj84dfGwLZ8gIzpK0LZLNOcEgUE5dEhPN/sNZfNY8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813504926)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418304926)\\/\",\"ClientRequestId\":\"d46e0d5b-baba-4765-b168-e80f65bb6536-2021-04-19 07:25:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CYywOp5qnqiSagTQH1VDvV4KP8ZMaCMOhj2LGd3k66s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14159,38 +13309,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11862" + "11865" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "794f4aca-a6ea-464b-85a5-d7fea9eef4cb" + "5674bbac-6a95-4251-adae-f2e0eca0822d" ], - "x-ms-client-request-id": [ - "712875d3-5da8-464a-b09e-f0306d56df29-2020-04-23 00:59:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "9b6a2b9d-a0ae-4245-859b-6bd11f9eb491" ], "x-ms-correlation-request-id": [ - "794f4aca-a6ea-464b-85a5-d7fea9eef4cb" + "5674bbac-6a95-4251-adae-f2e0eca0822d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T005952Z:794f4aca-a6ea-464b-85a5-d7fea9eef4cb" + "CENTRALINDIA:20210419T072505Z:5674bbac-6a95-4251-adae-f2e0eca0822d" ], "Date": [ - "Thu, 23 Apr 2020 00:59:51 GMT" + "Mon, 19 Apr 2021 07:25:04 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -14199,29 +13346,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c7d74df-ef5f-4d1d-928c-4e1751605cdd-2020-04-23 01:00:02Z-Ps" + "ea88dc1f-2976-403b-9b90-5b2b63697c9a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600002657)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204802657)\\/\",\"ClientRequestId\":\"9c7d74df-ef5f-4d1d-928c-4e1751605cdd-2020-04-23 01:00:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6Bu3wg3w+KvhpJdDZH3JpbSlkVWHWRliaToWx6sOYAU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813515268)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418315268)\\/\",\"ClientRequestId\":\"2e50ceb4-4874-46c4-9d58-1516e9ead840-2021-04-19 07:25:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+uC/xZHzWS5giogp0bYw0uDZAPTBihT7ACJd7rFLfpo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14232,38 +13379,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11861" + "11864" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "14075534-8afe-42cc-a672-a733f84988ea" + "469949f1-132c-4bf7-a0c2-7238321719f5" ], "x-ms-client-request-id": [ - "9c7d74df-ef5f-4d1d-928c-4e1751605cdd-2020-04-23 01:00:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ea88dc1f-2976-403b-9b90-5b2b63697c9a" ], "x-ms-correlation-request-id": [ - "14075534-8afe-42cc-a672-a733f84988ea" + "469949f1-132c-4bf7-a0c2-7238321719f5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010003Z:14075534-8afe-42cc-a672-a733f84988ea" + "CENTRALINDIA:20210419T072515Z:469949f1-132c-4bf7-a0c2-7238321719f5" ], "Date": [ - "Thu, 23 Apr 2020 01:00:02 GMT" + "Mon, 19 Apr 2021 07:25:15 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -14272,29 +13416,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79ac48cd-539b-4de6-803b-d8724fbb25a0-2020-04-23 01:00:13Z-Ps" + "8956f763-1034-4666-b1dc-c99c511a7231" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600013150)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204813150)\\/\",\"ClientRequestId\":\"79ac48cd-539b-4de6-803b-d8724fbb25a0-2020-04-23 01:00:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kccVnyKDY6/ZdbBI+QntBR0FhPZFBGR4JikxFUBW44U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813525601)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418325601)\\/\",\"ClientRequestId\":\"3b850978-2ad1-4268-9adc-30c632359e59-2021-04-19 07:25:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sTYSg++uNJOrgzKBDJ050Sz2br+AKGsEkQMPaPhjCA4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14305,38 +13449,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11860" + "11863" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6de82881-4794-4bf5-8e35-d03d6c501972" + "5f33fec6-0228-451a-9359-b6d82eb46e44" ], "x-ms-client-request-id": [ - "79ac48cd-539b-4de6-803b-d8724fbb25a0-2020-04-23 01:00:13Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8956f763-1034-4666-b1dc-c99c511a7231" ], "x-ms-correlation-request-id": [ - "6de82881-4794-4bf5-8e35-d03d6c501972" + "5f33fec6-0228-451a-9359-b6d82eb46e44" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010013Z:6de82881-4794-4bf5-8e35-d03d6c501972" + "CENTRALINDIA:20210419T072525Z:5f33fec6-0228-451a-9359-b6d82eb46e44" ], "Date": [ - "Thu, 23 Apr 2020 01:00:13 GMT" + "Mon, 19 Apr 2021 07:25:25 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -14345,29 +13486,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57f38008-3d8a-4b32-a624-90f81847dedb-2020-04-23 01:00:23Z-Ps" + "2593a9fb-1ccc-4998-9d07-9812601ec1d2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600023709)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204823709)\\/\",\"ClientRequestId\":\"57f38008-3d8a-4b32-a624-90f81847dedb-2020-04-23 01:00:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OYEs+8i4O+hyBA/T60omkghT08QaK8ebMaoE6tkI6uk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813535995)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418335995)\\/\",\"ClientRequestId\":\"63daf90b-85b5-4558-a872-3510b813472e-2021-04-19 07:25:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FgNxl58ST+pGHEFKRY9TLKxdZlDQcE4xaryzvrrnvDM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14378,38 +13519,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11859" + "11862" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "50b9ed0e-ad34-4d63-989e-9c6659f3b79e" + "833ef848-11b6-451a-b1b2-49e608a6b17c" ], "x-ms-client-request-id": [ - "57f38008-3d8a-4b32-a624-90f81847dedb-2020-04-23 01:00:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2593a9fb-1ccc-4998-9d07-9812601ec1d2" ], "x-ms-correlation-request-id": [ - "50b9ed0e-ad34-4d63-989e-9c6659f3b79e" + "833ef848-11b6-451a-b1b2-49e608a6b17c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010024Z:50b9ed0e-ad34-4d63-989e-9c6659f3b79e" + "CENTRALINDIA:20210419T072536Z:833ef848-11b6-451a-b1b2-49e608a6b17c" ], "Date": [ - "Thu, 23 Apr 2020 01:00:23 GMT" + "Mon, 19 Apr 2021 07:25:35 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -14418,29 +13556,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "21f3c8be-c124-40a3-9be1-86969831241d-2020-04-23 01:00:34Z-Ps" + "361941aa-b7d0-4602-ad44-b1da83d75611" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600034547)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204834547)\\/\",\"ClientRequestId\":\"21f3c8be-c124-40a3-9be1-86969831241d-2020-04-23 01:00:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wZ43Ygd4kkz7E0MGN8Da41LLyzQD7+8m/mTmBmh7Itw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813546328)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418346328)\\/\",\"ClientRequestId\":\"0708144d-8234-495b-9e42-f8230a701aa4-2021-04-19 07:25:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+h8+uiCH0PBf24qth/G9+YlAohn6EFgyVJ2DFCOZNqc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14450,39 +13588,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11861" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0c31aa7b-b85c-49f4-9ddb-72a21d76ff9c" + "60da5ad8-c698-40d0-aaea-f7acec409e16" ], "x-ms-client-request-id": [ - "21f3c8be-c124-40a3-9be1-86969831241d-2020-04-23 01:00:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11858" + "361941aa-b7d0-4602-ad44-b1da83d75611" ], "x-ms-correlation-request-id": [ - "0c31aa7b-b85c-49f4-9ddb-72a21d76ff9c" + "60da5ad8-c698-40d0-aaea-f7acec409e16" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010035Z:0c31aa7b-b85c-49f4-9ddb-72a21d76ff9c" + "CENTRALINDIA:20210419T072546Z:60da5ad8-c698-40d0-aaea-f7acec409e16" ], "Date": [ - "Thu, 23 Apr 2020 01:00:34 GMT" + "Mon, 19 Apr 2021 07:25:46 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -14491,29 +13626,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4f8860b2-dfea-4b9c-920d-671af4f01409-2020-04-23 01:00:45Z-Ps" + "7868bdd5-5187-417b-a7f1-b8c4887e8060" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600045290)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204845290)\\/\",\"ClientRequestId\":\"4f8860b2-dfea-4b9c-920d-671af4f01409-2020-04-23 01:00:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/Adbc2i1dyLnWdqQFwUAY/KSKChebvnkSGx2F954Eyw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813556662)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418356662)\\/\",\"ClientRequestId\":\"c3c3ada7-2361-4879-b265-e78f6fc4d021-2021-04-19 07:25:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Keh+h706fs4B2gqwVKzaxg39mLNJ8Y7nlC05iwQ7mr8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14524,38 +13659,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11857" + "11860" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "dc8c8ef9-636f-4913-ae20-cb9c7ddeb685" + "23aa3e21-ff60-4821-b7e8-e88ee60bf9f5" ], "x-ms-client-request-id": [ - "4f8860b2-dfea-4b9c-920d-671af4f01409-2020-04-23 01:00:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7868bdd5-5187-417b-a7f1-b8c4887e8060" ], "x-ms-correlation-request-id": [ - "dc8c8ef9-636f-4913-ae20-cb9c7ddeb685" + "23aa3e21-ff60-4821-b7e8-e88ee60bf9f5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010046Z:dc8c8ef9-636f-4913-ae20-cb9c7ddeb685" + "CENTRALINDIA:20210419T072556Z:23aa3e21-ff60-4821-b7e8-e88ee60bf9f5" ], "Date": [ - "Thu, 23 Apr 2020 01:00:46 GMT" + "Mon, 19 Apr 2021 07:25:56 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -14564,29 +13696,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9bc89e30-2e3d-4839-88d0-a27dc7a71e72-2020-04-23 01:00:56Z-Ps" + "293bcbb1-aba8-4114-b73e-2f0d669123c3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600056959)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204856959)\\/\",\"ClientRequestId\":\"9bc89e30-2e3d-4839-88d0-a27dc7a71e72-2020-04-23 01:00:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lNHKfbgfoie8bJ4Z031MfA69z2oVa3AIcsGG+HUFcHE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813566994)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418366994)\\/\",\"ClientRequestId\":\"d5fea52e-e769-498e-8175-53a3da4f5168-2021-04-19 07:26:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"22kFrOBwIxeD8V4E79X4JUhXBojNFp0VEtDRq/bqvzk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14597,38 +13729,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11856" + "11859" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "402ca305-76ad-481e-bd68-49aed05566b2" + "ca9fc6fe-ea28-497c-bc42-1a374d39cfff" ], "x-ms-client-request-id": [ - "9bc89e30-2e3d-4839-88d0-a27dc7a71e72-2020-04-23 01:00:56Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "293bcbb1-aba8-4114-b73e-2f0d669123c3" ], "x-ms-correlation-request-id": [ - "402ca305-76ad-481e-bd68-49aed05566b2" + "ca9fc6fe-ea28-497c-bc42-1a374d39cfff" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010057Z:402ca305-76ad-481e-bd68-49aed05566b2" + "CENTRALINDIA:20210419T072607Z:ca9fc6fe-ea28-497c-bc42-1a374d39cfff" ], "Date": [ - "Thu, 23 Apr 2020 01:00:56 GMT" + "Mon, 19 Apr 2021 07:26:07 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -14637,29 +13766,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c75760d-1c5a-45e2-8467-c91435bdafee-2020-04-23 01:01:07Z-Ps" + "ab209c35-c4f4-43a4-af00-fa3e0a018d27" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600067442)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204867442)\\/\",\"ClientRequestId\":\"1c75760d-1c5a-45e2-8467-c91435bdafee-2020-04-23 01:01:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UCYthMq0I2ttEZ0BD7QPtnhlPTHc1jy4yMVZ/mLlkNI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813577326)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418377326)\\/\",\"ClientRequestId\":\"77db6324-0863-4611-8f3b-1935fe5a6b14-2021-04-19 07:26:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SMUwlVU0AkspYn7rFMyjDQ0Xl2CxBS2rFhDUhVNq6Fk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14670,38 +13799,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11855" + "11858" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "03893270-7f4e-43cd-af25-3e5866b6007d" + "aba66ad5-85f9-4327-8bd0-97de8c274c76" ], "x-ms-client-request-id": [ - "1c75760d-1c5a-45e2-8467-c91435bdafee-2020-04-23 01:01:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ab209c35-c4f4-43a4-af00-fa3e0a018d27" ], "x-ms-correlation-request-id": [ - "03893270-7f4e-43cd-af25-3e5866b6007d" + "aba66ad5-85f9-4327-8bd0-97de8c274c76" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010107Z:03893270-7f4e-43cd-af25-3e5866b6007d" + "CENTRALINDIA:20210419T072617Z:aba66ad5-85f9-4327-8bd0-97de8c274c76" ], "Date": [ - "Thu, 23 Apr 2020 01:01:07 GMT" + "Mon, 19 Apr 2021 07:26:17 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -14710,29 +13836,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "327a8e0d-d7c3-485d-90ef-c6e5e91bd222-2020-04-23 01:01:18Z-Ps" + "53bbe3b4-36d3-4cf6-9cd8-ee78b8002099" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600078019)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204878019)\\/\",\"ClientRequestId\":\"327a8e0d-d7c3-485d-90ef-c6e5e91bd222-2020-04-23 01:01:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VCQCTGZkc7NUiqBOT8i8iYFanvg+5oLBhw4GMSZOK+E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813587668)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418387668)\\/\",\"ClientRequestId\":\"f0a6d427-746b-44c5-befd-c60c9319c751-2021-04-19 07:26:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"V+25BDILvemNdRAVUeo2Ar38C/6QJfRSHKaoVXTNkjs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14743,38 +13869,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11854" + "11857" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "08a8e94b-70ea-453f-8b93-7c57625e3422" + "390c8c24-6b0b-4e9e-baaa-d268531ef5cb" ], "x-ms-client-request-id": [ - "327a8e0d-d7c3-485d-90ef-c6e5e91bd222-2020-04-23 01:01:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "53bbe3b4-36d3-4cf6-9cd8-ee78b8002099" ], "x-ms-correlation-request-id": [ - "08a8e94b-70ea-453f-8b93-7c57625e3422" + "390c8c24-6b0b-4e9e-baaa-d268531ef5cb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010119Z:08a8e94b-70ea-453f-8b93-7c57625e3422" + "CENTRALINDIA:20210419T072627Z:390c8c24-6b0b-4e9e-baaa-d268531ef5cb" ], "Date": [ - "Thu, 23 Apr 2020 01:01:19 GMT" + "Mon, 19 Apr 2021 07:26:27 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -14783,29 +13906,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8eb24d2b-7908-467a-89f5-0fac06c01a17-2020-04-23 01:01:29Z-Ps" + "b1c5135b-baad-49c4-b4eb-3a0ee36eaf83" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600089928)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204889928)\\/\",\"ClientRequestId\":\"8eb24d2b-7908-467a-89f5-0fac06c01a17-2020-04-23 01:01:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"h5PdjJYy5V9fsXRphdcLpSfunGMSFeffmAKV8SEKUks=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813597998)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418397998)\\/\",\"ClientRequestId\":\"611d39b7-f2b9-4b69-b21a-69699ec0e8df-2021-04-19 07:26:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fk/IaS1mHwajz2ZC2DZpeV1e/jrNgJAgruGbsVeLSlA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14816,38 +13939,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11853" + "11856" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "11e1b6d2-ac0b-40a7-914b-bb032613febe" + "41fb944e-13ba-4a80-b860-ef3999caafb6" ], "x-ms-client-request-id": [ - "8eb24d2b-7908-467a-89f5-0fac06c01a17-2020-04-23 01:01:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b1c5135b-baad-49c4-b4eb-3a0ee36eaf83" ], "x-ms-correlation-request-id": [ - "11e1b6d2-ac0b-40a7-914b-bb032613febe" + "41fb944e-13ba-4a80-b860-ef3999caafb6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010130Z:11e1b6d2-ac0b-40a7-914b-bb032613febe" + "CENTRALINDIA:20210419T072638Z:41fb944e-13ba-4a80-b860-ef3999caafb6" ], "Date": [ - "Thu, 23 Apr 2020 01:01:30 GMT" + "Mon, 19 Apr 2021 07:26:37 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -14856,29 +13976,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7d84a61-8680-4c99-a5a4-3ca48c7cfe20-2020-04-23 01:01:40Z-Ps" + "94076b14-29ac-4ac7-845a-fd387f18ead6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600100429)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204900429)\\/\",\"ClientRequestId\":\"a7d84a61-8680-4c99-a5a4-3ca48c7cfe20-2020-04-23 01:01:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XOjbwl5otr7oZv1N9c5lyNNUiGNR2h1whukjdSgncdo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813608343)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418408343)\\/\",\"ClientRequestId\":\"ea053788-e486-427d-91bb-d9d288c99f34-2021-04-19 07:26:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Hxe95tsCNPnvBB7pE7Fp64bNV01nu1gD6foa/xCjHlI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14889,38 +14009,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11852" + "11855" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4716fcbc-d4e0-4a6f-936f-a3ac5dc50bcc" + "486d312e-2c3e-4f57-991b-d59b7dd2edda" ], "x-ms-client-request-id": [ - "a7d84a61-8680-4c99-a5a4-3ca48c7cfe20-2020-04-23 01:01:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "94076b14-29ac-4ac7-845a-fd387f18ead6" ], "x-ms-correlation-request-id": [ - "4716fcbc-d4e0-4a6f-936f-a3ac5dc50bcc" + "486d312e-2c3e-4f57-991b-d59b7dd2edda" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010140Z:4716fcbc-d4e0-4a6f-936f-a3ac5dc50bcc" + "CENTRALINDIA:20210419T072648Z:486d312e-2c3e-4f57-991b-d59b7dd2edda" ], "Date": [ - "Thu, 23 Apr 2020 01:01:40 GMT" + "Mon, 19 Apr 2021 07:26:47 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -14929,29 +14046,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2bf9d48a-184f-466c-8982-d6411ae3a8a3-2020-04-23 01:01:51Z-Ps" + "13acb1b7-a4d9-4079-bc59-ca56fdb5ac21" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600111062)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204911062)\\/\",\"ClientRequestId\":\"2bf9d48a-184f-466c-8982-d6411ae3a8a3-2020-04-23 01:01:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"f2zRgodC6OSx0MaIwzyh/EJ6i3HKoQXkkIlVSbuqNzk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813618678)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418418678)\\/\",\"ClientRequestId\":\"864bfe9f-69a3-4852-97ca-345cd134d909-2021-04-19 07:26:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1uqAZfJlsEayU37RaDX11ZOTFZXnWocY9cDgV8cYhys=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14961,39 +14078,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11854" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "85307033-a31a-4577-916d-a06be9d9889d" + "b2e74c19-7304-4c69-9b8b-ce6136ee2e48" ], "x-ms-client-request-id": [ - "2bf9d48a-184f-466c-8982-d6411ae3a8a3-2020-04-23 01:01:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11851" + "13acb1b7-a4d9-4079-bc59-ca56fdb5ac21" ], "x-ms-correlation-request-id": [ - "85307033-a31a-4577-916d-a06be9d9889d" + "b2e74c19-7304-4c69-9b8b-ce6136ee2e48" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010151Z:85307033-a31a-4577-916d-a06be9d9889d" + "CENTRALINDIA:20210419T072658Z:b2e74c19-7304-4c69-9b8b-ce6136ee2e48" ], "Date": [ - "Thu, 23 Apr 2020 01:01:50 GMT" + "Mon, 19 Apr 2021 07:26:58 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -15002,29 +14116,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae44df57-0ce0-4e14-94de-77f104acd677-2020-04-23 01:02:01Z-Ps" + "7d6013b9-b856-4c67-8714-c434d09f84dc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600121594)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204921594)\\/\",\"ClientRequestId\":\"ae44df57-0ce0-4e14-94de-77f104acd677-2020-04-23 01:02:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6RMS0TbuJuZrri3HR5M4P9po063CFLJh5CcFsLIAU6c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813628998)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418428998)\\/\",\"ClientRequestId\":\"85a4abb9-48aa-47b5-972f-57a61f49e56f-2021-04-19 07:27:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QsPLPsLKaDG51xH3fB3lgZPmSrDTaj1rPWbbdlKoE/4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15035,38 +14149,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" + "11853" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3fb9f59a-ccb0-4fca-911a-5f28926d5d1a" + "be09adbe-e628-4175-aa50-7169c08a0135" ], "x-ms-client-request-id": [ - "ae44df57-0ce0-4e14-94de-77f104acd677-2020-04-23 01:02:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7d6013b9-b856-4c67-8714-c434d09f84dc" ], "x-ms-correlation-request-id": [ - "3fb9f59a-ccb0-4fca-911a-5f28926d5d1a" + "be09adbe-e628-4175-aa50-7169c08a0135" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010202Z:3fb9f59a-ccb0-4fca-911a-5f28926d5d1a" + "CENTRALINDIA:20210419T072709Z:be09adbe-e628-4175-aa50-7169c08a0135" ], "Date": [ - "Thu, 23 Apr 2020 01:02:01 GMT" + "Mon, 19 Apr 2021 07:27:08 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -15075,29 +14186,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adfb5c3a-453d-4900-8f38-cd2bcb204156-2020-04-23 01:02:12Z-Ps" + "1233bac4-9f98-44e7-af71-e628bcb2a79b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600132152)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204932152)\\/\",\"ClientRequestId\":\"adfb5c3a-453d-4900-8f38-cd2bcb204156-2020-04-23 01:02:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nopQEII2Z469WWDAcIflWR3PQIVcBN9VIiRdj1aoco4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813639328)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418439328)\\/\",\"ClientRequestId\":\"b676f1a5-0f74-4aa9-987e-dbccff65f46e-2021-04-19 07:27:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vLIoy0bi+4veV23zcn64k5LDs7oQ2htNPvUc2MYbj5k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15108,38 +14219,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11849" + "11852" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e59699c7-beea-40ab-8796-12a875fddb52" + "6d186c84-9865-40f2-a431-84434ef8c913" ], "x-ms-client-request-id": [ - "adfb5c3a-453d-4900-8f38-cd2bcb204156-2020-04-23 01:02:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1233bac4-9f98-44e7-af71-e628bcb2a79b" ], "x-ms-correlation-request-id": [ - "e59699c7-beea-40ab-8796-12a875fddb52" + "6d186c84-9865-40f2-a431-84434ef8c913" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010212Z:e59699c7-beea-40ab-8796-12a875fddb52" + "CENTRALINDIA:20210419T072719Z:6d186c84-9865-40f2-a431-84434ef8c913" ], "Date": [ - "Thu, 23 Apr 2020 01:02:11 GMT" + "Mon, 19 Apr 2021 07:27:19 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -15148,29 +14256,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f254b4b-6168-407d-b8ae-49fc0c74ae76-2020-04-23 01:02:22Z-Ps" + "d34a4026-380c-4db1-858e-7bf3044afb7e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600142680)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204942680)\\/\",\"ClientRequestId\":\"0f254b4b-6168-407d-b8ae-49fc0c74ae76-2020-04-23 01:02:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZmqjP+lXZgrJd4suR7POcCf983FC32W7cp2y2A22wZ4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813649691)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418449691)\\/\",\"ClientRequestId\":\"3c1c6e68-10ed-4331-86e5-85726f9bc574-2021-04-19 07:27:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cg8h50Dj3xANx4lX4HRkE5Xz/6AuP8kUFhE1nuIBt1Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15180,39 +14288,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11851" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "59c25b22-046e-491f-b01c-4e834074c8f7" + "eeffe7e6-7115-4824-a18b-e00d6ffc9ab6" ], "x-ms-client-request-id": [ - "0f254b4b-6168-407d-b8ae-49fc0c74ae76-2020-04-23 01:02:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11848" + "d34a4026-380c-4db1-858e-7bf3044afb7e" ], "x-ms-correlation-request-id": [ - "59c25b22-046e-491f-b01c-4e834074c8f7" + "eeffe7e6-7115-4824-a18b-e00d6ffc9ab6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010223Z:59c25b22-046e-491f-b01c-4e834074c8f7" + "CENTRALINDIA:20210419T072729Z:eeffe7e6-7115-4824-a18b-e00d6ffc9ab6" ], "Date": [ - "Thu, 23 Apr 2020 01:02:22 GMT" + "Mon, 19 Apr 2021 07:27:29 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -15221,29 +14326,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e9e8749-a29f-4e7d-a777-99e07e0ee69c-2020-04-23 01:02:33Z-Ps" + "e6a0e8a0-4567-4b8f-987b-8194ce8220fe" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600153216)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204953216)\\/\",\"ClientRequestId\":\"5e9e8749-a29f-4e7d-a777-99e07e0ee69c-2020-04-23 01:02:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0jKDZVsS5GbcIPLki52dQ4SHHubYJEX42AFdVQ9jV2Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813660027)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418460027)\\/\",\"ClientRequestId\":\"f7817a7c-3662-49ad-8835-9364a4918285-2021-04-19 07:27:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mHOBOUyiqKXoSER8n8fSM4dAKdXBgv6MyTye3jbVuCk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15254,38 +14359,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11847" + "11850" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ba794649-df36-46e8-91e4-e49086a78bff" + "495a8d5b-daea-4862-9326-2a5af2896f2c" ], "x-ms-client-request-id": [ - "5e9e8749-a29f-4e7d-a777-99e07e0ee69c-2020-04-23 01:02:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e6a0e8a0-4567-4b8f-987b-8194ce8220fe" ], "x-ms-correlation-request-id": [ - "ba794649-df36-46e8-91e4-e49086a78bff" + "495a8d5b-daea-4862-9326-2a5af2896f2c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010234Z:ba794649-df36-46e8-91e4-e49086a78bff" + "CENTRALINDIA:20210419T072740Z:495a8d5b-daea-4862-9326-2a5af2896f2c" ], "Date": [ - "Thu, 23 Apr 2020 01:02:34 GMT" + "Mon, 19 Apr 2021 07:27:39 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -15294,29 +14396,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35f677b1-b321-41a8-8c95-8a4d9030f7e3-2020-04-23 01:02:45Z-Ps" + "2bf888ee-78a3-4dfa-b5e6-ffffb893f984" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600165112)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204965112)\\/\",\"ClientRequestId\":\"35f677b1-b321-41a8-8c95-8a4d9030f7e3-2020-04-23 01:02:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"O9HOjVJYKvGelh30bCpcguagEiesJkhp4qA/BzI6yxE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813670359)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418470359)\\/\",\"ClientRequestId\":\"13f9ea7c-f535-4e06-a34d-dcd1f8ca953d-2021-04-19 07:27:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iZJScXCz9cnxCC8oz923hrdyXZe5SoASPdBOuqbwLU0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15327,38 +14429,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11846" + "11849" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b2d14e98-ab84-4aae-9416-358807744143" + "2f999ea7-d133-4eec-aa49-52b82abea18e" ], "x-ms-client-request-id": [ - "35f677b1-b321-41a8-8c95-8a4d9030f7e3-2020-04-23 01:02:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2bf888ee-78a3-4dfa-b5e6-ffffb893f984" ], "x-ms-correlation-request-id": [ - "b2d14e98-ab84-4aae-9416-358807744143" + "2f999ea7-d133-4eec-aa49-52b82abea18e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010245Z:b2d14e98-ab84-4aae-9416-358807744143" + "CENTRALINDIA:20210419T072750Z:2f999ea7-d133-4eec-aa49-52b82abea18e" ], "Date": [ - "Thu, 23 Apr 2020 01:02:44 GMT" + "Mon, 19 Apr 2021 07:27:49 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -15367,29 +14466,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d29a58e-477b-4604-a7e3-8c6551d20ad1-2020-04-23 01:02:55Z-Ps" + "a84415c7-5c4e-4a59-b978-76e064b24d90" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600175608)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204975608)\\/\",\"ClientRequestId\":\"3d29a58e-477b-4604-a7e3-8c6551d20ad1-2020-04-23 01:02:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UZLhqE6qL15+pysfgbbyPXIAe3AdO7dUJFuKqyEoVEo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813680675)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418480675)\\/\",\"ClientRequestId\":\"07f89d7c-a580-4a6b-9d22-7db2439d0ef1-2021-04-19 07:28:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ScUtioMcMeMffYhWZjjscBvOTecSBT9qqnY1IYm32I8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15400,38 +14499,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11845" + "11848" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "539a74d8-f59a-4908-b56e-7ac5d5cbfd0b" + "0a7ab575-586f-48f5-bcc0-57b281bfd02f" ], "x-ms-client-request-id": [ - "3d29a58e-477b-4604-a7e3-8c6551d20ad1-2020-04-23 01:02:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a84415c7-5c4e-4a59-b978-76e064b24d90" ], "x-ms-correlation-request-id": [ - "539a74d8-f59a-4908-b56e-7ac5d5cbfd0b" + "0a7ab575-586f-48f5-bcc0-57b281bfd02f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010255Z:539a74d8-f59a-4908-b56e-7ac5d5cbfd0b" + "CENTRALINDIA:20210419T072800Z:0a7ab575-586f-48f5-bcc0-57b281bfd02f" ], "Date": [ - "Thu, 23 Apr 2020 01:02:55 GMT" + "Mon, 19 Apr 2021 07:28:00 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -15440,29 +14536,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34a48e37-6cd2-4ad8-aece-b480f083e2f7-2020-04-23 01:03:06Z-Ps" + "e5669194-a782-4def-97a8-7ae075691a28" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600186109)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204986109)\\/\",\"ClientRequestId\":\"34a48e37-6cd2-4ad8-aece-b480f083e2f7-2020-04-23 01:03:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YCZg6yOGj9js+cp752rAqiOOe0SWmi8zJoPo4Cc+VgY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813691018)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418491018)\\/\",\"ClientRequestId\":\"f0692643-4f0d-4f3b-89ab-188d8ad52fa2-2021-04-19 07:28:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RGeXOQDkh1vfGQgIQq1r2c6UsJOHI0c02wscMw1QGOU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15473,38 +14569,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11844" + "11847" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "406dd3da-ec22-47e8-9245-3e02166bdf74" + "40a4b437-d98b-4576-a59c-f0da2ed6e814" ], "x-ms-client-request-id": [ - "34a48e37-6cd2-4ad8-aece-b480f083e2f7-2020-04-23 01:03:06Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e5669194-a782-4def-97a8-7ae075691a28" ], "x-ms-correlation-request-id": [ - "406dd3da-ec22-47e8-9245-3e02166bdf74" + "40a4b437-d98b-4576-a59c-f0da2ed6e814" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010306Z:406dd3da-ec22-47e8-9245-3e02166bdf74" + "CENTRALINDIA:20210419T072811Z:40a4b437-d98b-4576-a59c-f0da2ed6e814" ], "Date": [ - "Thu, 23 Apr 2020 01:03:06 GMT" + "Mon, 19 Apr 2021 07:28:10 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -15513,29 +14606,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36ee5a55-82ad-493e-9879-5b3f62227199-2020-04-23 01:03:16Z-Ps" + "6bcd6075-73e1-4439-96e8-c6e70b10c9d0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600196718)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588204996718)\\/\",\"ClientRequestId\":\"36ee5a55-82ad-493e-9879-5b3f62227199-2020-04-23 01:03:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"n02V7GwDZwv//SRKyqaEIgM6vKIMatjwWqbhBvF0G9Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813701380)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418501380)\\/\",\"ClientRequestId\":\"1019e554-d5ae-4e33-b461-6019254456dd-2021-04-19 07:28:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8Ej94xzEpBN0qabt03B7qhvxfzxBj50ALw/GWgYrDu0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15546,38 +14639,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11843" + "11846" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "38dd7174-f4c6-4960-b957-3ec6eb574109" + "ab1c58d8-43d8-4fa7-ab48-71a2e6d7e4c7" ], "x-ms-client-request-id": [ - "36ee5a55-82ad-493e-9879-5b3f62227199-2020-04-23 01:03:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6bcd6075-73e1-4439-96e8-c6e70b10c9d0" ], "x-ms-correlation-request-id": [ - "38dd7174-f4c6-4960-b957-3ec6eb574109" + "ab1c58d8-43d8-4fa7-ab48-71a2e6d7e4c7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010317Z:38dd7174-f4c6-4960-b957-3ec6eb574109" + "CENTRALINDIA:20210419T072821Z:ab1c58d8-43d8-4fa7-ab48-71a2e6d7e4c7" ], "Date": [ - "Thu, 23 Apr 2020 01:03:16 GMT" + "Mon, 19 Apr 2021 07:28:20 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -15586,29 +14676,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6d04f52-4a42-4cb5-9426-66a259b67926-2020-04-23 01:03:27Z-Ps" + "daa1c2e8-7021-479d-9413-ea7f8f705db9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600207362)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205007362)\\/\",\"ClientRequestId\":\"b6d04f52-4a42-4cb5-9426-66a259b67926-2020-04-23 01:03:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tI+XpLGcsMEEQbcTrbt5mya27StO3BCve4eJUFlKUsQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813711706)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418511706)\\/\",\"ClientRequestId\":\"097a40c0-3c7d-4045-b6b2-ce1604a80942-2021-04-19 07:28:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8m92QolyN/ECOHvC9VE9VsXpCGxO0fZ8vyA6n6TZW9A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15619,38 +14709,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11842" + "11845" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "24ffdfd2-daf6-4169-aed6-cbaee3daf498" + "35d51944-d828-4af3-a523-c814deb19196" ], "x-ms-client-request-id": [ - "b6d04f52-4a42-4cb5-9426-66a259b67926-2020-04-23 01:03:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "daa1c2e8-7021-479d-9413-ea7f8f705db9" ], "x-ms-correlation-request-id": [ - "24ffdfd2-daf6-4169-aed6-cbaee3daf498" + "35d51944-d828-4af3-a523-c814deb19196" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010327Z:24ffdfd2-daf6-4169-aed6-cbaee3daf498" + "CENTRALINDIA:20210419T072831Z:35d51944-d828-4af3-a523-c814deb19196" ], "Date": [ - "Thu, 23 Apr 2020 01:03:26 GMT" + "Mon, 19 Apr 2021 07:28:31 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -15659,29 +14746,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8a82232-c846-4568-9c54-39cbce22a9e3-2020-04-23 01:03:37Z-Ps" + "e0d08d6e-1a64-4eda-90ef-d995befbb6ae" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600217887)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205017887)\\/\",\"ClientRequestId\":\"d8a82232-c846-4568-9c54-39cbce22a9e3-2020-04-23 01:03:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"j97pfqeRv7c2Xlsxvu31/mkqSVPymNkhddhSx/VL81s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813722026)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418522026)\\/\",\"ClientRequestId\":\"dbe52313-e9df-42e7-9c81-0c48d9983d32-2021-04-19 07:28:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wQNPHC6BqwB/A30Gh69ZA0p9RsaVvbiVZXjc9wfL3KA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15691,39 +14778,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11844" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f99ae669-8c1c-4b2a-99b1-46847c9bd285" + "f1e7603c-e881-4121-bc7d-ce7845028001" ], "x-ms-client-request-id": [ - "d8a82232-c846-4568-9c54-39cbce22a9e3-2020-04-23 01:03:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11841" + "e0d08d6e-1a64-4eda-90ef-d995befbb6ae" ], "x-ms-correlation-request-id": [ - "f99ae669-8c1c-4b2a-99b1-46847c9bd285" + "f1e7603c-e881-4121-bc7d-ce7845028001" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010338Z:f99ae669-8c1c-4b2a-99b1-46847c9bd285" + "CENTRALINDIA:20210419T072842Z:f1e7603c-e881-4121-bc7d-ce7845028001" ], "Date": [ - "Thu, 23 Apr 2020 01:03:38 GMT" + "Mon, 19 Apr 2021 07:28:41 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -15732,29 +14816,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d53c8ad2-6b93-470a-9c71-e8174f3826cf-2020-04-23 01:03:48Z-Ps" + "8e2a8383-9507-40f7-a29e-d6856d18ce0f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600228391)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205028391)\\/\",\"ClientRequestId\":\"d53c8ad2-6b93-470a-9c71-e8174f3826cf-2020-04-23 01:03:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2G5gUcyAA2gGLvp8xL4eBTC9z/rcQb6QjoCV6/jp7VE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813732352)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418532352)\\/\",\"ClientRequestId\":\"6de09365-594a-46e3-8205-3fabe1135501-2021-04-19 07:28:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JvlHHRTyunuovznJk6FSfi7WWR0f/B0zqZk/JjZf3vs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15764,39 +14848,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11840" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "01e28657-6150-482b-a7b8-4677d5c339db" + "21fc5572-a2e0-4e87-b52a-f0c74f22bee1" ], "x-ms-client-request-id": [ - "d53c8ad2-6b93-470a-9c71-e8174f3826cf-2020-04-23 01:03:48Z-Ps" + "8e2a8383-9507-40f7-a29e-d6856d18ce0f" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11843" ], "x-ms-correlation-request-id": [ - "01e28657-6150-482b-a7b8-4677d5c339db" + "21fc5572-a2e0-4e87-b52a-f0c74f22bee1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010349Z:01e28657-6150-482b-a7b8-4677d5c339db" + "CENTRALINDIA:20210419T072852Z:21fc5572-a2e0-4e87-b52a-f0c74f22bee1" ], "Date": [ - "Thu, 23 Apr 2020 01:03:49 GMT" + "Mon, 19 Apr 2021 07:28:51 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -15805,29 +14886,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4b1a777-0668-400e-8936-032a20f6ccb8-2020-04-23 01:04:00Z-Ps" + "f1e034bd-9dfa-4d37-80e6-d8fc6d06d70a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600240106)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205040106)\\/\",\"ClientRequestId\":\"e4b1a777-0668-400e-8936-032a20f6ccb8-2020-04-23 01:04:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8CGMxJYT4/06nSeY874kZzPlQ5raeDaLoT3bU6+orEw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813742690)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418542690)\\/\",\"ClientRequestId\":\"5a6472ce-31ab-426b-a53a-8bffac9faa5f-2021-04-19 07:29:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UQnSYAkTL6o7MbScDdv1n9VTgMHecza0FoGU5kFpsoU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15838,38 +14919,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11839" + "11842" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "cf18fd3f-7a4d-4f7e-b870-91bb9a5e3b9c" + "12da6578-9d48-489d-abf1-27532098e74e" ], "x-ms-client-request-id": [ - "e4b1a777-0668-400e-8936-032a20f6ccb8-2020-04-23 01:04:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f1e034bd-9dfa-4d37-80e6-d8fc6d06d70a" ], "x-ms-correlation-request-id": [ - "cf18fd3f-7a4d-4f7e-b870-91bb9a5e3b9c" + "12da6578-9d48-489d-abf1-27532098e74e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010400Z:cf18fd3f-7a4d-4f7e-b870-91bb9a5e3b9c" + "CENTRALINDIA:20210419T072904Z:12da6578-9d48-489d-abf1-27532098e74e" ], "Date": [ - "Thu, 23 Apr 2020 01:04:00 GMT" + "Mon, 19 Apr 2021 07:29:04 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -15878,29 +14956,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "081f0a5b-e59e-470f-b63a-914a9d7a7b6e-2020-04-23 01:04:10Z-Ps" + "26102b8c-8cbd-457e-bc4e-e6e239f4948e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600250621)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205050621)\\/\",\"ClientRequestId\":\"081f0a5b-e59e-470f-b63a-914a9d7a7b6e-2020-04-23 01:04:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Reau8xuTzpD2ZTzjVYwIe8R3AINulY73LM6t5k+Yww8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813754299)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418554299)\\/\",\"ClientRequestId\":\"3a13e27a-12bf-422b-be30-953d745fed72-2021-04-19 07:29:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"F5qskDRERSY82YzxPpr82XX2t3wQcJfrmu5ORijFaQA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15911,38 +14989,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11838" + "11841" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5055da94-c148-46db-a02f-d563e0bcde3f" + "04a31fb9-3c77-4d14-8e4e-80d70da5e790" ], "x-ms-client-request-id": [ - "081f0a5b-e59e-470f-b63a-914a9d7a7b6e-2020-04-23 01:04:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "26102b8c-8cbd-457e-bc4e-e6e239f4948e" ], "x-ms-correlation-request-id": [ - "5055da94-c148-46db-a02f-d563e0bcde3f" + "04a31fb9-3c77-4d14-8e4e-80d70da5e790" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010411Z:5055da94-c148-46db-a02f-d563e0bcde3f" + "CENTRALINDIA:20210419T072914Z:04a31fb9-3c77-4d14-8e4e-80d70da5e790" ], "Date": [ - "Thu, 23 Apr 2020 01:04:10 GMT" + "Mon, 19 Apr 2021 07:29:14 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -15951,29 +15026,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46c731bc-05d6-4f4f-933a-59276f24b714-2020-04-23 01:04:21Z-Ps" + "17d6c942-b0c8-4f6d-a3b7-e1bd7fab7c8e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600261161)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205061161)\\/\",\"ClientRequestId\":\"46c731bc-05d6-4f4f-933a-59276f24b714-2020-04-23 01:04:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uSe2EowIg9yfJnRpaZa6PfpemVi/6SgUOYzuiEnPfDw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813764628)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418564628)\\/\",\"ClientRequestId\":\"26e5e60a-da2d-47a1-ab6a-8fe170b53513-2021-04-19 07:29:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KXEM3SbdPon6t296qwWXwe3OmO6DiugtofEVbwQDw8U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15984,38 +15059,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11837" + "11840" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "db645c44-2fe6-46cc-a916-55a89150f8c8" + "b9422a7a-c376-4dc7-9a9c-c6e27a37d8e2" ], "x-ms-client-request-id": [ - "46c731bc-05d6-4f4f-933a-59276f24b714-2020-04-23 01:04:21Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "17d6c942-b0c8-4f6d-a3b7-e1bd7fab7c8e" ], "x-ms-correlation-request-id": [ - "db645c44-2fe6-46cc-a916-55a89150f8c8" + "b9422a7a-c376-4dc7-9a9c-c6e27a37d8e2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010421Z:db645c44-2fe6-46cc-a916-55a89150f8c8" + "CENTRALINDIA:20210419T072924Z:b9422a7a-c376-4dc7-9a9c-c6e27a37d8e2" ], "Date": [ - "Thu, 23 Apr 2020 01:04:20 GMT" + "Mon, 19 Apr 2021 07:29:24 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -16024,29 +15096,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68c5a33c-98c4-4a91-b02f-0b9eff28cb6f-2020-04-23 01:04:31Z-Ps" + "49924661-7609-4d20-9798-53009b7c9343" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600271647)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205071647)\\/\",\"ClientRequestId\":\"68c5a33c-98c4-4a91-b02f-0b9eff28cb6f-2020-04-23 01:04:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pIOhyrcVIYjc+Po9+NHZc5QXNjU60iC6iAhYMTq2azU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813774973)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418574973)\\/\",\"ClientRequestId\":\"d92e74c4-8e3f-4fb9-a5eb-4bda4ccbb03c-2021-04-19 07:29:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"B56t+ZDCxVpOLrF9zVNykhKhUTPWLgqzS9HzPfYLJIk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16057,38 +15129,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11836" + "11839" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3e96f600-6c25-437f-a2a0-ff4204dea71f" + "63c7213b-8b15-49c3-b44d-254cf05411d3" ], "x-ms-client-request-id": [ - "68c5a33c-98c4-4a91-b02f-0b9eff28cb6f-2020-04-23 01:04:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "49924661-7609-4d20-9798-53009b7c9343" ], "x-ms-correlation-request-id": [ - "3e96f600-6c25-437f-a2a0-ff4204dea71f" + "63c7213b-8b15-49c3-b44d-254cf05411d3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010431Z:3e96f600-6c25-437f-a2a0-ff4204dea71f" + "CENTRALINDIA:20210419T072935Z:63c7213b-8b15-49c3-b44d-254cf05411d3" ], "Date": [ - "Thu, 23 Apr 2020 01:04:31 GMT" + "Mon, 19 Apr 2021 07:29:34 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -16097,29 +15166,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9776ffef-d12b-4d1f-8607-f2a9af4d44bc-2020-04-23 01:04:42Z-Ps" + "c30c1aff-b8b2-4018-9301-67130b15b404" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600282136)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205082136)\\/\",\"ClientRequestId\":\"9776ffef-d12b-4d1f-8607-f2a9af4d44bc-2020-04-23 01:04:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7TzyL9SKQv9zGrgIjFDHyW45cRBvNueTkJpTVLqf+SA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813785302)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418585302)\\/\",\"ClientRequestId\":\"50f5f9d8-74d4-4b0d-b074-780d24fd0d27-2021-04-19 07:29:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HsESszMwhuKyr+t/3kwdWn+31NyRC8H33LYjo+OtWPs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16130,38 +15199,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11835" + "11838" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2a5a3040-8c05-4ca9-8f05-95e717060a62" + "6a9d57c1-9430-4747-b4cb-d6714835ff5a" ], "x-ms-client-request-id": [ - "9776ffef-d12b-4d1f-8607-f2a9af4d44bc-2020-04-23 01:04:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c30c1aff-b8b2-4018-9301-67130b15b404" ], "x-ms-correlation-request-id": [ - "2a5a3040-8c05-4ca9-8f05-95e717060a62" + "6a9d57c1-9430-4747-b4cb-d6714835ff5a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010442Z:2a5a3040-8c05-4ca9-8f05-95e717060a62" + "CENTRALINDIA:20210419T072945Z:6a9d57c1-9430-4747-b4cb-d6714835ff5a" ], "Date": [ - "Thu, 23 Apr 2020 01:04:42 GMT" + "Mon, 19 Apr 2021 07:29:45 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -16170,29 +15236,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5c08b48-c557-42cb-a7a7-b57bdca0dab8-2020-04-23 01:04:52Z-Ps" + "76b46257-e11c-4ffc-9385-06a78fbe8170" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600292656)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205092656)\\/\",\"ClientRequestId\":\"f5c08b48-c557-42cb-a7a7-b57bdca0dab8-2020-04-23 01:04:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZYCBbhgJqeKDIi5UClDznvOMlXU+3Rx7Y0D4WG2Ue3c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813795631)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418595631)\\/\",\"ClientRequestId\":\"1f025ca6-1a59-4c01-a2b9-d2e5fe14b7f0-2021-04-19 07:29:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SpZ3RDrTSYwpvniCC73lpvVvX66NF1zNwSGR8PvttIc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16202,39 +15268,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11837" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4f50e0d5-02b6-45c5-bd5b-18df3c96a096" + "66ce147f-4bfd-4aa6-b35b-95f6827fb82a" ], "x-ms-client-request-id": [ - "f5c08b48-c557-42cb-a7a7-b57bdca0dab8-2020-04-23 01:04:52Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11834" + "76b46257-e11c-4ffc-9385-06a78fbe8170" ], "x-ms-correlation-request-id": [ - "4f50e0d5-02b6-45c5-bd5b-18df3c96a096" + "66ce147f-4bfd-4aa6-b35b-95f6827fb82a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010453Z:4f50e0d5-02b6-45c5-bd5b-18df3c96a096" + "CENTRALINDIA:20210419T072955Z:66ce147f-4bfd-4aa6-b35b-95f6827fb82a" ], "Date": [ - "Thu, 23 Apr 2020 01:04:52 GMT" + "Mon, 19 Apr 2021 07:29:55 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -16243,29 +15306,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a0a8608-db01-407a-8f18-47a454448cb0-2020-04-23 01:05:03Z-Ps" + "437f9c79-48a6-44bf-a5cf-5bba8d69d6f1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600303267)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205103267)\\/\",\"ClientRequestId\":\"4a0a8608-db01-407a-8f18-47a454448cb0-2020-04-23 01:05:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ShPSGlx2CtI6OF2x2S7NJuIwUpjzAq7Wx+MU5xn1SAQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813805965)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418605965)\\/\",\"ClientRequestId\":\"6eca8ebd-11a0-42e2-a07b-91389ac603c0-2021-04-19 07:30:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SavJ/67MWoMf/xnxXLGyjIPmssgD78EpyLWoXmVZ/Rs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16276,38 +15339,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11833" + "11836" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "243c9e49-8fab-4e62-a60d-b6606fb1cece" + "f7a2ea80-162e-4675-851a-330e83a8bad4" ], "x-ms-client-request-id": [ - "4a0a8608-db01-407a-8f18-47a454448cb0-2020-04-23 01:05:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "437f9c79-48a6-44bf-a5cf-5bba8d69d6f1" ], "x-ms-correlation-request-id": [ - "243c9e49-8fab-4e62-a60d-b6606fb1cece" + "f7a2ea80-162e-4675-851a-330e83a8bad4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010505Z:243c9e49-8fab-4e62-a60d-b6606fb1cece" + "CENTRALINDIA:20210419T073006Z:f7a2ea80-162e-4675-851a-330e83a8bad4" ], "Date": [ - "Thu, 23 Apr 2020 01:05:04 GMT" + "Mon, 19 Apr 2021 07:30:05 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -16316,29 +15376,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08d70f62-49eb-439a-ac55-7965c77f1fe0-2020-04-23 01:05:15Z-Ps" + "7e51cd5b-cc67-43de-8e4e-bfb2cd532c20" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600315181)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205115181)\\/\",\"ClientRequestId\":\"08d70f62-49eb-439a-ac55-7965c77f1fe0-2020-04-23 01:05:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cjvFp1Kf1SvW8M0gCocZCeDxNikT8kNhmTrswnZR/qs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813816307)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418616307)\\/\",\"ClientRequestId\":\"7fab0cd2-fb47-447c-8fb8-95ce235775c2-2021-04-19 07:30:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nYuaLXhEcBs/mNWwWhcBOAIvAxu83P8ARX6upxpvivY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16349,38 +15409,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11832" + "11835" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "968aef0a-20a7-4c67-88b0-1b5c875fd3a7" + "09556e3c-9b86-4e81-ba9b-a2d1fb26d295" ], "x-ms-client-request-id": [ - "08d70f62-49eb-439a-ac55-7965c77f1fe0-2020-04-23 01:05:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7e51cd5b-cc67-43de-8e4e-bfb2cd532c20" ], "x-ms-correlation-request-id": [ - "968aef0a-20a7-4c67-88b0-1b5c875fd3a7" + "09556e3c-9b86-4e81-ba9b-a2d1fb26d295" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010515Z:968aef0a-20a7-4c67-88b0-1b5c875fd3a7" + "CENTRALINDIA:20210419T073016Z:09556e3c-9b86-4e81-ba9b-a2d1fb26d295" ], "Date": [ - "Thu, 23 Apr 2020 01:05:15 GMT" + "Mon, 19 Apr 2021 07:30:15 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -16389,29 +15446,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dad2ab77-9fd1-4ae0-8f27-64b913832e18-2020-04-23 01:05:25Z-Ps" + "1904706b-7730-4e26-94f1-0c6747fa39a7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600325671)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205125671)\\/\",\"ClientRequestId\":\"dad2ab77-9fd1-4ae0-8f27-64b913832e18-2020-04-23 01:05:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uK2Uie/4gonDtqP/AiMVRmVtN7eLPDbC///AKrfDb6E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813826682)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418626682)\\/\",\"ClientRequestId\":\"761b7993-1538-4a11-a95b-234ed69e3c62-2021-04-19 07:30:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OVKRCxU+/6dwZ4Oka/sI+HlMB+d6JmrIsYNFPFSiJsA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16422,38 +15479,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11831" + "11834" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "09d48f83-cb07-490c-92ea-0c1094b1c182" + "5af528ea-e15e-4a46-b60b-f80453b6619e" ], "x-ms-client-request-id": [ - "dad2ab77-9fd1-4ae0-8f27-64b913832e18-2020-04-23 01:05:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1904706b-7730-4e26-94f1-0c6747fa39a7" ], "x-ms-correlation-request-id": [ - "09d48f83-cb07-490c-92ea-0c1094b1c182" + "5af528ea-e15e-4a46-b60b-f80453b6619e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010526Z:09d48f83-cb07-490c-92ea-0c1094b1c182" + "CENTRALINDIA:20210419T073026Z:5af528ea-e15e-4a46-b60b-f80453b6619e" ], "Date": [ - "Thu, 23 Apr 2020 01:05:25 GMT" + "Mon, 19 Apr 2021 07:30:26 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -16462,29 +15516,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "468351ce-a17c-4e87-a346-d369780c495a-2020-04-23 01:05:36Z-Ps" + "8fe28446-7b41-49ca-8a69-e978ff94a2d3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600336194)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205136194)\\/\",\"ClientRequestId\":\"468351ce-a17c-4e87-a346-d369780c495a-2020-04-23 01:05:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fV1oabxlvlA/InbjsZxwPE8BayAe1uATiDNJ9N73JF0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813837025)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418637025)\\/\",\"ClientRequestId\":\"ac161761-ba92-479e-9c09-ac6796fce080-2021-04-19 07:30:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MRYG54JtaVKrKOLWr3luHBv9DJcSBlROuAAyFC6Ww+I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16495,38 +15549,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11830" + "11833" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bcf32aea-726c-4c7c-a4d8-9be0719846b0" + "01ece399-f6a0-4c50-97ed-75ab167f96f6" ], "x-ms-client-request-id": [ - "468351ce-a17c-4e87-a346-d369780c495a-2020-04-23 01:05:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8fe28446-7b41-49ca-8a69-e978ff94a2d3" ], "x-ms-correlation-request-id": [ - "bcf32aea-726c-4c7c-a4d8-9be0719846b0" + "01ece399-f6a0-4c50-97ed-75ab167f96f6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010536Z:bcf32aea-726c-4c7c-a4d8-9be0719846b0" + "CENTRALINDIA:20210419T073037Z:01ece399-f6a0-4c50-97ed-75ab167f96f6" ], "Date": [ - "Thu, 23 Apr 2020 01:05:35 GMT" + "Mon, 19 Apr 2021 07:30:37 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -16535,29 +15586,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fbfd59b-cd96-44b4-a174-379daceb21f5-2020-04-23 01:05:46Z-Ps" + "64c6a107-7421-4557-b4fa-1a2898ddae8b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600346698)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205146698)\\/\",\"ClientRequestId\":\"3fbfd59b-cd96-44b4-a174-379daceb21f5-2020-04-23 01:05:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YEVOFCKJi5ny4ZJC9DXUVRuj4dXge5pbTYGQePxDfco=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813847362)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418647362)\\/\",\"ClientRequestId\":\"ccaed33e-f730-496d-929d-32b9b3851d7d-2021-04-19 07:30:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0LeE46Qbxj+2nl5P9rOwAQvL1l7HCSfp3dmpRBf357E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16568,38 +15619,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11829" + "11832" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "63818d48-16b5-4af4-a8d5-b29f55577597" + "a04ffe6f-66dd-403c-8410-2b69b47a7f9b" ], "x-ms-client-request-id": [ - "3fbfd59b-cd96-44b4-a174-379daceb21f5-2020-04-23 01:05:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "64c6a107-7421-4557-b4fa-1a2898ddae8b" ], "x-ms-correlation-request-id": [ - "63818d48-16b5-4af4-a8d5-b29f55577597" + "a04ffe6f-66dd-403c-8410-2b69b47a7f9b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010547Z:63818d48-16b5-4af4-a8d5-b29f55577597" + "CENTRALINDIA:20210419T073047Z:a04ffe6f-66dd-403c-8410-2b69b47a7f9b" ], "Date": [ - "Thu, 23 Apr 2020 01:05:46 GMT" + "Mon, 19 Apr 2021 07:30:47 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -16608,29 +15656,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "876d2712-a87d-48f4-9c2e-4bae550633bf-2020-04-23 01:05:57Z-Ps" + "da2676cc-e100-4c43-921f-9891ffacd7bf" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600357251)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205157251)\\/\",\"ClientRequestId\":\"876d2712-a87d-48f4-9c2e-4bae550633bf-2020-04-23 01:05:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/RDSxdfjS+U194hJlZTzevqrz+GVsQ/8lHGYhdKz/QM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813857717)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418657717)\\/\",\"ClientRequestId\":\"a20224c5-1f46-49a5-b36e-330592096f11-2021-04-19 07:30:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eoH/Nn/qkZ8VBmZP/NISCHp8Gv+/GnQfTwJD1avCOec=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16641,38 +15689,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11828" + "11831" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d08bf469-b517-4f44-9594-47b6a29a2a54" + "c157f6d6-8d63-417f-b0b2-ee97f5567ea9" ], "x-ms-client-request-id": [ - "876d2712-a87d-48f4-9c2e-4bae550633bf-2020-04-23 01:05:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "da2676cc-e100-4c43-921f-9891ffacd7bf" ], "x-ms-correlation-request-id": [ - "d08bf469-b517-4f44-9594-47b6a29a2a54" + "c157f6d6-8d63-417f-b0b2-ee97f5567ea9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010557Z:d08bf469-b517-4f44-9594-47b6a29a2a54" + "CENTRALINDIA:20210419T073057Z:c157f6d6-8d63-417f-b0b2-ee97f5567ea9" ], "Date": [ - "Thu, 23 Apr 2020 01:05:57 GMT" + "Mon, 19 Apr 2021 07:30:57 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -16681,29 +15726,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5253290-334d-4da0-9505-0207d7d1d822-2020-04-23 01:06:07Z-Ps" + "71a405ab-cda3-4c86-8bef-ef36fe32c0f0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600367754)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205167754)\\/\",\"ClientRequestId\":\"b5253290-334d-4da0-9505-0207d7d1d822-2020-04-23 01:06:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZdlouCDVMzfKmeis/cCQoe4BndrcpO+SfWsYO/kKkhY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813868044)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418668044)\\/\",\"ClientRequestId\":\"392ecdff-5393-4144-82b9-00d7f625ff19-2021-04-19 07:31:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6KK1Wmqz2BT+5SVFs9TpXAUPEcBYU6v6R4Ko1fasD3M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16713,39 +15758,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11830" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2efdcc23-7b21-497a-885c-adf6504a5b02" + "4c8b78c1-205e-475c-b436-2925a0377f8d" ], "x-ms-client-request-id": [ - "b5253290-334d-4da0-9505-0207d7d1d822-2020-04-23 01:06:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11827" + "71a405ab-cda3-4c86-8bef-ef36fe32c0f0" ], "x-ms-correlation-request-id": [ - "2efdcc23-7b21-497a-885c-adf6504a5b02" + "4c8b78c1-205e-475c-b436-2925a0377f8d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010608Z:2efdcc23-7b21-497a-885c-adf6504a5b02" + "CENTRALINDIA:20210419T073108Z:4c8b78c1-205e-475c-b436-2925a0377f8d" ], "Date": [ - "Thu, 23 Apr 2020 01:06:07 GMT" + "Mon, 19 Apr 2021 07:31:08 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -16754,29 +15796,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd5ad341-c197-4e8c-b5cd-983c1fb13ae7-2020-04-23 01:06:18Z-Ps" + "929a0fa6-7c84-430d-969f-dc863e1ebadf" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600378301)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205178301)\\/\",\"ClientRequestId\":\"dd5ad341-c197-4e8c-b5cd-983c1fb13ae7-2020-04-23 01:06:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EE+duTUmZKL3gD/gN7bynKy2BctHrYS01Uaa8SVEWNE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813878388)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418678388)\\/\",\"ClientRequestId\":\"eda01d1c-8774-45fe-8805-86d13ac74991-2021-04-19 07:31:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UZTPwCFlW4EYIUWTezdrawBqwkc3+crIicfa6eo6pkU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16787,38 +15829,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11826" + "11829" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3c43fb73-2072-4fb1-b5a0-fd8fc58b81b8" + "dc1dd751-a309-4824-b5c0-249f55b7dcc8" ], "x-ms-client-request-id": [ - "dd5ad341-c197-4e8c-b5cd-983c1fb13ae7-2020-04-23 01:06:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "929a0fa6-7c84-430d-969f-dc863e1ebadf" ], "x-ms-correlation-request-id": [ - "3c43fb73-2072-4fb1-b5a0-fd8fc58b81b8" + "dc1dd751-a309-4824-b5c0-249f55b7dcc8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010619Z:3c43fb73-2072-4fb1-b5a0-fd8fc58b81b8" + "CENTRALINDIA:20210419T073118Z:dc1dd751-a309-4824-b5c0-249f55b7dcc8" ], "Date": [ - "Thu, 23 Apr 2020 01:06:19 GMT" + "Mon, 19 Apr 2021 07:31:18 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -16827,29 +15866,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d59bc06a-e290-4d47-9d7f-7ca3d5dcd925-2020-04-23 01:06:29Z-Ps" + "21c761ce-b555-43c6-92e9-27176395f1c7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600389888)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205189888)\\/\",\"ClientRequestId\":\"d59bc06a-e290-4d47-9d7f-7ca3d5dcd925-2020-04-23 01:06:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9huq0XRCzyHUfPpiu5IVBxOou0hP713cyjm5HE9quag=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813888730)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418688730)\\/\",\"ClientRequestId\":\"4e01e096-38dd-483f-9d9b-2f5a87745121-2021-04-19 07:31:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YWoz1Ftck6Essw3OeVyh1a5WSLOAVRqsdKLoncsbH8I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16860,38 +15899,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11825" + "11828" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1f6b7cbb-c1e0-4712-93bb-423f5b96e487" + "3866bf0e-63f0-4910-960d-a8161e39aab6" ], "x-ms-client-request-id": [ - "d59bc06a-e290-4d47-9d7f-7ca3d5dcd925-2020-04-23 01:06:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "21c761ce-b555-43c6-92e9-27176395f1c7" ], "x-ms-correlation-request-id": [ - "1f6b7cbb-c1e0-4712-93bb-423f5b96e487" + "3866bf0e-63f0-4910-960d-a8161e39aab6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010630Z:1f6b7cbb-c1e0-4712-93bb-423f5b96e487" + "CENTRALINDIA:20210419T073128Z:3866bf0e-63f0-4910-960d-a8161e39aab6" ], "Date": [ - "Thu, 23 Apr 2020 01:06:29 GMT" + "Mon, 19 Apr 2021 07:31:28 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -16900,29 +15936,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7448494-560c-40e9-a568-b81af153cdbb-2020-04-23 01:06:40Z-Ps" + "f344088f-4957-4b70-a881-7a8864364668" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600400413)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205200413)\\/\",\"ClientRequestId\":\"c7448494-560c-40e9-a568-b81af153cdbb-2020-04-23 01:06:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HSZuh6eqLst2Qzg3zKXZeg3EN/Miu6T9KxpWkH1hLE0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813899084)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418699084)\\/\",\"ClientRequestId\":\"fb4b66bc-54b8-4d0d-a200-07d571d8a384-2021-04-19 07:31:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oNaBee2+oUxnICET9IGyor/23/w5/cHsDQ7/JUqSguU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16933,38 +15969,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11824" + "11827" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2540178f-5c56-461d-9b9e-92a4efed27d2" + "c044f448-2405-4ab2-9308-13377e43ec29" ], "x-ms-client-request-id": [ - "c7448494-560c-40e9-a568-b81af153cdbb-2020-04-23 01:06:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f344088f-4957-4b70-a881-7a8864364668" ], "x-ms-correlation-request-id": [ - "2540178f-5c56-461d-9b9e-92a4efed27d2" + "c044f448-2405-4ab2-9308-13377e43ec29" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010640Z:2540178f-5c56-461d-9b9e-92a4efed27d2" + "CENTRALINDIA:20210419T073139Z:c044f448-2405-4ab2-9308-13377e43ec29" ], "Date": [ - "Thu, 23 Apr 2020 01:06:40 GMT" + "Mon, 19 Apr 2021 07:31:38 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -16973,29 +16006,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44421fb8-19b7-4612-9f67-0dcf6ccf0d36-2020-04-23 01:06:50Z-Ps" + "c055c72a-c5c1-4969-afcb-9bab14bfd058" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600410943)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205210943)\\/\",\"ClientRequestId\":\"44421fb8-19b7-4612-9f67-0dcf6ccf0d36-2020-04-23 01:06:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PFWrCV4I6rNt8XNcpFnIXx8Qkw4TEnblYJW8aOca1Go=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813909439)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418709439)\\/\",\"ClientRequestId\":\"88cc3973-f87c-4856-9e2a-b3926b698803-2021-04-19 07:31:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/nHSiEfuiZaqzcFg23QXUbgVJCWf0qvOTL4TVTvXZgs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17006,38 +16039,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11823" + "11826" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7f2497c9-c489-406f-b0d6-1fd3d45f0454" + "504fd9d8-cf3d-4900-9897-caf5aca795c3" ], "x-ms-client-request-id": [ - "44421fb8-19b7-4612-9f67-0dcf6ccf0d36-2020-04-23 01:06:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c055c72a-c5c1-4969-afcb-9bab14bfd058" ], "x-ms-correlation-request-id": [ - "7f2497c9-c489-406f-b0d6-1fd3d45f0454" + "504fd9d8-cf3d-4900-9897-caf5aca795c3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010651Z:7f2497c9-c489-406f-b0d6-1fd3d45f0454" + "CENTRALINDIA:20210419T073149Z:504fd9d8-cf3d-4900-9897-caf5aca795c3" ], "Date": [ - "Thu, 23 Apr 2020 01:06:50 GMT" + "Mon, 19 Apr 2021 07:31:48 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -17046,29 +16076,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee881aa0-3e3a-484e-bdc5-09d8a54626ce-2020-04-23 01:07:01Z-Ps" + "1c16470d-e53a-48ea-92ca-f389de032c0b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600421465)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205221465)\\/\",\"ClientRequestId\":\"ee881aa0-3e3a-484e-bdc5-09d8a54626ce-2020-04-23 01:07:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HBCpePZfWngBXxpS5YdCb0UVMuc9yfNFvJYZnrPnTxQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813919787)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418719787)\\/\",\"ClientRequestId\":\"6225b452-3258-405e-bafe-9e9fb933bab4-2021-04-19 07:31:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"C0xVF1qMT8TFVC1mtHxY7MYphDxdsHp2s4jixUzZ58E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17079,38 +16109,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11822" + "11825" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5da95776-4a24-45b2-a3a5-96d8ce1fcaee" + "3f432f4e-3a35-40a3-a96c-a5d2f3334086" ], "x-ms-client-request-id": [ - "ee881aa0-3e3a-484e-bdc5-09d8a54626ce-2020-04-23 01:07:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1c16470d-e53a-48ea-92ca-f389de032c0b" ], "x-ms-correlation-request-id": [ - "5da95776-4a24-45b2-a3a5-96d8ce1fcaee" + "3f432f4e-3a35-40a3-a96c-a5d2f3334086" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010701Z:5da95776-4a24-45b2-a3a5-96d8ce1fcaee" + "CENTRALINDIA:20210419T073200Z:3f432f4e-3a35-40a3-a96c-a5d2f3334086" ], "Date": [ - "Thu, 23 Apr 2020 01:07:01 GMT" + "Mon, 19 Apr 2021 07:31:59 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -17119,29 +16146,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c19ed9e9-7b3e-4d6c-91ee-cd87b29f5d88-2020-04-23 01:07:12Z-Ps" + "bf9df878-4d5e-4e9f-8606-3fa19371f639" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600432091)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205232091)\\/\",\"ClientRequestId\":\"c19ed9e9-7b3e-4d6c-91ee-cd87b29f5d88-2020-04-23 01:07:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"a5DqOtbRczyXMOR5r5wsXeR21NHW7TS5uU7vPvHchXM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813930121)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418730121)\\/\",\"ClientRequestId\":\"fe555d93-70b4-475a-9069-61a2b226dd06-2021-04-19 07:32:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"apqBHTfN3lRAW6tYbPDcFxvaLkmCGmGUhVSKSlBlnQc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17152,38 +16179,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11821" + "11824" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1e5e06e0-5552-45ed-a121-576940740be9" + "a64a2a6c-3278-4853-8318-82e67a53f154" ], "x-ms-client-request-id": [ - "c19ed9e9-7b3e-4d6c-91ee-cd87b29f5d88-2020-04-23 01:07:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bf9df878-4d5e-4e9f-8606-3fa19371f639" ], "x-ms-correlation-request-id": [ - "1e5e06e0-5552-45ed-a121-576940740be9" + "a64a2a6c-3278-4853-8318-82e67a53f154" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010712Z:1e5e06e0-5552-45ed-a121-576940740be9" + "CENTRALINDIA:20210419T073210Z:a64a2a6c-3278-4853-8318-82e67a53f154" ], "Date": [ - "Thu, 23 Apr 2020 01:07:11 GMT" + "Mon, 19 Apr 2021 07:32:10 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -17192,29 +16216,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e62955a-bfea-4e5b-a6dd-11f557fc9c36-2020-04-23 01:07:22Z-Ps" + "378991df-2b74-4de2-80a1-025b239af1ab" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600442568)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205242568)\\/\",\"ClientRequestId\":\"0e62955a-bfea-4e5b-a6dd-11f557fc9c36-2020-04-23 01:07:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"stAPqGEExZC8DKfM6m0gR16UdkUPze1949AxWpIypjk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813940471)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418740471)\\/\",\"ClientRequestId\":\"d6389c18-3817-401d-9d2d-0a9318764cae-2021-04-19 07:32:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SCrfHIMGpIl3vCFU95GFbYgHxvJKVcIl/49+xSEbH4U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17224,39 +16248,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11823" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2a07a24d-165f-4a0f-988d-cdbc066d2fa1" + "d72be9a5-e95a-41a1-9dcb-f3041c82164b" ], "x-ms-client-request-id": [ - "0e62955a-bfea-4e5b-a6dd-11f557fc9c36-2020-04-23 01:07:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11820" + "378991df-2b74-4de2-80a1-025b239af1ab" ], "x-ms-correlation-request-id": [ - "2a07a24d-165f-4a0f-988d-cdbc066d2fa1" + "d72be9a5-e95a-41a1-9dcb-f3041c82164b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010722Z:2a07a24d-165f-4a0f-988d-cdbc066d2fa1" + "CENTRALINDIA:20210419T073220Z:d72be9a5-e95a-41a1-9dcb-f3041c82164b" ], "Date": [ - "Thu, 23 Apr 2020 01:07:22 GMT" + "Mon, 19 Apr 2021 07:32:20 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -17265,29 +16286,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fca0bf9-d8d5-4d16-b7f9-63911035de48-2020-04-23 01:07:33Z-Ps" + "92c0f1f7-5bbf-4ba5-9020-fc16ad3edff5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600453042)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205253042)\\/\",\"ClientRequestId\":\"0fca0bf9-d8d5-4d16-b7f9-63911035de48-2020-04-23 01:07:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"72kOyANt1bbhzMkl7oiEfuF4OcnaUmAJ95cF2dUegsM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813950807)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418750807)\\/\",\"ClientRequestId\":\"c1064c32-8da8-423e-8078-b5aa973cff29-2021-04-19 07:32:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AWqP2wtJY3B6jFJOM068Ky8p8nixzrvbIq9E/aP7rxE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17298,38 +16319,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11819" + "11822" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "81ba60fd-0c64-46a3-8ac7-f8ad33c6a255" + "f6a5ee4d-d371-45b1-b41b-f41a1f7a34db" ], "x-ms-client-request-id": [ - "0fca0bf9-d8d5-4d16-b7f9-63911035de48-2020-04-23 01:07:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "92c0f1f7-5bbf-4ba5-9020-fc16ad3edff5" ], "x-ms-correlation-request-id": [ - "81ba60fd-0c64-46a3-8ac7-f8ad33c6a255" + "f6a5ee4d-d371-45b1-b41b-f41a1f7a34db" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010734Z:81ba60fd-0c64-46a3-8ac7-f8ad33c6a255" + "CENTRALINDIA:20210419T073231Z:f6a5ee4d-d371-45b1-b41b-f41a1f7a34db" ], "Date": [ - "Thu, 23 Apr 2020 01:07:34 GMT" + "Mon, 19 Apr 2021 07:32:30 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -17338,29 +16356,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58f5252e-28e0-4079-bbac-83997dfeb407-2020-04-23 01:07:44Z-Ps" + "e2041e70-e461-4917-b5cb-79044fa148b8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600464771)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205264771)\\/\",\"ClientRequestId\":\"58f5252e-28e0-4079-bbac-83997dfeb407-2020-04-23 01:07:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sbX3izVX8EyxESyob+fDbpVg3heC1EI1JOUB5iyl57g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813961149)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418761149)\\/\",\"ClientRequestId\":\"d1fef40c-31a5-4e4b-8d3f-2b8669a704ed-2021-04-19 07:32:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"19jKZEhAk050bFfZPZLNwlZmI1WXknZFPfVnXnXfMlM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17371,38 +16389,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11818" + "11821" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a7e26b28-f817-400b-b332-157fb481352a" + "b2b9b499-93ca-4fb9-859f-235aff98e1f0" ], "x-ms-client-request-id": [ - "58f5252e-28e0-4079-bbac-83997dfeb407-2020-04-23 01:07:44Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e2041e70-e461-4917-b5cb-79044fa148b8" ], "x-ms-correlation-request-id": [ - "a7e26b28-f817-400b-b332-157fb481352a" + "b2b9b499-93ca-4fb9-859f-235aff98e1f0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010745Z:a7e26b28-f817-400b-b332-157fb481352a" + "CENTRALINDIA:20210419T073241Z:b2b9b499-93ca-4fb9-859f-235aff98e1f0" ], "Date": [ - "Thu, 23 Apr 2020 01:07:44 GMT" + "Mon, 19 Apr 2021 07:32:40 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -17411,29 +16426,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69f385ca-8032-4647-8395-475b2e93838d-2020-04-23 01:07:55Z-Ps" + "1cf5c3e0-8905-4a19-8680-192c4e97f7d7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600475343)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205275343)\\/\",\"ClientRequestId\":\"69f385ca-8032-4647-8395-475b2e93838d-2020-04-23 01:07:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Hmln59Z1n2mpko6b/iurpiGpbJgQNrsK9uSbQtb5Yv8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813971490)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418771490)\\/\",\"ClientRequestId\":\"6cfcaf6f-474a-49f6-a8b6-28d572a92fdd-2021-04-19 07:32:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7rAmWi4otP2fdmqQXrLGctnXwaanBq8rlQAF35QvhBk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17444,38 +16459,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11817" + "11820" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "04aa28b3-1b4b-438f-9546-443abe7cc907" + "1c275fca-f6ba-4af7-8b56-ed71734edfec" ], "x-ms-client-request-id": [ - "69f385ca-8032-4647-8395-475b2e93838d-2020-04-23 01:07:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1cf5c3e0-8905-4a19-8680-192c4e97f7d7" ], "x-ms-correlation-request-id": [ - "04aa28b3-1b4b-438f-9546-443abe7cc907" + "1c275fca-f6ba-4af7-8b56-ed71734edfec" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010755Z:04aa28b3-1b4b-438f-9546-443abe7cc907" + "CENTRALINDIA:20210419T073251Z:1c275fca-f6ba-4af7-8b56-ed71734edfec" ], "Date": [ - "Thu, 23 Apr 2020 01:07:55 GMT" + "Mon, 19 Apr 2021 07:32:50 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -17484,29 +16496,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79cedec1-9a8c-4284-b93b-9fa7ad2f00fa-2020-04-23 01:08:05Z-Ps" + "e005e57d-b560-47e6-ab90-c68dfd6c8d9a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600485853)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205285853)\\/\",\"ClientRequestId\":\"79cedec1-9a8c-4284-b93b-9fa7ad2f00fa-2020-04-23 01:08:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PasnV6dI6F3CzKPVNlbto3+nATNI/6ejWyUnWvZ27IA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813981838)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418781838)\\/\",\"ClientRequestId\":\"49848478-e975-4cfa-a37d-d73428abba6c-2021-04-19 07:33:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"28AsFdCntx7O7mZP8Os+rcTOM6S+6D49CUyLaRnL1a0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17517,38 +16529,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11816" + "11819" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0ff459e9-fd87-4dd6-9408-5c94d08bcf3c" + "83b87433-9d01-4e38-a0fc-fdc11ceffcc0" ], "x-ms-client-request-id": [ - "79cedec1-9a8c-4284-b93b-9fa7ad2f00fa-2020-04-23 01:08:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e005e57d-b560-47e6-ab90-c68dfd6c8d9a" ], "x-ms-correlation-request-id": [ - "0ff459e9-fd87-4dd6-9408-5c94d08bcf3c" + "83b87433-9d01-4e38-a0fc-fdc11ceffcc0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010806Z:0ff459e9-fd87-4dd6-9408-5c94d08bcf3c" + "CENTRALINDIA:20210419T073302Z:83b87433-9d01-4e38-a0fc-fdc11ceffcc0" ], "Date": [ - "Thu, 23 Apr 2020 01:08:05 GMT" + "Mon, 19 Apr 2021 07:33:01 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -17557,29 +16566,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74176b94-59cf-4bcf-8cc2-a410209cf9a9-2020-04-23 01:08:16Z-Ps" + "93beded5-edf2-4b95-a1d0-758f0aa93e30" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600496335)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205296335)\\/\",\"ClientRequestId\":\"74176b94-59cf-4bcf-8cc2-a410209cf9a9-2020-04-23 01:08:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3X3K+BEl1u2WfagaEL9dThOqsnOzIv6K/UI6dtRfeFM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618813992171)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418792171)\\/\",\"ClientRequestId\":\"341b6e19-9259-46b1-8d97-394e2b8a69fc-2021-04-19 07:33:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sM0bE0tzmplB4brb5I5SpsdIGzniCevasttYKDizKKw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17590,38 +16599,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11815" + "11818" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3f9c42f3-6034-4115-8aff-3250ee69f0be" + "d8cf2ecb-b870-4bb4-aafe-5f6a570a9a4f" ], "x-ms-client-request-id": [ - "74176b94-59cf-4bcf-8cc2-a410209cf9a9-2020-04-23 01:08:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "93beded5-edf2-4b95-a1d0-758f0aa93e30" ], "x-ms-correlation-request-id": [ - "3f9c42f3-6034-4115-8aff-3250ee69f0be" + "d8cf2ecb-b870-4bb4-aafe-5f6a570a9a4f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010816Z:3f9c42f3-6034-4115-8aff-3250ee69f0be" + "CENTRALINDIA:20210419T073312Z:d8cf2ecb-b870-4bb4-aafe-5f6a570a9a4f" ], "Date": [ - "Thu, 23 Apr 2020 01:08:16 GMT" + "Mon, 19 Apr 2021 07:33:11 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -17630,29 +16636,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fad43432-e51d-498d-a227-7fc0a4a67dcf-2020-04-23 01:08:26Z-Ps" + "1bf73c60-5007-4f13-9849-e34c18ebd79e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600506837)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205306837)\\/\",\"ClientRequestId\":\"fad43432-e51d-498d-a227-7fc0a4a67dcf-2020-04-23 01:08:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4cSK7fuTl9+9WkVxBzsJyAHjZJeOnWHpc4t2cNMjWng=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814002542)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418802542)\\/\",\"ClientRequestId\":\"25faa5ae-9f26-4a3c-87e2-522ff81294a9-2021-04-19 07:33:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"K085gfGDrI4aezMUV0ubvrvdDJmg4WuOlqh7iHIpTK8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17663,38 +16669,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11814" + "11817" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "68ff897a-9aa8-4f15-8edc-62a09216f71f" + "f6effa36-4ca4-438d-a3f2-dac7e6a1d6b5" ], "x-ms-client-request-id": [ - "fad43432-e51d-498d-a227-7fc0a4a67dcf-2020-04-23 01:08:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1bf73c60-5007-4f13-9849-e34c18ebd79e" ], "x-ms-correlation-request-id": [ - "68ff897a-9aa8-4f15-8edc-62a09216f71f" + "f6effa36-4ca4-438d-a3f2-dac7e6a1d6b5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010827Z:68ff897a-9aa8-4f15-8edc-62a09216f71f" + "CENTRALINDIA:20210419T073322Z:f6effa36-4ca4-438d-a3f2-dac7e6a1d6b5" ], "Date": [ - "Thu, 23 Apr 2020 01:08:26 GMT" + "Mon, 19 Apr 2021 07:33:22 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -17703,29 +16706,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b378815-6c55-4de0-b23f-d78deba1b7ea-2020-04-23 01:08:37Z-Ps" + "8f8ef97e-ce37-43f1-a137-c930eddcafc6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600517438)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205317438)\\/\",\"ClientRequestId\":\"6b378815-6c55-4de0-b23f-d78deba1b7ea-2020-04-23 01:08:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ua8squf076rwT/pgsWk5cC4F4eyF3tpTZJ7GL9kSofk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814012868)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418812868)\\/\",\"ClientRequestId\":\"9d2559d8-51a7-490b-b61b-f868e029525a-2021-04-19 07:33:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"APykLrLiAwcR6sLZWll2UfksfRl1cJlWGYU/3qHFuBI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17735,39 +16738,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11816" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c6284091-8778-43b9-bbd7-a7c003c9c951" + "996690a3-3539-41fe-b243-5335459a6314" ], "x-ms-client-request-id": [ - "6b378815-6c55-4de0-b23f-d78deba1b7ea-2020-04-23 01:08:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11813" + "8f8ef97e-ce37-43f1-a137-c930eddcafc6" ], "x-ms-correlation-request-id": [ - "c6284091-8778-43b9-bbd7-a7c003c9c951" + "996690a3-3539-41fe-b243-5335459a6314" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010837Z:c6284091-8778-43b9-bbd7-a7c003c9c951" + "CENTRALINDIA:20210419T073333Z:996690a3-3539-41fe-b243-5335459a6314" ], "Date": [ - "Thu, 23 Apr 2020 01:08:37 GMT" + "Mon, 19 Apr 2021 07:33:32 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -17776,29 +16776,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23d83d49-b388-4cf8-a13b-6e1ee14b8234-2020-04-23 01:08:47Z-Ps" + "3e3d5da3-d3ff-4be2-bcff-8a72293969de" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600527942)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205327942)\\/\",\"ClientRequestId\":\"23d83d49-b388-4cf8-a13b-6e1ee14b8234-2020-04-23 01:08:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"slH0mWBdbAXRvyNznt8U0HfSmWqgmzfoy3SBnKmiRac=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814023273)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418823273)\\/\",\"ClientRequestId\":\"5c19fd79-6548-46be-acfe-3d70531c9053-2021-04-19 07:33:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gONiMhmF7mdFITijSoIsooLWopQru445gFEiZg98KiA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17808,39 +16808,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11815" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "62f24aad-3f17-40b2-898d-a1dce368e411" + "a267487c-e68e-4df7-b5d3-c7a410107bb2" ], "x-ms-client-request-id": [ - "23d83d49-b388-4cf8-a13b-6e1ee14b8234-2020-04-23 01:08:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11812" + "3e3d5da3-d3ff-4be2-bcff-8a72293969de" ], "x-ms-correlation-request-id": [ - "62f24aad-3f17-40b2-898d-a1dce368e411" + "a267487c-e68e-4df7-b5d3-c7a410107bb2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010849Z:62f24aad-3f17-40b2-898d-a1dce368e411" + "CENTRALINDIA:20210419T073343Z:a267487c-e68e-4df7-b5d3-c7a410107bb2" ], "Date": [ - "Thu, 23 Apr 2020 01:08:48 GMT" + "Mon, 19 Apr 2021 07:33:42 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -17849,29 +16846,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9fb89b5-f57f-4693-9832-101d8d47a762-2020-04-23 01:08:59Z-Ps" + "935ae526-38cf-49d2-82df-5a5e837c32aa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600539638)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205339638)\\/\",\"ClientRequestId\":\"d9fb89b5-f57f-4693-9832-101d8d47a762-2020-04-23 01:08:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YQ5KvH5yGabxxIksMvL/TdTv123WSCZnSgvMN6e19vM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814033786)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418833786)\\/\",\"ClientRequestId\":\"e7a0901e-e52f-44ad-8ac8-76ea070e995f-2021-04-19 07:33:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ff5FWaixP6tr7ZlltLuvKZnO8YXXscz8kZnmtndDb6I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17882,38 +16879,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11811" + "11814" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a22a5f27-1d5f-4105-b286-e6e3afb6a7b2" + "1b06ede2-5bee-402c-8a58-5c79198690e6" ], "x-ms-client-request-id": [ - "d9fb89b5-f57f-4693-9832-101d8d47a762-2020-04-23 01:08:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "935ae526-38cf-49d2-82df-5a5e837c32aa" ], "x-ms-correlation-request-id": [ - "a22a5f27-1d5f-4105-b286-e6e3afb6a7b2" + "1b06ede2-5bee-402c-8a58-5c79198690e6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010901Z:a22a5f27-1d5f-4105-b286-e6e3afb6a7b2" + "CENTRALINDIA:20210419T073354Z:1b06ede2-5bee-402c-8a58-5c79198690e6" ], "Date": [ - "Thu, 23 Apr 2020 01:09:00 GMT" + "Mon, 19 Apr 2021 07:33:53 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -17922,29 +16916,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04e2d9cc-7f29-4dca-8de5-0ad896fd3888-2020-04-23 01:09:11Z-Ps" + "c661cd1a-bcda-4fd2-a8b8-28bc07ffe932" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600551331)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205351331)\\/\",\"ClientRequestId\":\"04e2d9cc-7f29-4dca-8de5-0ad896fd3888-2020-04-23 01:09:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"i7DXVZvtem294wTDOTfuQSSFPLDCDKqU2JPYDBsmDCc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814044118)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418844118)\\/\",\"ClientRequestId\":\"b99e3925-138a-4e66-80be-5874784d4340-2021-04-19 07:34:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tslads1s9J8OlRCgVB9MidmUThQhIfEy8vNwosU6g00=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17955,38 +16949,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11810" + "11813" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "61fd210f-bd4e-4c00-be08-403f5325c048" + "9f3c2f43-b0e0-4d56-85bc-176fd60ef350" ], "x-ms-client-request-id": [ - "04e2d9cc-7f29-4dca-8de5-0ad896fd3888-2020-04-23 01:09:11Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c661cd1a-bcda-4fd2-a8b8-28bc07ffe932" ], "x-ms-correlation-request-id": [ - "61fd210f-bd4e-4c00-be08-403f5325c048" + "9f3c2f43-b0e0-4d56-85bc-176fd60ef350" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010911Z:61fd210f-bd4e-4c00-be08-403f5325c048" + "CENTRALINDIA:20210419T073404Z:9f3c2f43-b0e0-4d56-85bc-176fd60ef350" ], "Date": [ - "Thu, 23 Apr 2020 01:09:11 GMT" + "Mon, 19 Apr 2021 07:34:04 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -17995,29 +16986,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e995d6c-3d0b-49f4-a1c5-b15efc60f131-2020-04-23 01:09:21Z-Ps" + "12c0d8f9-e020-475c-9183-b7bd57e2e19e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600561894)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205361894)\\/\",\"ClientRequestId\":\"3e995d6c-3d0b-49f4-a1c5-b15efc60f131-2020-04-23 01:09:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LWKSNxQRd4H5Q5xvj8vKOqklDF7q0r//LR34JoRgD58=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814054615)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418854615)\\/\",\"ClientRequestId\":\"aa81a0a0-f1de-4f66-85ad-1ad3757ea2d6-2021-04-19 07:34:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8+ZXA4/BBEBllrpimxHPjR9CcXvox5ZcS6ORsckbX/E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18028,38 +17019,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11809" + "11812" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "aaf5a3da-7134-426b-a972-4d4214edece7" + "b79591d6-a541-4629-882a-d866f45cc516" ], "x-ms-client-request-id": [ - "3e995d6c-3d0b-49f4-a1c5-b15efc60f131-2020-04-23 01:09:21Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "12c0d8f9-e020-475c-9183-b7bd57e2e19e" ], "x-ms-correlation-request-id": [ - "aaf5a3da-7134-426b-a972-4d4214edece7" + "b79591d6-a541-4629-882a-d866f45cc516" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010922Z:aaf5a3da-7134-426b-a972-4d4214edece7" + "CENTRALINDIA:20210419T073414Z:b79591d6-a541-4629-882a-d866f45cc516" ], "Date": [ - "Thu, 23 Apr 2020 01:09:21 GMT" + "Mon, 19 Apr 2021 07:34:14 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -18068,29 +17056,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d128d353-1cde-4acc-a87d-18bbdfb45986-2020-04-23 01:09:32Z-Ps" + "caa71624-b947-4bcb-a862-379e7b672eac" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600572588)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205372588)\\/\",\"ClientRequestId\":\"d128d353-1cde-4acc-a87d-18bbdfb45986-2020-04-23 01:09:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"o/LW9jc3CpbjLc0Hq//p+8Y+6mDDO+YibWbkmpZCQ9A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814064956)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418864956)\\/\",\"ClientRequestId\":\"23a2b989-c5bb-4f09-9e75-214ea17aa79b-2021-04-19 07:34:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BVfMHfx+etD2ocwNzqX5v+5cfhymo7A9Zd1/pG+y4Tw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18101,38 +17089,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11808" + "11811" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "48a1d9f8-38f8-46bb-b63c-6baae28ea362" + "71502bc8-f195-4d7d-b25a-792d560520da" ], "x-ms-client-request-id": [ - "d128d353-1cde-4acc-a87d-18bbdfb45986-2020-04-23 01:09:32Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "caa71624-b947-4bcb-a862-379e7b672eac" ], "x-ms-correlation-request-id": [ - "48a1d9f8-38f8-46bb-b63c-6baae28ea362" + "71502bc8-f195-4d7d-b25a-792d560520da" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010932Z:48a1d9f8-38f8-46bb-b63c-6baae28ea362" + "CENTRALINDIA:20210419T073425Z:71502bc8-f195-4d7d-b25a-792d560520da" ], "Date": [ - "Thu, 23 Apr 2020 01:09:31 GMT" + "Mon, 19 Apr 2021 07:34:24 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -18141,29 +17126,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae2ad404-e25c-43f8-9d37-ce185def76a9-2020-04-23 01:09:43Z-Ps" + "d167bfde-7085-4759-94a6-c3fb4dcfa6b1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600583080)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205383080)\\/\",\"ClientRequestId\":\"ae2ad404-e25c-43f8-9d37-ce185def76a9-2020-04-23 01:09:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rynMZ0o2zp5yx0VTRhGVmXFQfnJWZv5JYBHnLpc8O1M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814075313)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418875313)\\/\",\"ClientRequestId\":\"5a69923f-aff4-4d6c-8231-4ea9222b229a-2021-04-19 07:34:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Po3Rf6Wc7MqjhctwTnouQAhnCaEXmOF4FBVOOOvoqE0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18174,38 +17159,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11807" + "11810" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "43a078d7-f2fb-49d0-a942-4ac1ee199955" + "ef3c86c3-7b22-4dab-8a6e-8e0562aa2fae" ], "x-ms-client-request-id": [ - "ae2ad404-e25c-43f8-9d37-ce185def76a9-2020-04-23 01:09:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d167bfde-7085-4759-94a6-c3fb4dcfa6b1" ], "x-ms-correlation-request-id": [ - "43a078d7-f2fb-49d0-a942-4ac1ee199955" + "ef3c86c3-7b22-4dab-8a6e-8e0562aa2fae" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010943Z:43a078d7-f2fb-49d0-a942-4ac1ee199955" + "CENTRALINDIA:20210419T073435Z:ef3c86c3-7b22-4dab-8a6e-8e0562aa2fae" ], "Date": [ - "Thu, 23 Apr 2020 01:09:43 GMT" + "Mon, 19 Apr 2021 07:34:35 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -18214,29 +17196,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "548ac689-5ab8-4935-8a47-4cd27922cc5b-2020-04-23 01:09:53Z-Ps" + "905df0dd-b68c-4a0b-9c1a-ac9038118b3c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600593632)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205393632)\\/\",\"ClientRequestId\":\"548ac689-5ab8-4935-8a47-4cd27922cc5b-2020-04-23 01:09:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9UlMKKBnNJcQSYci1EZo2moLe2Xk2q/Qll1V+vu/TFU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814085650)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418885650)\\/\",\"ClientRequestId\":\"cec69266-32e1-4e3b-ab5d-4f62f6030d54-2021-04-19 07:34:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"G4F+TiIUdARihvl07c+9SDeVtoLn6Mxf0LrRCT9pRRI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18247,38 +17229,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11806" + "11809" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bb304686-4fe9-4f7f-8c38-c77048ddd5be" + "0618a62a-c91e-4a45-b2b9-44f3243eb983" ], "x-ms-client-request-id": [ - "548ac689-5ab8-4935-8a47-4cd27922cc5b-2020-04-23 01:09:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "905df0dd-b68c-4a0b-9c1a-ac9038118b3c" ], "x-ms-correlation-request-id": [ - "bb304686-4fe9-4f7f-8c38-c77048ddd5be" + "0618a62a-c91e-4a45-b2b9-44f3243eb983" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T010954Z:bb304686-4fe9-4f7f-8c38-c77048ddd5be" + "CENTRALINDIA:20210419T073445Z:0618a62a-c91e-4a45-b2b9-44f3243eb983" ], "Date": [ - "Thu, 23 Apr 2020 01:09:53 GMT" + "Mon, 19 Apr 2021 07:34:45 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -18287,29 +17266,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20a1b54a-21f0-404c-a4b2-6fe048508fd7-2020-04-23 01:10:04Z-Ps" + "28f09d38-3564-4612-b845-881ee247f420" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600604176)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205404176)\\/\",\"ClientRequestId\":\"20a1b54a-21f0-404c-a4b2-6fe048508fd7-2020-04-23 01:10:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XCLCoQ88rt8DOdQpKCa9OxIboWIfHFWmib0Wh9YnP6U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814095995)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418895995)\\/\",\"ClientRequestId\":\"28103e75-db38-4b7f-b791-3f8b07d52081-2021-04-19 07:34:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4caDL6HTwwKPSg14MYHT65LA10hEckfEc8yiIsTvBTw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18319,39 +17298,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11808" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b229a389-0415-4f03-bca5-5e32f6173b85" + "d6608a03-c4b4-4034-8e47-d4b75895e3e8" ], "x-ms-client-request-id": [ - "20a1b54a-21f0-404c-a4b2-6fe048508fd7-2020-04-23 01:10:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11805" + "28f09d38-3564-4612-b845-881ee247f420" ], "x-ms-correlation-request-id": [ - "b229a389-0415-4f03-bca5-5e32f6173b85" + "d6608a03-c4b4-4034-8e47-d4b75895e3e8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011004Z:b229a389-0415-4f03-bca5-5e32f6173b85" + "CENTRALINDIA:20210419T073456Z:d6608a03-c4b4-4034-8e47-d4b75895e3e8" ], "Date": [ - "Thu, 23 Apr 2020 01:10:04 GMT" + "Mon, 19 Apr 2021 07:34:55 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -18360,29 +17336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6955972f-e968-4c4d-9292-5aff36df0923-2020-04-23 01:10:14Z-Ps" + "846e3180-0568-43b9-977e-ab6a3f28a46e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600614675)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205414675)\\/\",\"ClientRequestId\":\"6955972f-e968-4c4d-9292-5aff36df0923-2020-04-23 01:10:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jnMSWOv8ME4clQyhOBUdGl/DsgM4b+WL4C6DfmhO70g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814106398)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418906398)\\/\",\"ClientRequestId\":\"3199510b-66d2-4f4d-8066-44782b114f4f-2021-04-19 07:35:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QihAWoZnFqykIhM8lfqCFAJOewfLoIgz+zBJkLVScOI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18392,39 +17368,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11804" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "be9a7391-38ee-4ae9-9ac9-c5ee62aac9e3" + "98a2faf7-8ba7-420e-8b28-79dae185de86" ], "x-ms-client-request-id": [ - "6955972f-e968-4c4d-9292-5aff36df0923-2020-04-23 01:10:14Z-Ps" + "846e3180-0568-43b9-977e-ab6a3f28a46e" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11807" ], "x-ms-correlation-request-id": [ - "be9a7391-38ee-4ae9-9ac9-c5ee62aac9e3" + "98a2faf7-8ba7-420e-8b28-79dae185de86" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011016Z:be9a7391-38ee-4ae9-9ac9-c5ee62aac9e3" + "CENTRALINDIA:20210419T073506Z:98a2faf7-8ba7-420e-8b28-79dae185de86" ], "Date": [ - "Thu, 23 Apr 2020 01:10:15 GMT" + "Mon, 19 Apr 2021 07:35:05 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -18433,29 +17406,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3dae03e6-02c1-4e6c-a764-db2be2611ff9-2020-04-23 01:10:26Z-Ps" + "b00fc1aa-8363-473d-8a8f-a7e075b05e98" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600626471)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205426471)\\/\",\"ClientRequestId\":\"3dae03e6-02c1-4e6c-a764-db2be2611ff9-2020-04-23 01:10:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+ohWeYCWsIyV2o1uWss8R7WlMPVE+ntomu3GzSOMc1s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814116741)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418916741)\\/\",\"ClientRequestId\":\"67b8614f-1696-4d25-9478-58804c888d07-2021-04-19 07:35:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WcW4oJ5OAQQYKVBdPWGmJxGFi8r8hI8iLVgpRZrZVA8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18466,38 +17439,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11803" + "11806" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0cd572ae-729e-4b5a-a68b-96d473ac8870" + "20f2ae09-1fd9-40d4-aab6-636a1b247c0e" ], "x-ms-client-request-id": [ - "3dae03e6-02c1-4e6c-a764-db2be2611ff9-2020-04-23 01:10:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b00fc1aa-8363-473d-8a8f-a7e075b05e98" ], "x-ms-correlation-request-id": [ - "0cd572ae-729e-4b5a-a68b-96d473ac8870" + "20f2ae09-1fd9-40d4-aab6-636a1b247c0e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011026Z:0cd572ae-729e-4b5a-a68b-96d473ac8870" + "CENTRALINDIA:20210419T073518Z:20f2ae09-1fd9-40d4-aab6-636a1b247c0e" ], "Date": [ - "Thu, 23 Apr 2020 01:10:26 GMT" + "Mon, 19 Apr 2021 07:35:18 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -18506,29 +17476,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35b47261-f541-4113-9039-e07320624203-2020-04-23 01:10:37Z-Ps" + "2531b1ed-4b80-43bb-aeec-183f2f8d26d0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600637035)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205437035)\\/\",\"ClientRequestId\":\"35b47261-f541-4113-9039-e07320624203-2020-04-23 01:10:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nJM4mugMB0FwuqHYCHnedqXKKOQHqKYipwmby135dSw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814128329)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418928329)\\/\",\"ClientRequestId\":\"f8f4a12b-a75e-46ae-8edd-eed62778137c-2021-04-19 07:35:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"p7+rrXd/oQlkMvbsJD/Ta61F1OYHk0YebjD9Ff7kKr0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18539,38 +17509,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11802" + "11805" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "04c03beb-deb2-451e-8169-d94a0711d67b" + "2120911f-75e3-4652-bc20-8f8d814946fb" ], "x-ms-client-request-id": [ - "35b47261-f541-4113-9039-e07320624203-2020-04-23 01:10:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2531b1ed-4b80-43bb-aeec-183f2f8d26d0" ], "x-ms-correlation-request-id": [ - "04c03beb-deb2-451e-8169-d94a0711d67b" + "2120911f-75e3-4652-bc20-8f8d814946fb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011037Z:04c03beb-deb2-451e-8169-d94a0711d67b" + "CENTRALINDIA:20210419T073528Z:2120911f-75e3-4652-bc20-8f8d814946fb" ], "Date": [ - "Thu, 23 Apr 2020 01:10:37 GMT" + "Mon, 19 Apr 2021 07:35:28 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -18579,29 +17546,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27009711-04b1-491d-b0b1-05c011f0132a-2020-04-23 01:10:47Z-Ps" + "6b504e9f-367e-4966-8f15-e87d75cf16d8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600647582)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205447582)\\/\",\"ClientRequestId\":\"27009711-04b1-491d-b0b1-05c011f0132a-2020-04-23 01:10:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HKakMPxmTDgXMOod3Ecrq8yY60GWkbDpdBuAdlEk8W8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814138671)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418938671)\\/\",\"ClientRequestId\":\"020a0dd5-50cc-40ea-a133-acdd3c993458-2021-04-19 07:35:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qwWUyNFNpVLO5+fG0rAFK12y6j2IWX3rQgxziwpPwCY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18612,38 +17579,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11801" + "11804" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "10b8f1ea-c802-4669-a8c3-72352555ba6c" + "d5bbdc5c-f021-4a19-92a4-88a9d582bf06" ], "x-ms-client-request-id": [ - "27009711-04b1-491d-b0b1-05c011f0132a-2020-04-23 01:10:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6b504e9f-367e-4966-8f15-e87d75cf16d8" ], "x-ms-correlation-request-id": [ - "10b8f1ea-c802-4669-a8c3-72352555ba6c" + "d5bbdc5c-f021-4a19-92a4-88a9d582bf06" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011047Z:10b8f1ea-c802-4669-a8c3-72352555ba6c" + "CENTRALINDIA:20210419T073538Z:d5bbdc5c-f021-4a19-92a4-88a9d582bf06" ], "Date": [ - "Thu, 23 Apr 2020 01:10:47 GMT" + "Mon, 19 Apr 2021 07:35:38 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -18652,29 +17616,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d25fa1ad-f7e5-43c3-8b59-c70f003d5ae2-2020-04-23 01:10:58Z-Ps" + "13a38dc9-e317-42a2-aad0-a1ee0b43ca5d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600658112)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205458112)\\/\",\"ClientRequestId\":\"d25fa1ad-f7e5-43c3-8b59-c70f003d5ae2-2020-04-23 01:10:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"buJROiJL5rsohSs+QWsHaYnaR1uR32sOMVgjre8duN0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814149004)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418949004)\\/\",\"ClientRequestId\":\"f5117804-886e-49bc-9b94-46a3c86af6b4-2021-04-19 07:35:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"G/dQpNZ0x/dNHJ4j60AEjHdcggDYuacJ3GB67rWB27U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18685,38 +17649,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11800" + "11803" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "39b1b0a8-6323-4763-ab6d-3156ae52aeba" + "b1ce0b0e-2e84-43dc-a525-4f512d388e39" ], "x-ms-client-request-id": [ - "d25fa1ad-f7e5-43c3-8b59-c70f003d5ae2-2020-04-23 01:10:58Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "13a38dc9-e317-42a2-aad0-a1ee0b43ca5d" ], "x-ms-correlation-request-id": [ - "39b1b0a8-6323-4763-ab6d-3156ae52aeba" + "b1ce0b0e-2e84-43dc-a525-4f512d388e39" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011058Z:39b1b0a8-6323-4763-ab6d-3156ae52aeba" + "CENTRALINDIA:20210419T073549Z:b1ce0b0e-2e84-43dc-a525-4f512d388e39" ], "Date": [ - "Thu, 23 Apr 2020 01:10:57 GMT" + "Mon, 19 Apr 2021 07:35:48 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -18725,29 +17686,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ede88f83-407f-44c1-890e-0bc0b2b26d46-2020-04-23 01:11:08Z-Ps" + "bee02622-877f-4c30-b200-80672f20e59e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600668602)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205468602)\\/\",\"ClientRequestId\":\"ede88f83-407f-44c1-890e-0bc0b2b26d46-2020-04-23 01:11:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9RXQwBPS/A15+J2nKlj1mf6k4kvuxrIK/dA6CNjceSQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814159344)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418959344)\\/\",\"ClientRequestId\":\"b615ad51-6462-4316-8558-11f390380ded-2021-04-19 07:35:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PGGwOrVQ/LN84DoXn899ydnHtmXG1yrwFaMjhkObTCM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18758,38 +17719,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11799" + "11802" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "542fe26e-8ed8-4250-9856-69b45213b4b8" + "8a4fc87e-22b2-4768-aca6-c5393de7f389" ], "x-ms-client-request-id": [ - "ede88f83-407f-44c1-890e-0bc0b2b26d46-2020-04-23 01:11:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bee02622-877f-4c30-b200-80672f20e59e" ], "x-ms-correlation-request-id": [ - "542fe26e-8ed8-4250-9856-69b45213b4b8" + "8a4fc87e-22b2-4768-aca6-c5393de7f389" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011108Z:542fe26e-8ed8-4250-9856-69b45213b4b8" + "CENTRALINDIA:20210419T073559Z:8a4fc87e-22b2-4768-aca6-c5393de7f389" ], "Date": [ - "Thu, 23 Apr 2020 01:11:08 GMT" + "Mon, 19 Apr 2021 07:35:59 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -18798,29 +17756,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33dc06c7-402b-4242-982a-0cc600ff972a-2020-04-23 01:11:19Z-Ps" + "e4fb36ed-9bdf-4511-9fbb-90eb29c2ff3d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600679118)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205479118)\\/\",\"ClientRequestId\":\"33dc06c7-402b-4242-982a-0cc600ff972a-2020-04-23 01:11:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nMHXMpioNc+Sv4EoppCY/9yoLp/iXd0C+6TDXhz1cqI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814169685)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418969685)\\/\",\"ClientRequestId\":\"b72a679b-d546-4a30-a7f1-b82abfe0191f-2021-04-19 07:36:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"P7BCsYPg3qDc5puhdN8ECj+ZpsG3gKBXfiIaW+tXXGA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18830,39 +17788,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11801" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7a01f0ee-b546-4ebb-8f60-bcc0effc972a" + "08d0fb56-718e-4137-acdc-c3bb3c03c275" ], "x-ms-client-request-id": [ - "33dc06c7-402b-4242-982a-0cc600ff972a-2020-04-23 01:11:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11798" + "e4fb36ed-9bdf-4511-9fbb-90eb29c2ff3d" ], "x-ms-correlation-request-id": [ - "7a01f0ee-b546-4ebb-8f60-bcc0effc972a" + "08d0fb56-718e-4137-acdc-c3bb3c03c275" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011119Z:7a01f0ee-b546-4ebb-8f60-bcc0effc972a" + "CENTRALINDIA:20210419T073609Z:08d0fb56-718e-4137-acdc-c3bb3c03c275" ], "Date": [ - "Thu, 23 Apr 2020 01:11:19 GMT" + "Mon, 19 Apr 2021 07:36:09 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -18871,29 +17826,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c1142f5-e2dd-4431-8b39-b9344b1bd0e1-2020-04-23 01:11:29Z-Ps" + "f0ef40a6-a143-483d-9877-838fab7b691b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600689627)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205489627)\\/\",\"ClientRequestId\":\"9c1142f5-e2dd-4431-8b39-b9344b1bd0e1-2020-04-23 01:11:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VKeyuKWfBrpxhAPex/1e0TgTmsVGmo0noPCgi7Kr+wg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814180015)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418980015)\\/\",\"ClientRequestId\":\"34c75275-f934-4647-97aa-02c57b71d81b-2021-04-19 07:36:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rut6AyIdMJ/3W4itqtRMYtRICz103R+CyU86ba6FQGE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18904,38 +17859,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11797" + "11800" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "78be0d67-abc4-41ae-b218-762894677374" + "b5439ee2-c306-4a3f-a39f-ec8a4d23e8f7" ], "x-ms-client-request-id": [ - "9c1142f5-e2dd-4431-8b39-b9344b1bd0e1-2020-04-23 01:11:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f0ef40a6-a143-483d-9877-838fab7b691b" ], "x-ms-correlation-request-id": [ - "78be0d67-abc4-41ae-b218-762894677374" + "b5439ee2-c306-4a3f-a39f-ec8a4d23e8f7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011131Z:78be0d67-abc4-41ae-b218-762894677374" + "CENTRALINDIA:20210419T073620Z:b5439ee2-c306-4a3f-a39f-ec8a4d23e8f7" ], "Date": [ - "Thu, 23 Apr 2020 01:11:30 GMT" + "Mon, 19 Apr 2021 07:36:19 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -18944,29 +17896,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb0ae0b6-423a-4a01-a512-781cd39839d7-2020-04-23 01:11:41Z-Ps" + "e9d1c1ff-4462-494e-b301-c09b99912d09" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600701395)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205501395)\\/\",\"ClientRequestId\":\"bb0ae0b6-423a-4a01-a512-781cd39839d7-2020-04-23 01:11:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WvhrfezIovZtvrykGEbPqsX40mpPhB5zk1YoqJH8EKk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814190361)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619418990361)\\/\",\"ClientRequestId\":\"335f82b1-255f-4d62-9516-9e4c8f533de1-2021-04-19 07:36:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PrzOXro+TkiQsVs1X21yzIpTmZrRq3O7tRSC5CmTsSU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18977,38 +17929,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11796" + "11799" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e1040bd6-4d8f-488d-bb1d-00fbf6b99cea" + "1063eb02-c250-4aa2-8c01-6ab8faff39a8" ], "x-ms-client-request-id": [ - "bb0ae0b6-423a-4a01-a512-781cd39839d7-2020-04-23 01:11:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e9d1c1ff-4462-494e-b301-c09b99912d09" ], "x-ms-correlation-request-id": [ - "e1040bd6-4d8f-488d-bb1d-00fbf6b99cea" + "1063eb02-c250-4aa2-8c01-6ab8faff39a8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011141Z:e1040bd6-4d8f-488d-bb1d-00fbf6b99cea" + "CENTRALINDIA:20210419T073630Z:1063eb02-c250-4aa2-8c01-6ab8faff39a8" ], "Date": [ - "Thu, 23 Apr 2020 01:11:40 GMT" + "Mon, 19 Apr 2021 07:36:30 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -19017,29 +17966,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4791165-5f0c-47dc-82b5-89ab87f81bb3-2020-04-23 01:11:51Z-Ps" + "52f60816-f5a5-48f9-8485-8ff92f178a29" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600711900)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205511900)\\/\",\"ClientRequestId\":\"f4791165-5f0c-47dc-82b5-89ab87f81bb3-2020-04-23 01:11:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Em1x9A3fLrN1il9ph2eARO/J6Qidhu37nAGdRL0PIe8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814200685)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419000685)\\/\",\"ClientRequestId\":\"45945482-80af-434a-b7d1-964fccb0c154-2021-04-19 07:36:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9njKXLdyjCJ/wmgQzxX1fbT3Suu8czixXdUf0nTEyUs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19050,38 +17999,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11795" + "11798" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6c88ebb1-e7c8-416b-acdd-10fc356f21dd" + "7f729131-cc85-4f49-b372-a4d33ae767b6" ], "x-ms-client-request-id": [ - "f4791165-5f0c-47dc-82b5-89ab87f81bb3-2020-04-23 01:11:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "52f60816-f5a5-48f9-8485-8ff92f178a29" ], "x-ms-correlation-request-id": [ - "6c88ebb1-e7c8-416b-acdd-10fc356f21dd" + "7f729131-cc85-4f49-b372-a4d33ae767b6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011152Z:6c88ebb1-e7c8-416b-acdd-10fc356f21dd" + "CENTRALINDIA:20210419T073640Z:7f729131-cc85-4f49-b372-a4d33ae767b6" ], "Date": [ - "Thu, 23 Apr 2020 01:11:52 GMT" + "Mon, 19 Apr 2021 07:36:40 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -19090,29 +18036,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "efe45513-46c8-40f1-af9d-29c0a627edd9-2020-04-23 01:12:02Z-Ps" + "6e2b28c2-de27-45e0-ace0-370d1eaad1f1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600722432)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205522432)\\/\",\"ClientRequestId\":\"efe45513-46c8-40f1-af9d-29c0a627edd9-2020-04-23 01:12:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"D7HtsxSxLyoeqT5R1nsTbHymMFYGGM1r+dGR6rjU0w8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814211024)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419011024)\\/\",\"ClientRequestId\":\"c1ddc3c8-6051-465b-a11f-1008c1ec631b-2021-04-19 07:36:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UtAYK0Q9gaCngM5I6tjYOjGgs/ekpaLEZrD3IT31R4E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19123,38 +18069,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11794" + "11797" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8f75ba9c-bc90-4748-a315-7b6d654da526" + "f12239ea-f517-4d10-a79a-1ba286e29530" ], "x-ms-client-request-id": [ - "efe45513-46c8-40f1-af9d-29c0a627edd9-2020-04-23 01:12:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6e2b28c2-de27-45e0-ace0-370d1eaad1f1" ], "x-ms-correlation-request-id": [ - "8f75ba9c-bc90-4748-a315-7b6d654da526" + "f12239ea-f517-4d10-a79a-1ba286e29530" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011202Z:8f75ba9c-bc90-4748-a315-7b6d654da526" + "CENTRALINDIA:20210419T073651Z:f12239ea-f517-4d10-a79a-1ba286e29530" ], "Date": [ - "Thu, 23 Apr 2020 01:12:02 GMT" + "Mon, 19 Apr 2021 07:36:50 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -19163,29 +18106,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63b926f6-1208-41df-9fb2-cc848f9db9b3-2020-04-23 01:12:12Z-Ps" + "90a86ddd-39f4-4abc-b1d3-135fa55c2374" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600732922)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205532922)\\/\",\"ClientRequestId\":\"63b926f6-1208-41df-9fb2-cc848f9db9b3-2020-04-23 01:12:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PEWB7ZHtPllj6OM8VcDiy2SJSndik7YjjiyIa/xOoFo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814221371)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419021371)\\/\",\"ClientRequestId\":\"ac1c584c-9f78-41b7-938c-a5719ac3de8e-2021-04-19 07:37:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jpA+o/KwWMp+KFXAKj8j+8MQ2G/w+R2OmrqCe3TcdlU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19196,38 +18139,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11793" + "11796" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "16382328-3222-494a-9087-366ebbae4b8b" + "a88bbcc4-1385-405a-a2d3-074783998749" ], "x-ms-client-request-id": [ - "63b926f6-1208-41df-9fb2-cc848f9db9b3-2020-04-23 01:12:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "90a86ddd-39f4-4abc-b1d3-135fa55c2374" ], "x-ms-correlation-request-id": [ - "16382328-3222-494a-9087-366ebbae4b8b" + "a88bbcc4-1385-405a-a2d3-074783998749" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011213Z:16382328-3222-494a-9087-366ebbae4b8b" + "CENTRALINDIA:20210419T073701Z:a88bbcc4-1385-405a-a2d3-074783998749" ], "Date": [ - "Thu, 23 Apr 2020 01:12:13 GMT" + "Mon, 19 Apr 2021 07:37:00 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -19236,29 +18176,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85594f0b-7f16-4121-9f55-788f123db69b-2020-04-23 01:12:23Z-Ps" + "9d0bc410-1d2a-4339-b0f5-2a1494d1b21c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600743473)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205543473)\\/\",\"ClientRequestId\":\"85594f0b-7f16-4121-9f55-788f123db69b-2020-04-23 01:12:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NiCd3Oc3cF4cirVkETLTlnuEs1k3HJqWcCtIu9O9BGI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814231715)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419031715)\\/\",\"ClientRequestId\":\"6aee37ac-0363-40ac-8f1a-53da1d57fba1-2021-04-19 07:37:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ymfTTLUXT5uGY2ySDGM5cj7QrS6RZ1FgrEvWvqUduq4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19269,38 +18209,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11792" + "11795" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e1e3a5af-59db-4f39-b11a-d9b9bdde5aee" + "fc20491b-02bb-4ad6-bec9-fb56d26d7c73" ], "x-ms-client-request-id": [ - "85594f0b-7f16-4121-9f55-788f123db69b-2020-04-23 01:12:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9d0bc410-1d2a-4339-b0f5-2a1494d1b21c" ], "x-ms-correlation-request-id": [ - "e1e3a5af-59db-4f39-b11a-d9b9bdde5aee" + "fc20491b-02bb-4ad6-bec9-fb56d26d7c73" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011223Z:e1e3a5af-59db-4f39-b11a-d9b9bdde5aee" + "CENTRALINDIA:20210419T073711Z:fc20491b-02bb-4ad6-bec9-fb56d26d7c73" ], "Date": [ - "Thu, 23 Apr 2020 01:12:23 GMT" + "Mon, 19 Apr 2021 07:37:11 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -19309,29 +18246,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4ad1e10-a813-4ba1-84a7-6e1abe5c5c39-2020-04-23 01:12:34Z-Ps" + "75a54b76-ff26-443e-ac18-e6767952244c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600754002)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205554002)\\/\",\"ClientRequestId\":\"a4ad1e10-a813-4ba1-84a7-6e1abe5c5c39-2020-04-23 01:12:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VIogea8/afEOo8wL17Pctpxpt4dq6cdMqifWqZjBmfQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814242060)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419042060)\\/\",\"ClientRequestId\":\"5d7ec083-5568-49ee-b7e8-f1c8e98ad637-2021-04-19 07:37:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dLI2ipLKk3EMdpJIPgQ+EB2Acagd3oc6xELY1YSn3vk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19341,39 +18278,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11794" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "51dd7d9d-f369-46c9-a8c9-8ad915338e2d" + "c5d2e287-198d-43e0-9e69-9ba7a0ec4cc8" ], "x-ms-client-request-id": [ - "a4ad1e10-a813-4ba1-84a7-6e1abe5c5c39-2020-04-23 01:12:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11791" + "75a54b76-ff26-443e-ac18-e6767952244c" ], "x-ms-correlation-request-id": [ - "51dd7d9d-f369-46c9-a8c9-8ad915338e2d" + "c5d2e287-198d-43e0-9e69-9ba7a0ec4cc8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011234Z:51dd7d9d-f369-46c9-a8c9-8ad915338e2d" + "CENTRALINDIA:20210419T073722Z:c5d2e287-198d-43e0-9e69-9ba7a0ec4cc8" ], "Date": [ - "Thu, 23 Apr 2020 01:12:34 GMT" + "Mon, 19 Apr 2021 07:37:21 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -19382,29 +18316,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc11534-6389-4458-a0a7-8d503d427c90-2020-04-23 01:12:44Z-Ps" + "cd2b9bdf-d2cc-4bd9-a9e7-738c456f67a9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600764559)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205564559)\\/\",\"ClientRequestId\":\"cfc11534-6389-4458-a0a7-8d503d427c90-2020-04-23 01:12:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tKreoSEQ5S7xeigdUACkqhUESMIBbn/i80A3x/dFwKs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814252389)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419052389)\\/\",\"ClientRequestId\":\"89a95dc3-a7bf-4235-bac0-27adadb27f6d-2021-04-19 07:37:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IBgQseTyTaWYK2/3JKR4eleZHcuzO0FL8e5lEOeEqx0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19415,38 +18349,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11790" + "11793" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e1d258ae-0df9-44ea-91e4-e7a8af567664" + "31ef5ec0-6d3b-49f4-a9d9-4259262f5b7c" ], "x-ms-client-request-id": [ - "cfc11534-6389-4458-a0a7-8d503d427c90-2020-04-23 01:12:44Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cd2b9bdf-d2cc-4bd9-a9e7-738c456f67a9" ], "x-ms-correlation-request-id": [ - "e1d258ae-0df9-44ea-91e4-e7a8af567664" + "31ef5ec0-6d3b-49f4-a9d9-4259262f5b7c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011246Z:e1d258ae-0df9-44ea-91e4-e7a8af567664" + "CENTRALINDIA:20210419T073732Z:31ef5ec0-6d3b-49f4-a9d9-4259262f5b7c" ], "Date": [ - "Thu, 23 Apr 2020 01:12:45 GMT" + "Mon, 19 Apr 2021 07:37:31 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -19455,29 +18386,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f52225b-f099-480b-989f-e5cdd299d325-2020-04-23 01:12:56Z-Ps" + "ee620fbd-554b-48e7-8f85-d1c31e3947d7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600776314)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205576314)\\/\",\"ClientRequestId\":\"5f52225b-f099-480b-989f-e5cdd299d325-2020-04-23 01:12:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"q7T+SaKz+tvWihHDd5Fh0U06Pi2gXlsyIRwA7AyQoZw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814262748)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419062748)\\/\",\"ClientRequestId\":\"338fb8bf-68a1-49d0-a303-9f01d1967f4b-2021-04-19 07:37:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"j7RKeSD4xexHHvfWUjKbeHjbSnss60AwCU5fyfNjN2k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19488,38 +18419,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11789" + "11792" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "09a27543-44fc-474c-a26b-a7021d01c389" + "6b9e7b7d-dc30-4b0f-b422-664056115689" ], "x-ms-client-request-id": [ - "5f52225b-f099-480b-989f-e5cdd299d325-2020-04-23 01:12:56Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ee620fbd-554b-48e7-8f85-d1c31e3947d7" ], "x-ms-correlation-request-id": [ - "09a27543-44fc-474c-a26b-a7021d01c389" + "6b9e7b7d-dc30-4b0f-b422-664056115689" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011256Z:09a27543-44fc-474c-a26b-a7021d01c389" + "CENTRALINDIA:20210419T073743Z:6b9e7b7d-dc30-4b0f-b422-664056115689" ], "Date": [ - "Thu, 23 Apr 2020 01:12:56 GMT" + "Mon, 19 Apr 2021 07:37:42 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -19528,29 +18456,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b873c41-9532-415a-b3f2-05e9ef318f66-2020-04-23 01:13:06Z-Ps" + "ad8af48b-81b3-47ae-aa2f-96cb345fe235" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600786948)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205586948)\\/\",\"ClientRequestId\":\"4b873c41-9532-415a-b3f2-05e9ef318f66-2020-04-23 01:13:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"224lw08xDAzH/v2FgmFJzmQhYUug7uHN9po/WsQzKT8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814273097)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419073097)\\/\",\"ClientRequestId\":\"7a23e7ac-a0d3-4587-87ab-b9b0f2a78995-2021-04-19 07:37:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lbUtpnLi+CY/YvGW34n3rvH7kyccGJhGnPrm63iA7Jk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19561,38 +18489,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11788" + "11791" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7e4132a4-2138-4688-8195-809d20468827" + "0685332f-31e6-48cc-951d-764cf163ce81" ], "x-ms-client-request-id": [ - "4b873c41-9532-415a-b3f2-05e9ef318f66-2020-04-23 01:13:06Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ad8af48b-81b3-47ae-aa2f-96cb345fe235" ], "x-ms-correlation-request-id": [ - "7e4132a4-2138-4688-8195-809d20468827" + "0685332f-31e6-48cc-951d-764cf163ce81" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011307Z:7e4132a4-2138-4688-8195-809d20468827" + "CENTRALINDIA:20210419T073753Z:0685332f-31e6-48cc-951d-764cf163ce81" ], "Date": [ - "Thu, 23 Apr 2020 01:13:07 GMT" + "Mon, 19 Apr 2021 07:37:53 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -19601,29 +18526,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad0e3afc-58e5-4000-a748-35b8394b96d0-2020-04-23 01:13:17Z-Ps" + "e834ff09-ede5-4c63-9a9a-acede83184e3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600797458)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205597458)\\/\",\"ClientRequestId\":\"ad0e3afc-58e5-4000-a748-35b8394b96d0-2020-04-23 01:13:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7NlpocobJ81yi7fAR2ySDETtxX04YnWhgYQ9CmSjNZA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814283473)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419083473)\\/\",\"ClientRequestId\":\"d019cdd0-5075-4a6d-b3e5-fbf46e84dd9a-2021-04-19 07:38:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Te4y1PPTKIDLGnz/DWnGzV/cNbfhzKKahyRsNdyF7p4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19634,38 +18559,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11787" + "11790" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "96d4545d-1028-4a66-af29-119854e9ce47" + "c5bb8257-af9b-4c41-9749-372eb50aa877" ], "x-ms-client-request-id": [ - "ad0e3afc-58e5-4000-a748-35b8394b96d0-2020-04-23 01:13:17Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e834ff09-ede5-4c63-9a9a-acede83184e3" ], "x-ms-correlation-request-id": [ - "96d4545d-1028-4a66-af29-119854e9ce47" + "c5bb8257-af9b-4c41-9749-372eb50aa877" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011317Z:96d4545d-1028-4a66-af29-119854e9ce47" + "CENTRALINDIA:20210419T073803Z:c5bb8257-af9b-4c41-9749-372eb50aa877" ], "Date": [ - "Thu, 23 Apr 2020 01:13:17 GMT" + "Mon, 19 Apr 2021 07:38:03 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -19674,29 +18596,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ff7336a-c129-4484-acf7-e48289c994f3-2020-04-23 01:13:27Z-Ps" + "cad54875-1013-4722-928e-9f2c0c8b393f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600807973)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205607973)\\/\",\"ClientRequestId\":\"3ff7336a-c129-4484-acf7-e48289c994f3-2020-04-23 01:13:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cXkFoL1VnkGXgnVZWP4EfLZZsQ3OVWGRYL7ufgPjQq8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814293823)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419093823)\\/\",\"ClientRequestId\":\"afbb525e-2e5b-406a-b475-cc2fe2547fab-2021-04-19 07:38:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TL8O8ySYaz5z5aWZEElqJDhKGR5MeYkZ0ImqV4Ckp7E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19707,38 +18629,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11786" + "11789" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "72150240-519c-47c7-83ee-7f23160dbec4" + "05137baf-e8a4-477f-a400-70ca51822409" ], "x-ms-client-request-id": [ - "3ff7336a-c129-4484-acf7-e48289c994f3-2020-04-23 01:13:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cad54875-1013-4722-928e-9f2c0c8b393f" ], "x-ms-correlation-request-id": [ - "72150240-519c-47c7-83ee-7f23160dbec4" + "05137baf-e8a4-477f-a400-70ca51822409" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011328Z:72150240-519c-47c7-83ee-7f23160dbec4" + "CENTRALINDIA:20210419T073814Z:05137baf-e8a4-477f-a400-70ca51822409" ], "Date": [ - "Thu, 23 Apr 2020 01:13:27 GMT" + "Mon, 19 Apr 2021 07:38:13 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -19747,29 +18666,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b5be048-5cee-4d77-b190-123274c5c83f-2020-04-23 01:13:38Z-Ps" + "f22925de-a0b0-4d38-8548-d16102b9bc10" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600818514)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205618514)\\/\",\"ClientRequestId\":\"2b5be048-5cee-4d77-b190-123274c5c83f-2020-04-23 01:13:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"T06+hud9FJn+1yLsVvuu62WSGDJHOj7BN4JHEwin0WQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814304207)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419104207)\\/\",\"ClientRequestId\":\"17ba7701-1270-48ca-ae4f-9e13149756e7-2021-04-19 07:38:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tCdoO35cSKN7gTBwOXLvzFs9APhT+aJuKyvDk2czCjQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19780,38 +18699,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11785" + "11788" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "968c0974-28c5-4eae-8d32-9fc88e667a59" + "26a55c07-9a8f-4bbf-86b4-978acc7c0dfa" ], "x-ms-client-request-id": [ - "2b5be048-5cee-4d77-b190-123274c5c83f-2020-04-23 01:13:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f22925de-a0b0-4d38-8548-d16102b9bc10" ], "x-ms-correlation-request-id": [ - "968c0974-28c5-4eae-8d32-9fc88e667a59" + "26a55c07-9a8f-4bbf-86b4-978acc7c0dfa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011338Z:968c0974-28c5-4eae-8d32-9fc88e667a59" + "CENTRALINDIA:20210419T073824Z:26a55c07-9a8f-4bbf-86b4-978acc7c0dfa" ], "Date": [ - "Thu, 23 Apr 2020 01:13:38 GMT" + "Mon, 19 Apr 2021 07:38:23 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -19820,29 +18736,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e45a8a4-72a1-4bdb-a0cb-b43aab2b37a2-2020-04-23 01:13:48Z-Ps" + "0a7a9fb8-3718-4eee-aa5d-e454cda7e5c8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600828994)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205628994)\\/\",\"ClientRequestId\":\"3e45a8a4-72a1-4bdb-a0cb-b43aab2b37a2-2020-04-23 01:13:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7KveqnygjB3XClDrHnJ46v6tc3ELZXKxUN1xWxIJcFw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814314615)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419114615)\\/\",\"ClientRequestId\":\"3d89c37e-1058-4774-a228-3559e1d9fd26-2021-04-19 07:38:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jfYd/7jZITZqP3A5nStqS1pYkxsbXRpCnMDs+yudqZc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19852,39 +18768,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11787" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7d334d95-df8f-4d70-9ad0-9591e795d412" + "9d92c062-713f-4f96-9fa7-2bfaba7b6290" ], "x-ms-client-request-id": [ - "3e45a8a4-72a1-4bdb-a0cb-b43aab2b37a2-2020-04-23 01:13:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11784" + "0a7a9fb8-3718-4eee-aa5d-e454cda7e5c8" ], "x-ms-correlation-request-id": [ - "7d334d95-df8f-4d70-9ad0-9591e795d412" + "9d92c062-713f-4f96-9fa7-2bfaba7b6290" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011349Z:7d334d95-df8f-4d70-9ad0-9591e795d412" + "CENTRALINDIA:20210419T073834Z:9d92c062-713f-4f96-9fa7-2bfaba7b6290" ], "Date": [ - "Thu, 23 Apr 2020 01:13:48 GMT" + "Mon, 19 Apr 2021 07:38:34 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -19893,29 +18806,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce0b05b4-169a-496e-a960-894af15a9721-2020-04-23 01:13:59Z-Ps" + "6e44ac94-a71c-4794-a663-e9a106860cbc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600839498)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205639498)\\/\",\"ClientRequestId\":\"ce0b05b4-169a-496e-a960-894af15a9721-2020-04-23 01:13:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zuCZc6RceWt5D5y3zK2Q/+Ijad5jwREK2wW1m8gJ6lU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814324996)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419124996)\\/\",\"ClientRequestId\":\"c76cac26-4f4d-4861-8347-8749d31dd7e4-2021-04-19 07:38:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FFrEZYm0KZI6y7V39UwRSWR4duv8ZaSgNer/A+UQBhs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19926,38 +18839,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11783" + "11786" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "05238780-1524-4139-9637-fda8465eaffd" + "642ad035-7237-46e5-9446-a9808aa32932" ], "x-ms-client-request-id": [ - "ce0b05b4-169a-496e-a960-894af15a9721-2020-04-23 01:13:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6e44ac94-a71c-4794-a663-e9a106860cbc" ], "x-ms-correlation-request-id": [ - "05238780-1524-4139-9637-fda8465eaffd" + "642ad035-7237-46e5-9446-a9808aa32932" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011403Z:05238780-1524-4139-9637-fda8465eaffd" + "CENTRALINDIA:20210419T073845Z:642ad035-7237-46e5-9446-a9808aa32932" ], "Date": [ - "Thu, 23 Apr 2020 01:14:02 GMT" + "Mon, 19 Apr 2021 07:38:44 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -19966,29 +18876,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5df831d0-cb88-46fb-837b-ab5e6fe22451-2020-04-23 01:14:13Z-Ps" + "dcd51531-a55d-49cc-a6c2-3ce0917a4eaa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600853671)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205653671)\\/\",\"ClientRequestId\":\"5df831d0-cb88-46fb-837b-ab5e6fe22451-2020-04-23 01:14:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ULo0zEuJa+mR7fCyEC5oJ4PFNSJV7Hjn+BQgWNvMCbI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814335358)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419135358)\\/\",\"ClientRequestId\":\"3eae8d50-efb9-4cf0-b8b0-6db77c6e9457-2021-04-19 07:38:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6yFKXK0nPa7PkjsJaXS3dVB3Lwr6FBTEgpy1VPFC3qY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19999,38 +18909,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11782" + "11785" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "092b8c70-6e5f-4a01-94ed-eff291799510" + "053a8e4b-6991-49fb-b74e-0bae31d417b3" ], "x-ms-client-request-id": [ - "5df831d0-cb88-46fb-837b-ab5e6fe22451-2020-04-23 01:14:13Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "dcd51531-a55d-49cc-a6c2-3ce0917a4eaa" ], "x-ms-correlation-request-id": [ - "092b8c70-6e5f-4a01-94ed-eff291799510" + "053a8e4b-6991-49fb-b74e-0bae31d417b3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011414Z:092b8c70-6e5f-4a01-94ed-eff291799510" + "CENTRALINDIA:20210419T073855Z:053a8e4b-6991-49fb-b74e-0bae31d417b3" ], "Date": [ - "Thu, 23 Apr 2020 01:14:13 GMT" + "Mon, 19 Apr 2021 07:38:54 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -20039,29 +18946,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bec81d43-4c0a-4700-a410-badc3b9e89d8-2020-04-23 01:14:24Z-Ps" + "fa1b17b4-7967-42da-b7e5-44e790d83498" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600864319)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205664319)\\/\",\"ClientRequestId\":\"bec81d43-4c0a-4700-a410-badc3b9e89d8-2020-04-23 01:14:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yz5WjiZ+XXUnnc5vPBmQCz6HU23beEBOnxuvGMNncEs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814345690)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419145690)\\/\",\"ClientRequestId\":\"948fa622-4511-4586-b62c-d5df95c48f1a-2021-04-19 07:39:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2SF1c8RRpV3dvDpFWfGEr+Xi8RztMIbEGIyYXXj6/Bo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20072,38 +18979,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11781" + "11784" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "01eeccf5-66ef-4d20-bdf6-caaad3a6df17" + "042e0357-6d60-4b3a-ad5a-b3c1a4169222" ], "x-ms-client-request-id": [ - "bec81d43-4c0a-4700-a410-badc3b9e89d8-2020-04-23 01:14:24Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "fa1b17b4-7967-42da-b7e5-44e790d83498" ], "x-ms-correlation-request-id": [ - "01eeccf5-66ef-4d20-bdf6-caaad3a6df17" + "042e0357-6d60-4b3a-ad5a-b3c1a4169222" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011424Z:01eeccf5-66ef-4d20-bdf6-caaad3a6df17" + "CENTRALINDIA:20210419T073905Z:042e0357-6d60-4b3a-ad5a-b3c1a4169222" ], "Date": [ - "Thu, 23 Apr 2020 01:14:24 GMT" + "Mon, 19 Apr 2021 07:39:05 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -20112,29 +19016,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42214d52-fc20-4468-a972-b0058399a4a8-2020-04-23 01:14:34Z-Ps" + "b380bd20-a9e4-451e-b26c-5fa94e1e6c75" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600874833)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205674833)\\/\",\"ClientRequestId\":\"42214d52-fc20-4468-a972-b0058399a4a8-2020-04-23 01:14:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VZSPF314x+Vb0vC5afIQgG1OTQgoWpoV3zL77lJiKqw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814356029)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419156029)\\/\",\"ClientRequestId\":\"b452243a-c4a3-4ce2-a2fa-c85934ce1975-2021-04-19 07:39:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Hh7/X4ilBWVV/ZdQziw/g2yohE3yzCeguZP4ZnBcexo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20145,38 +19049,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11780" + "11783" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "592d7915-a1c9-4311-931d-2140e014da6a" + "7608f2bd-742a-4c2a-b3b9-56b6177d399e" ], "x-ms-client-request-id": [ - "42214d52-fc20-4468-a972-b0058399a4a8-2020-04-23 01:14:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b380bd20-a9e4-451e-b26c-5fa94e1e6c75" ], "x-ms-correlation-request-id": [ - "592d7915-a1c9-4311-931d-2140e014da6a" + "7608f2bd-742a-4c2a-b3b9-56b6177d399e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011435Z:592d7915-a1c9-4311-931d-2140e014da6a" + "CENTRALINDIA:20210419T073916Z:7608f2bd-742a-4c2a-b3b9-56b6177d399e" ], "Date": [ - "Thu, 23 Apr 2020 01:14:35 GMT" + "Mon, 19 Apr 2021 07:39:15 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -20185,29 +19086,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6bbc807-2af2-4572-a0d5-2146d5d74e8e-2020-04-23 01:14:45Z-Ps" + "31a231b1-0d42-4fb1-89e8-7245cdb1476f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600885424)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205685424)\\/\",\"ClientRequestId\":\"b6bbc807-2af2-4572-a0d5-2146d5d74e8e-2020-04-23 01:14:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sPDV3gALtyTDVUSsSK8FukEKkGWAOxIveXU6jgEHaSg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814366392)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419166392)\\/\",\"ClientRequestId\":\"d49c5b0b-1045-4a42-b597-341e73ba1098-2021-04-19 07:39:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eIVZlKrW2B+/P1E9BOYnW4dqVUlO9rQGBqRtugok/9c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20218,38 +19119,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11779" + "11782" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "002b71d4-1908-4dfd-aec4-7f3f02b114de" + "795f87f0-79dc-4772-b43f-f6cac5a6e4f0" ], "x-ms-client-request-id": [ - "b6bbc807-2af2-4572-a0d5-2146d5d74e8e-2020-04-23 01:14:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "31a231b1-0d42-4fb1-89e8-7245cdb1476f" ], "x-ms-correlation-request-id": [ - "002b71d4-1908-4dfd-aec4-7f3f02b114de" + "795f87f0-79dc-4772-b43f-f6cac5a6e4f0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011445Z:002b71d4-1908-4dfd-aec4-7f3f02b114de" + "CENTRALINDIA:20210419T073926Z:795f87f0-79dc-4772-b43f-f6cac5a6e4f0" ], "Date": [ - "Thu, 23 Apr 2020 01:14:45 GMT" + "Mon, 19 Apr 2021 07:39:25 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -20258,29 +19156,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10564490-8136-4f20-8e84-bc452adac40b-2020-04-23 01:14:55Z-Ps" + "c12159a1-8d2c-4b35-83ec-3e04c72124d2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600895900)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205695900)\\/\",\"ClientRequestId\":\"10564490-8136-4f20-8e84-bc452adac40b-2020-04-23 01:14:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2qLp+eBY6AOlAZmnp5E4A+bd2d2Gw9QEOa2j6ZGUC1g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814376722)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419176722)\\/\",\"ClientRequestId\":\"c196e1c1-11fe-49c6-95e8-26663305048e-2021-04-19 07:39:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AbQ3EaQTlioei6E9O7HsDvCe4CnRg+H/rDcTvuhTOYY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20291,38 +19189,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11778" + "11781" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6f62b059-a178-482c-9404-f67705e3df9a" + "9cb5cf10-340d-4e2c-bb66-1615445a6a85" ], "x-ms-client-request-id": [ - "10564490-8136-4f20-8e84-bc452adac40b-2020-04-23 01:14:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c12159a1-8d2c-4b35-83ec-3e04c72124d2" ], "x-ms-correlation-request-id": [ - "6f62b059-a178-482c-9404-f67705e3df9a" + "9cb5cf10-340d-4e2c-bb66-1615445a6a85" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011456Z:6f62b059-a178-482c-9404-f67705e3df9a" + "CENTRALINDIA:20210419T073937Z:9cb5cf10-340d-4e2c-bb66-1615445a6a85" ], "Date": [ - "Thu, 23 Apr 2020 01:14:55 GMT" + "Mon, 19 Apr 2021 07:39:36 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -20331,29 +19226,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fbbef67-345f-4b04-a5d6-53268053938d-2020-04-23 01:15:06Z-Ps" + "fefd01fd-9354-4f0a-8686-ceb03de06f79" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600906408)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205706408)\\/\",\"ClientRequestId\":\"5fbbef67-345f-4b04-a5d6-53268053938d-2020-04-23 01:15:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"e5c7ufhoaPbAVQKw+Lq8B/0vguklLiG+DqJChSa4i6g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814387075)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419187075)\\/\",\"ClientRequestId\":\"9d16531f-afc4-4da2-bdee-63a2704e9174-2021-04-19 07:39:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VulkWycfMoNw65tqSWzYCSgoRSilcP+41g3ty2ZbPXU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20363,39 +19258,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11780" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d814d6c8-c3d8-4dad-8e2a-fd0b92d73fc5" + "a3337495-30d8-45d2-8e79-01da70211c4d" ], "x-ms-client-request-id": [ - "5fbbef67-345f-4b04-a5d6-53268053938d-2020-04-23 01:15:06Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11777" + "fefd01fd-9354-4f0a-8686-ceb03de06f79" ], "x-ms-correlation-request-id": [ - "d814d6c8-c3d8-4dad-8e2a-fd0b92d73fc5" + "a3337495-30d8-45d2-8e79-01da70211c4d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011506Z:d814d6c8-c3d8-4dad-8e2a-fd0b92d73fc5" + "CENTRALINDIA:20210419T073947Z:a3337495-30d8-45d2-8e79-01da70211c4d" ], "Date": [ - "Thu, 23 Apr 2020 01:15:06 GMT" + "Mon, 19 Apr 2021 07:39:46 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -20404,29 +19296,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfef204b-26e1-4a36-8268-97eadc2b19e8-2020-04-23 01:15:16Z-Ps" + "a81ee240-fb82-4768-80a3-c3245579c74a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600916972)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205716972)\\/\",\"ClientRequestId\":\"cfef204b-26e1-4a36-8268-97eadc2b19e8-2020-04-23 01:15:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Yb4mghEnaunoFNEIoXPspa1JvKRcYQ7EeyBotJ4g22k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814397420)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419197420)\\/\",\"ClientRequestId\":\"8ab9af96-b636-4931-a0b3-7828354cdd93-2021-04-19 07:39:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PDuachDuN7yz3G39Sr6hA5iVMHtzsyDbUAJtOGm4RKA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20437,38 +19329,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11776" + "11779" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "18936ecc-3f7b-4fe6-a83e-1ba76ff861e1" + "af02cbdd-02c6-4a12-aefd-7b88d48fbf15" ], "x-ms-client-request-id": [ - "cfef204b-26e1-4a36-8268-97eadc2b19e8-2020-04-23 01:15:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a81ee240-fb82-4768-80a3-c3245579c74a" ], "x-ms-correlation-request-id": [ - "18936ecc-3f7b-4fe6-a83e-1ba76ff861e1" + "af02cbdd-02c6-4a12-aefd-7b88d48fbf15" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011518Z:18936ecc-3f7b-4fe6-a83e-1ba76ff861e1" + "CENTRALINDIA:20210419T073957Z:af02cbdd-02c6-4a12-aefd-7b88d48fbf15" ], "Date": [ - "Thu, 23 Apr 2020 01:15:18 GMT" + "Mon, 19 Apr 2021 07:39:56 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -20477,29 +19366,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c914945-291e-4da4-b895-2c88fa51226f-2020-04-23 01:15:28Z-Ps" + "7add0c3f-07ac-4608-9385-c0f4661ced78" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600928755)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205728755)\\/\",\"ClientRequestId\":\"1c914945-291e-4da4-b895-2c88fa51226f-2020-04-23 01:15:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gTJ9eFkfs4NESEnTM7rSWZspkhJf7Xwx2O2YKi+5kxg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814407770)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419207770)\\/\",\"ClientRequestId\":\"56e3bfa2-0ea0-4aaa-b2bb-4926996bfd8f-2021-04-19 07:40:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"S//NlBYUwaJ2ApV1P7ChaAQtli4zv/Ma8HWS8+TbcuI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20510,38 +19399,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11775" + "11778" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ea8f5809-5386-4e60-9a85-fe09a94026d1" + "266d51de-d9cb-4fa7-9c0c-a10beb09a9d1" ], "x-ms-client-request-id": [ - "1c914945-291e-4da4-b895-2c88fa51226f-2020-04-23 01:15:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7add0c3f-07ac-4608-9385-c0f4661ced78" ], "x-ms-correlation-request-id": [ - "ea8f5809-5386-4e60-9a85-fe09a94026d1" + "266d51de-d9cb-4fa7-9c0c-a10beb09a9d1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011529Z:ea8f5809-5386-4e60-9a85-fe09a94026d1" + "CENTRALINDIA:20210419T074008Z:266d51de-d9cb-4fa7-9c0c-a10beb09a9d1" ], "Date": [ - "Thu, 23 Apr 2020 01:15:28 GMT" + "Mon, 19 Apr 2021 07:40:08 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -20550,29 +19436,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93fcd8f1-0840-4100-b1b7-185e4adfc441-2020-04-23 01:15:39Z-Ps" + "3aafe867-2db4-40b9-bd97-dbee5fb4adba" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600939536)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205739536)\\/\",\"ClientRequestId\":\"93fcd8f1-0840-4100-b1b7-185e4adfc441-2020-04-23 01:15:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"06syUVJWacKy8gg03OiEMRTpaRpr5Kq+9ZjVGZhbNqE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814418117)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419218117)\\/\",\"ClientRequestId\":\"d2a5e3cf-5a55-4a32-8077-96ef6947f33b-2021-04-19 07:40:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0JMgt7mE1zg4iZZdkoTx072rKPRIU3YDT6uNN8tFNWc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20583,38 +19469,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11774" + "11777" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c40d167f-0bda-45e3-a41d-b83dfd812874" + "2248157e-47f7-41cb-b6ae-26e6e935e55d" ], "x-ms-client-request-id": [ - "93fcd8f1-0840-4100-b1b7-185e4adfc441-2020-04-23 01:15:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3aafe867-2db4-40b9-bd97-dbee5fb4adba" ], "x-ms-correlation-request-id": [ - "c40d167f-0bda-45e3-a41d-b83dfd812874" + "2248157e-47f7-41cb-b6ae-26e6e935e55d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011539Z:c40d167f-0bda-45e3-a41d-b83dfd812874" + "CENTRALINDIA:20210419T074018Z:2248157e-47f7-41cb-b6ae-26e6e935e55d" ], "Date": [ - "Thu, 23 Apr 2020 01:15:39 GMT" + "Mon, 19 Apr 2021 07:40:18 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -20623,29 +19506,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd7a50ed-1c1a-40b7-a8f0-2ec0cd14f8e7-2020-04-23 01:15:50Z-Ps" + "82a86766-979b-4fcc-8c89-3a0dc2ae5cdb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600950113)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205750113)\\/\",\"ClientRequestId\":\"cd7a50ed-1c1a-40b7-a8f0-2ec0cd14f8e7-2020-04-23 01:15:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ARH/eg7YFcRhirDiSlsmOEiHVJ7Mc0l7J1yg62yYd3o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814428461)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419228461)\\/\",\"ClientRequestId\":\"e38fd7a8-3d74-4bfb-aee6-d4c39b382a6d-2021-04-19 07:40:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fhwbMW9iekzGPqHgLjZMtGExGzUoQgiz9sGCyfEUgDs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20656,38 +19539,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11773" + "11776" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2fe97f8c-fd17-4be9-bb1e-98ea3ea1d4eb" + "155f2ffc-224c-499a-af9b-fa3b3d2ef878" ], "x-ms-client-request-id": [ - "cd7a50ed-1c1a-40b7-a8f0-2ec0cd14f8e7-2020-04-23 01:15:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "82a86766-979b-4fcc-8c89-3a0dc2ae5cdb" ], "x-ms-correlation-request-id": [ - "2fe97f8c-fd17-4be9-bb1e-98ea3ea1d4eb" + "155f2ffc-224c-499a-af9b-fa3b3d2ef878" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011550Z:2fe97f8c-fd17-4be9-bb1e-98ea3ea1d4eb" + "CENTRALINDIA:20210419T074028Z:155f2ffc-224c-499a-af9b-fa3b3d2ef878" ], "Date": [ - "Thu, 23 Apr 2020 01:15:50 GMT" + "Mon, 19 Apr 2021 07:40:28 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -20696,29 +19576,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57c10083-8f0a-4583-a2e6-3991105e2312-2020-04-23 01:16:00Z-Ps" + "f7784539-5a6e-4322-bf7f-09b3fbe97579" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600960610)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205760610)\\/\",\"ClientRequestId\":\"57c10083-8f0a-4583-a2e6-3991105e2312-2020-04-23 01:16:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nVubBu9Vy3zIpIxUCfIA1QHUnKZfsjg8D1fLFgGlfxo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814438782)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419238782)\\/\",\"ClientRequestId\":\"31ab4b8f-b601-4c6b-a4c6-0f5542bb7f96-2021-04-19 07:40:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ou4jSbDKtklogDTANqJTY1awrH1nWZfiozcigdxLrzs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20729,38 +19609,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11772" + "11775" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "337d7549-b72a-4650-bc7e-caf7f6579f38" + "a13e3b12-0328-4cee-8209-dc5d8a883cf2" ], "x-ms-client-request-id": [ - "57c10083-8f0a-4583-a2e6-3991105e2312-2020-04-23 01:16:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f7784539-5a6e-4322-bf7f-09b3fbe97579" ], "x-ms-correlation-request-id": [ - "337d7549-b72a-4650-bc7e-caf7f6579f38" + "a13e3b12-0328-4cee-8209-dc5d8a883cf2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011600Z:337d7549-b72a-4650-bc7e-caf7f6579f38" + "CENTRALINDIA:20210419T074039Z:a13e3b12-0328-4cee-8209-dc5d8a883cf2" ], "Date": [ - "Thu, 23 Apr 2020 01:16:00 GMT" + "Mon, 19 Apr 2021 07:40:38 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -20769,29 +19646,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc015771-424f-4a7b-af81-fecc52e66b09-2020-04-23 01:16:11Z-Ps" + "b58eda31-1d92-487e-be41-8974f89ef9ba" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600971099)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205771099)\\/\",\"ClientRequestId\":\"fc015771-424f-4a7b-af81-fecc52e66b09-2020-04-23 01:16:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+Fb28RndN4D6mSue5LTylh1FQ0dd3rhb5EmGDjuY+yw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814449124)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419249124)\\/\",\"ClientRequestId\":\"0515bb74-1481-476a-8f82-bff5f35b0c66-2021-04-19 07:40:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AVtMF0FaxuZMTQBuPQW2V/79hNcrbYScJM3j6wQZdw8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20802,38 +19679,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11771" + "11774" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d396f324-c4cc-47d2-a017-df9d9a329ed1" + "c2f7b432-f56a-4a60-a12e-14d0cf8c41bc" ], "x-ms-client-request-id": [ - "fc015771-424f-4a7b-af81-fecc52e66b09-2020-04-23 01:16:11Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b58eda31-1d92-487e-be41-8974f89ef9ba" ], "x-ms-correlation-request-id": [ - "d396f324-c4cc-47d2-a017-df9d9a329ed1" + "c2f7b432-f56a-4a60-a12e-14d0cf8c41bc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011611Z:d396f324-c4cc-47d2-a017-df9d9a329ed1" + "CENTRALINDIA:20210419T074049Z:c2f7b432-f56a-4a60-a12e-14d0cf8c41bc" ], "Date": [ - "Thu, 23 Apr 2020 01:16:11 GMT" + "Mon, 19 Apr 2021 07:40:49 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -20842,29 +19716,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9e9d61f-5f6f-4906-a95d-a5005b058c5a-2020-04-23 01:16:21Z-Ps" + "37b477ed-a06d-44f9-b5bf-cf9b31c53c0d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600981909)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205781909)\\/\",\"ClientRequestId\":\"c9e9d61f-5f6f-4906-a95d-a5005b058c5a-2020-04-23 01:16:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Z2BbLOtoxsXv1Yl6kWRRudXi2qM658aj6mWg+addoJ8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814459470)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419259470)\\/\",\"ClientRequestId\":\"738492c7-da9b-4600-b011-2821646a53a2-2021-04-19 07:40:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8I93Hlbbl9SO5DVw/Kn0Ga2pLoJbnx49cr+Hdbiq5vw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20875,38 +19749,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11770" + "11773" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "765d477d-10f2-4174-a71e-1b968758946b" + "e674528b-cb42-4a79-9223-61bb007fe825" ], "x-ms-client-request-id": [ - "c9e9d61f-5f6f-4906-a95d-a5005b058c5a-2020-04-23 01:16:21Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "37b477ed-a06d-44f9-b5bf-cf9b31c53c0d" ], "x-ms-correlation-request-id": [ - "765d477d-10f2-4174-a71e-1b968758946b" + "e674528b-cb42-4a79-9223-61bb007fe825" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011623Z:765d477d-10f2-4174-a71e-1b968758946b" + "CENTRALINDIA:20210419T074059Z:e674528b-cb42-4a79-9223-61bb007fe825" ], "Date": [ - "Thu, 23 Apr 2020 01:16:23 GMT" + "Mon, 19 Apr 2021 07:40:59 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -20915,29 +19786,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b7f5b9e-2dd1-4875-be85-08bfbaa09a07-2020-04-23 01:16:33Z-Ps" + "b12c7686-d801-4302-80ca-e5d1d333f976" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587600993771)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205793771)\\/\",\"ClientRequestId\":\"7b7f5b9e-2dd1-4875-be85-08bfbaa09a07-2020-04-23 01:16:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8UT2Dk9khxdGo2GhNn7/W69Cbg/O+1IG6Ha3MYVJ4NY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814469801)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419269801)\\/\",\"ClientRequestId\":\"162f85a8-d3e8-442b-aac5-6a00388fdc14-2021-04-19 07:41:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nVa9Mzg1kzW1GYCTAZnIgxNUWfxI2w17nqz/Ryx5gXA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20948,38 +19819,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11769" + "11772" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5f1277d4-bcca-4fc5-b1b0-d96b0469e5d4" + "0a9cf827-12e9-4a57-8bb0-7214ab6b3b86" ], "x-ms-client-request-id": [ - "7b7f5b9e-2dd1-4875-be85-08bfbaa09a07-2020-04-23 01:16:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b12c7686-d801-4302-80ca-e5d1d333f976" ], "x-ms-correlation-request-id": [ - "5f1277d4-bcca-4fc5-b1b0-d96b0469e5d4" + "0a9cf827-12e9-4a57-8bb0-7214ab6b3b86" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011634Z:5f1277d4-bcca-4fc5-b1b0-d96b0469e5d4" + "CENTRALINDIA:20210419T074110Z:0a9cf827-12e9-4a57-8bb0-7214ab6b3b86" ], "Date": [ - "Thu, 23 Apr 2020 01:16:33 GMT" + "Mon, 19 Apr 2021 07:41:09 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -20988,29 +19856,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0239b71e-cd75-4b23-9b78-cffaf6cdc36f-2020-04-23 01:16:44Z-Ps" + "35499539-6cdb-4574-be4b-95358aa68d95" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601004273)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205804273)\\/\",\"ClientRequestId\":\"0239b71e-cd75-4b23-9b78-cffaf6cdc36f-2020-04-23 01:16:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MMt63z1n+v7g8p3/039OCmtH4H1yUNUxgghDImp72HM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814480141)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419280141)\\/\",\"ClientRequestId\":\"d1157a60-59e7-465a-99fd-751cb8a63c41-2021-04-19 07:41:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IhgsfuJVLZ9afW0Vpmxb0rgA2Hta/0gj/BBhjhjqCX4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21020,39 +19888,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11768" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "feb17a45-8da6-407d-a9ae-401bfa0b1171" + "d2b9ba04-e490-4529-b7fc-64cf94bffb5a" ], "x-ms-client-request-id": [ - "0239b71e-cd75-4b23-9b78-cffaf6cdc36f-2020-04-23 01:16:44Z-Ps" + "35499539-6cdb-4574-be4b-95358aa68d95" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11771" ], "x-ms-correlation-request-id": [ - "feb17a45-8da6-407d-a9ae-401bfa0b1171" + "d2b9ba04-e490-4529-b7fc-64cf94bffb5a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011644Z:feb17a45-8da6-407d-a9ae-401bfa0b1171" + "CENTRALINDIA:20210419T074120Z:d2b9ba04-e490-4529-b7fc-64cf94bffb5a" ], "Date": [ - "Thu, 23 Apr 2020 01:16:43 GMT" + "Mon, 19 Apr 2021 07:41:19 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -21061,29 +19926,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d4d7da2-d31c-4d14-81b9-a1321f00926c-2020-04-23 01:16:54Z-Ps" + "5be5deab-a59c-4260-800a-91dede58831e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601014794)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205814794)\\/\",\"ClientRequestId\":\"5d4d7da2-d31c-4d14-81b9-a1321f00926c-2020-04-23 01:16:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bB9mPe9IP3R8Yo5LBOmDAA7Vnv0HNI+yRr8rtoJDOfQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814490481)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419290481)\\/\",\"ClientRequestId\":\"fd91d4d9-b6ab-471b-a395-a55dc1f12c46-2021-04-19 07:41:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4wk1ikcmfoiXqDsJeufSggr3C3j1OXzhMSz2wb5kvQo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21094,38 +19959,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11767" + "11770" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "107661cf-24b8-4781-9ccd-70cfad3b5d15" + "39d18508-3c52-4648-91d1-ec5f8835ae71" ], "x-ms-client-request-id": [ - "5d4d7da2-d31c-4d14-81b9-a1321f00926c-2020-04-23 01:16:54Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5be5deab-a59c-4260-800a-91dede58831e" ], "x-ms-correlation-request-id": [ - "107661cf-24b8-4781-9ccd-70cfad3b5d15" + "39d18508-3c52-4648-91d1-ec5f8835ae71" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011655Z:107661cf-24b8-4781-9ccd-70cfad3b5d15" + "CENTRALINDIA:20210419T074132Z:39d18508-3c52-4648-91d1-ec5f8835ae71" ], "Date": [ - "Thu, 23 Apr 2020 01:16:55 GMT" + "Mon, 19 Apr 2021 07:41:31 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -21134,29 +19996,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5efaaa90-4712-42de-a17b-908dfc2cb619-2020-04-23 01:17:05Z-Ps" + "2c70f030-9036-450c-bf28-47725e10e838" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601025334)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205825334)\\/\",\"ClientRequestId\":\"5efaaa90-4712-42de-a17b-908dfc2cb619-2020-04-23 01:17:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"F7hELoklhiwZiTqR31s0U/rovtvtr6JlmXDFEU1NWZc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814502181)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419302181)\\/\",\"ClientRequestId\":\"9e3a0b7c-12eb-496b-9cb1-e73108c9fb43-2021-04-19 07:41:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xJb3II4l3/oKq74C/QlGg7jPxk7u18KRc4zDZ5IwiPI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21167,38 +20029,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11766" + "11769" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "52294ef6-c215-4a2d-8c65-fcdb085f4a25" + "7fa96437-6915-482d-805b-e3bcf2cfeb86" ], "x-ms-client-request-id": [ - "5efaaa90-4712-42de-a17b-908dfc2cb619-2020-04-23 01:17:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2c70f030-9036-450c-bf28-47725e10e838" ], "x-ms-correlation-request-id": [ - "52294ef6-c215-4a2d-8c65-fcdb085f4a25" + "7fa96437-6915-482d-805b-e3bcf2cfeb86" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011705Z:52294ef6-c215-4a2d-8c65-fcdb085f4a25" + "CENTRALINDIA:20210419T074142Z:7fa96437-6915-482d-805b-e3bcf2cfeb86" ], "Date": [ - "Thu, 23 Apr 2020 01:17:05 GMT" + "Mon, 19 Apr 2021 07:41:42 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -21207,29 +20066,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c518e8ad-5f3c-40c4-a979-3058256de1b6-2020-04-23 01:17:15Z-Ps" + "48730d40-bee3-48f0-9e14-9063805b7d59" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601035841)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205835841)\\/\",\"ClientRequestId\":\"c518e8ad-5f3c-40c4-a979-3058256de1b6-2020-04-23 01:17:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+WUw0Hh9m1klDCK59hAzXtO2FJfBFm35YaUvlJQB5qw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814512557)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419312557)\\/\",\"ClientRequestId\":\"7ca6785d-bb22-471b-abea-f62c62d61b12-2021-04-19 07:41:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Zv/VIqyhbxULAda5kqmqSe1N6yQfQ+Y6zvkpI46Bc2c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21240,38 +20099,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11765" + "11768" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8649de0e-3eda-4a1f-ab9d-6130194821c7" + "dbf7c0d9-794a-4499-9eea-3400f580b23e" ], "x-ms-client-request-id": [ - "c518e8ad-5f3c-40c4-a979-3058256de1b6-2020-04-23 01:17:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "48730d40-bee3-48f0-9e14-9063805b7d59" ], "x-ms-correlation-request-id": [ - "8649de0e-3eda-4a1f-ab9d-6130194821c7" + "dbf7c0d9-794a-4499-9eea-3400f580b23e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011716Z:8649de0e-3eda-4a1f-ab9d-6130194821c7" + "CENTRALINDIA:20210419T074152Z:dbf7c0d9-794a-4499-9eea-3400f580b23e" ], "Date": [ - "Thu, 23 Apr 2020 01:17:15 GMT" + "Mon, 19 Apr 2021 07:41:52 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -21280,29 +20136,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "255de71f-4421-4f30-8b1d-917103c6b35a-2020-04-23 01:17:26Z-Ps" + "de65e9f0-d615-4dbf-be74-88dba9f65682" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601046350)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205846350)\\/\",\"ClientRequestId\":\"255de71f-4421-4f30-8b1d-917103c6b35a-2020-04-23 01:17:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"44J9qiOro+3VgqkJ5F5IGBYQfUi0iSM0GV4NXIij4j0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814522899)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419322899)\\/\",\"ClientRequestId\":\"6cf5a195-a61c-4c0d-9744-c116c1f81548-2021-04-19 07:42:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"okXsWmo2mu1AMBxY5CfnAwIBFo2qL6QkYxRfYisb0FY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21312,39 +20168,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11767" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e6678005-f1f6-4a4b-a84a-06fa4e32b74e" + "15b30984-2b56-4662-9f75-d9363d0ed3de" ], "x-ms-client-request-id": [ - "255de71f-4421-4f30-8b1d-917103c6b35a-2020-04-23 01:17:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11764" + "de65e9f0-d615-4dbf-be74-88dba9f65682" ], "x-ms-correlation-request-id": [ - "e6678005-f1f6-4a4b-a84a-06fa4e32b74e" + "15b30984-2b56-4662-9f75-d9363d0ed3de" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011726Z:e6678005-f1f6-4a4b-a84a-06fa4e32b74e" + "CENTRALINDIA:20210419T074203Z:15b30984-2b56-4662-9f75-d9363d0ed3de" ], "Date": [ - "Thu, 23 Apr 2020 01:17:25 GMT" + "Mon, 19 Apr 2021 07:42:03 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -21353,29 +20206,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea837434-ee66-4647-b840-da04c9f928ad-2020-04-23 01:17:36Z-Ps" + "cfff6808-59bf-4da3-8950-5f732a3c2387" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601056913)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205856913)\\/\",\"ClientRequestId\":\"ea837434-ee66-4647-b840-da04c9f928ad-2020-04-23 01:17:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"viutDqwzcFtFNumL4gzqGAUIq79Z4Q1DhzM/ouSUWBc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814533272)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419333272)\\/\",\"ClientRequestId\":\"86e1e70e-754d-4a8c-9ae6-92e51321666b-2021-04-19 07:42:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TxWHRbPntM+y7ZtNnbOdKgx9gT772lw3uCBqacYx7+I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21386,38 +20239,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11763" + "11766" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "89372579-c08c-4f33-bf8a-60775204f4c5" + "e4b4cffb-8e26-4e5d-b240-763f612ac415" ], "x-ms-client-request-id": [ - "ea837434-ee66-4647-b840-da04c9f928ad-2020-04-23 01:17:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cfff6808-59bf-4da3-8950-5f732a3c2387" ], "x-ms-correlation-request-id": [ - "89372579-c08c-4f33-bf8a-60775204f4c5" + "e4b4cffb-8e26-4e5d-b240-763f612ac415" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011738Z:89372579-c08c-4f33-bf8a-60775204f4c5" + "CENTRALINDIA:20210419T074213Z:e4b4cffb-8e26-4e5d-b240-763f612ac415" ], "Date": [ - "Thu, 23 Apr 2020 01:17:38 GMT" + "Mon, 19 Apr 2021 07:42:12 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -21426,29 +20276,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "885c8bb9-f3ce-4804-942a-658a5d8e1f4f-2020-04-23 01:17:48Z-Ps" + "f00d8b03-ae13-462a-a385-e66ec43a5acc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601068693)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205868693)\\/\",\"ClientRequestId\":\"885c8bb9-f3ce-4804-942a-658a5d8e1f4f-2020-04-23 01:17:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jmlZwJfhsTQLenoJ/AqU5kjiaiwLbre3v13GLaaKyho=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814543629)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419343629)\\/\",\"ClientRequestId\":\"e58a6d83-e844-4e67-ac35-9129a965c1b0-2021-04-19 07:42:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RYGaW2BUHVw0YP6HKDevoX247d3yaKGuSEzc1MfnynQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21459,38 +20309,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11762" + "11765" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "70c6acb8-f697-40a3-aae2-5b86baa077a4" + "b6e17819-10d1-4b90-aa81-1026bd08e452" ], - "x-ms-client-request-id": [ - "885c8bb9-f3ce-4804-942a-658a5d8e1f4f-2020-04-23 01:17:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "f00d8b03-ae13-462a-a385-e66ec43a5acc" ], "x-ms-correlation-request-id": [ - "70c6acb8-f697-40a3-aae2-5b86baa077a4" + "b6e17819-10d1-4b90-aa81-1026bd08e452" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011749Z:70c6acb8-f697-40a3-aae2-5b86baa077a4" + "CENTRALINDIA:20210419T074223Z:b6e17819-10d1-4b90-aa81-1026bd08e452" ], "Date": [ - "Thu, 23 Apr 2020 01:17:48 GMT" + "Mon, 19 Apr 2021 07:42:23 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -21499,29 +20346,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc47e271-dcb4-48ea-bef4-253aae58bd04-2020-04-23 01:17:59Z-Ps" + "54760f32-5df5-4ee1-9ec1-f3430cb53d80" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601079177)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205879177)\\/\",\"ClientRequestId\":\"cc47e271-dcb4-48ea-bef4-253aae58bd04-2020-04-23 01:17:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bpx0pGiVKFpPTUDiGwwwSmzjIbAI3BcaArxuPUliA+E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814553987)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419353987)\\/\",\"ClientRequestId\":\"cae680f9-1da2-42c6-992d-033e395f339f-2021-04-19 07:42:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cW61QICnqcveDMlvOf4u0K8nGmk5ZEw05WQvHyolfnY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21532,38 +20379,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11761" + "11764" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4406f4c2-a59f-40d5-996b-ef83d7d77b2c" + "f4660ee6-9c24-4f2a-82ae-6e72c12ec24e" ], "x-ms-client-request-id": [ - "cc47e271-dcb4-48ea-bef4-253aae58bd04-2020-04-23 01:17:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "54760f32-5df5-4ee1-9ec1-f3430cb53d80" ], "x-ms-correlation-request-id": [ - "4406f4c2-a59f-40d5-996b-ef83d7d77b2c" + "f4660ee6-9c24-4f2a-82ae-6e72c12ec24e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011759Z:4406f4c2-a59f-40d5-996b-ef83d7d77b2c" + "CENTRALINDIA:20210419T074234Z:f4660ee6-9c24-4f2a-82ae-6e72c12ec24e" ], "Date": [ - "Thu, 23 Apr 2020 01:17:58 GMT" + "Mon, 19 Apr 2021 07:42:34 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -21572,29 +20416,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56403afc-3b9f-4468-8404-1e44b8b8c70d-2020-04-23 01:18:09Z-Ps" + "456d48f2-8ffd-4092-ab59-8398016e5f45" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601089686)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205889686)\\/\",\"ClientRequestId\":\"56403afc-3b9f-4468-8404-1e44b8b8c70d-2020-04-23 01:18:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Rer6iYICFS6tDK2Ah1Gs1bLbBuE+k8SZmaKlOei8N9g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814564344)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419364344)\\/\",\"ClientRequestId\":\"fa04b364-dbd8-450d-a915-2a142ce9fee2-2021-04-19 07:42:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PIM469eSBaYZ1kSaNks4xBmOk4VFmKAbM7e7s/dljBI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21605,38 +20449,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11760" + "11763" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "01212a5e-0f32-4ab7-a087-bd94178e81e0" + "431cf7df-4220-40dc-a414-9271124a1012" ], "x-ms-client-request-id": [ - "56403afc-3b9f-4468-8404-1e44b8b8c70d-2020-04-23 01:18:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "456d48f2-8ffd-4092-ab59-8398016e5f45" ], "x-ms-correlation-request-id": [ - "01212a5e-0f32-4ab7-a087-bd94178e81e0" + "431cf7df-4220-40dc-a414-9271124a1012" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011810Z:01212a5e-0f32-4ab7-a087-bd94178e81e0" + "CENTRALINDIA:20210419T074244Z:431cf7df-4220-40dc-a414-9271124a1012" ], "Date": [ - "Thu, 23 Apr 2020 01:18:09 GMT" + "Mon, 19 Apr 2021 07:42:44 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -21645,29 +20486,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2acd4b8-4070-4821-94ae-9606d91e3817-2020-04-23 01:18:20Z-Ps" + "484d71dc-35d3-4352-a0fb-649fe155d7ce" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601100259)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205900259)\\/\",\"ClientRequestId\":\"a2acd4b8-4070-4821-94ae-9606d91e3817-2020-04-23 01:18:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kApmDx8uJ1YALkNP38Yj0FcVvjqXz7U/ApSgFFAaT2U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814574686)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419374686)\\/\",\"ClientRequestId\":\"3b6dffa6-f161-4ca0-8958-013789f29564-2021-04-19 07:42:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rGq9iyacBXHuEhfV4V/Lbwx3J2CqogPHjRUbdYTTe5I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21678,38 +20519,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11759" + "11762" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6821602c-b9a4-4316-8057-2af6dae6a19b" + "d71a405b-8329-4c66-a6d8-bae3894f06be" ], "x-ms-client-request-id": [ - "a2acd4b8-4070-4821-94ae-9606d91e3817-2020-04-23 01:18:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "484d71dc-35d3-4352-a0fb-649fe155d7ce" ], "x-ms-correlation-request-id": [ - "6821602c-b9a4-4316-8057-2af6dae6a19b" + "d71a405b-8329-4c66-a6d8-bae3894f06be" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011820Z:6821602c-b9a4-4316-8057-2af6dae6a19b" + "CENTRALINDIA:20210419T074254Z:d71a405b-8329-4c66-a6d8-bae3894f06be" ], "Date": [ - "Thu, 23 Apr 2020 01:18:20 GMT" + "Mon, 19 Apr 2021 07:42:54 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -21718,29 +20556,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95234ad2-1d85-4aca-b7ca-80d30f847f17-2020-04-23 01:18:30Z-Ps" + "5df743bb-dd01-40a2-9cf2-af0c1064125f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601110774)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205910774)\\/\",\"ClientRequestId\":\"95234ad2-1d85-4aca-b7ca-80d30f847f17-2020-04-23 01:18:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rHrKRYJw42d8MYwNamNUjFtZryei/NHpWPMRx93oTTw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814585031)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419385031)\\/\",\"ClientRequestId\":\"694e0111-e6d9-473c-8108-b7ba28594b04-2021-04-19 07:43:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VzmoD5Z5n8ZWnBc2uBu/de5iLx+PVEGbf7ilJmgUINg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21751,38 +20589,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11758" + "11761" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a855e563-56a7-4696-ba57-4e6cbfc2e506" + "a4c445d6-cd55-4dc8-b0b1-1250f6b457b6" ], "x-ms-client-request-id": [ - "95234ad2-1d85-4aca-b7ca-80d30f847f17-2020-04-23 01:18:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5df743bb-dd01-40a2-9cf2-af0c1064125f" ], "x-ms-correlation-request-id": [ - "a855e563-56a7-4696-ba57-4e6cbfc2e506" + "a4c445d6-cd55-4dc8-b0b1-1250f6b457b6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011831Z:a855e563-56a7-4696-ba57-4e6cbfc2e506" + "CENTRALINDIA:20210419T074305Z:a4c445d6-cd55-4dc8-b0b1-1250f6b457b6" ], "Date": [ - "Thu, 23 Apr 2020 01:18:30 GMT" + "Mon, 19 Apr 2021 07:43:04 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -21791,29 +20626,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e259d8cf-be02-4752-93dc-12954dff22df-2020-04-23 01:18:41Z-Ps" + "ddfa4013-678e-4a6b-a96d-2e285cdaf3f5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601121252)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205921252)\\/\",\"ClientRequestId\":\"e259d8cf-be02-4752-93dc-12954dff22df-2020-04-23 01:18:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"V15Ybf4H3QqAUZv8SKn7x49m3O9ELLu86OaHVQAYfwk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814595416)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419395416)\\/\",\"ClientRequestId\":\"4d8cdaf5-440a-4532-9d35-da3685870c91-2021-04-19 07:43:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KsfD2oepdbnwu+ypzvZ1WOvoKbq+C/ptJ10O89jdIDc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21823,39 +20658,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11760" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ee97cf4a-bf8c-47fb-bfa9-dbea6af597b9" + "36d56140-3655-40c1-b245-fc29aeec5868" ], "x-ms-client-request-id": [ - "e259d8cf-be02-4752-93dc-12954dff22df-2020-04-23 01:18:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11757" + "ddfa4013-678e-4a6b-a96d-2e285cdaf3f5" ], "x-ms-correlation-request-id": [ - "ee97cf4a-bf8c-47fb-bfa9-dbea6af597b9" + "36d56140-3655-40c1-b245-fc29aeec5868" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011841Z:ee97cf4a-bf8c-47fb-bfa9-dbea6af597b9" + "CENTRALINDIA:20210419T074315Z:36d56140-3655-40c1-b245-fc29aeec5868" ], "Date": [ - "Thu, 23 Apr 2020 01:18:40 GMT" + "Mon, 19 Apr 2021 07:43:15 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -21864,29 +20696,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ae16de9-2672-4551-b849-7eb52ddaa5ff-2020-04-23 01:18:51Z-Ps" + "8231d045-102a-4e01-a016-f695c6a8478e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601131760)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205931760)\\/\",\"ClientRequestId\":\"0ae16de9-2672-4551-b849-7eb52ddaa5ff-2020-04-23 01:18:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5v85BcZkJaUyzWUedchehYz20lNXrGhxAHo8R9vUFsA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814605762)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419405762)\\/\",\"ClientRequestId\":\"925f1c19-457e-4b13-a5bc-f9076de33ab7-2021-04-19 07:43:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8eyq9Z2XdyZTBPiQAbdPxOfO4sVvCHBFtmipJu1bXuo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21897,38 +20729,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11756" + "11759" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3e2abc49-cae8-43f6-892e-d0d76486a631" + "d2670e49-6491-4368-a67f-bc81ab0120f6" ], "x-ms-client-request-id": [ - "0ae16de9-2672-4551-b849-7eb52ddaa5ff-2020-04-23 01:18:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8231d045-102a-4e01-a016-f695c6a8478e" ], "x-ms-correlation-request-id": [ - "3e2abc49-cae8-43f6-892e-d0d76486a631" + "d2670e49-6491-4368-a67f-bc81ab0120f6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011853Z:3e2abc49-cae8-43f6-892e-d0d76486a631" + "CENTRALINDIA:20210419T074326Z:d2670e49-6491-4368-a67f-bc81ab0120f6" ], "Date": [ - "Thu, 23 Apr 2020 01:18:53 GMT" + "Mon, 19 Apr 2021 07:43:25 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -21937,29 +20766,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9186524-3fc6-4ee3-9c85-790c0aa7d075-2020-04-23 01:19:03Z-Ps" + "02255fd0-141e-45c8-ae82-35db946d22b5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601143435)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205943435)\\/\",\"ClientRequestId\":\"e9186524-3fc6-4ee3-9c85-790c0aa7d075-2020-04-23 01:19:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9dvjJZTHjW01rS/jShMtoxiYcSZ/4zzUCSW+BzZ6Xuo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814616119)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419416119)\\/\",\"ClientRequestId\":\"dac34b93-5ea0-4567-97c6-6a442a614647-2021-04-19 07:43:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/MpTU1hnvS8YwyCsK98D3ByU37EYrEgbRftj3h9WB2o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21970,38 +20799,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11755" + "11758" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8006a332-97aa-4a11-8c9b-644ed5115edf" + "1d982c78-4d87-4eb7-a315-eee1144b14f5" ], "x-ms-client-request-id": [ - "e9186524-3fc6-4ee3-9c85-790c0aa7d075-2020-04-23 01:19:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "02255fd0-141e-45c8-ae82-35db946d22b5" ], "x-ms-correlation-request-id": [ - "8006a332-97aa-4a11-8c9b-644ed5115edf" + "1d982c78-4d87-4eb7-a315-eee1144b14f5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011903Z:8006a332-97aa-4a11-8c9b-644ed5115edf" + "CENTRALINDIA:20210419T074336Z:1d982c78-4d87-4eb7-a315-eee1144b14f5" ], "Date": [ - "Thu, 23 Apr 2020 01:19:03 GMT" + "Mon, 19 Apr 2021 07:43:36 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -22010,29 +20836,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1af23c27-298a-420b-bc69-f722f964177f-2020-04-23 01:19:13Z-Ps" + "77a71d3b-4543-475b-9d2d-ad744377e8b3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601153997)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205953997)\\/\",\"ClientRequestId\":\"1af23c27-298a-420b-bc69-f722f964177f-2020-04-23 01:19:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mBleYUxdxSqNBy5zMitCjKGBIW+iSKBPdiujuU3UPvQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814626490)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419426490)\\/\",\"ClientRequestId\":\"7120d3f9-20e5-44ed-89d4-265a75ed1ecd-2021-04-19 07:43:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qUZAw26bvtziVVNZYu+j5O+11U6hgHXeYziylNF8TdA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22043,38 +20869,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11754" + "11757" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "14261ea9-e241-4cf3-98ca-4fc26304744c" + "4567b218-6b6a-494f-8b22-36237dbd91f2" ], "x-ms-client-request-id": [ - "1af23c27-298a-420b-bc69-f722f964177f-2020-04-23 01:19:13Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "77a71d3b-4543-475b-9d2d-ad744377e8b3" ], "x-ms-correlation-request-id": [ - "14261ea9-e241-4cf3-98ca-4fc26304744c" + "4567b218-6b6a-494f-8b22-36237dbd91f2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011914Z:14261ea9-e241-4cf3-98ca-4fc26304744c" + "CENTRALINDIA:20210419T074346Z:4567b218-6b6a-494f-8b22-36237dbd91f2" ], "Date": [ - "Thu, 23 Apr 2020 01:19:14 GMT" + "Mon, 19 Apr 2021 07:43:46 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -22083,29 +20906,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b25ec371-3015-400e-b642-9abc97ca8842-2020-04-23 01:19:24Z-Ps" + "4a307e93-b14b-44d0-896e-c44f9d9b5d7d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601164489)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205964489)\\/\",\"ClientRequestId\":\"b25ec371-3015-400e-b642-9abc97ca8842-2020-04-23 01:19:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0c+9RvO98Jun0oeGL6n9ucOPCRnA0p3ffFU+OyT+qaM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814636853)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419436853)\\/\",\"ClientRequestId\":\"0729f3e3-e0ef-4d8d-a397-824713f2d73a-2021-04-19 07:43:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"aZ4x/DaZhFAD/NlAWqjh2LP5885Lt+swlK0lgZKRpHE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22116,38 +20939,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11753" + "11756" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e22b8ceb-66e5-48e3-bf59-e4658af37dce" + "dc53953b-6872-4cff-82d0-673b09c852a8" ], "x-ms-client-request-id": [ - "b25ec371-3015-400e-b642-9abc97ca8842-2020-04-23 01:19:24Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4a307e93-b14b-44d0-896e-c44f9d9b5d7d" ], "x-ms-correlation-request-id": [ - "e22b8ceb-66e5-48e3-bf59-e4658af37dce" + "dc53953b-6872-4cff-82d0-673b09c852a8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011924Z:e22b8ceb-66e5-48e3-bf59-e4658af37dce" + "CENTRALINDIA:20210419T074357Z:dc53953b-6872-4cff-82d0-673b09c852a8" ], "Date": [ - "Thu, 23 Apr 2020 01:19:24 GMT" + "Mon, 19 Apr 2021 07:43:56 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -22156,29 +20976,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c052af97-844a-47c3-9d82-5120b398124e-2020-04-23 01:19:35Z-Ps" + "998136a0-9c64-48a3-b9a7-d2167d07b874" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601175105)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205975105)\\/\",\"ClientRequestId\":\"c052af97-844a-47c3-9d82-5120b398124e-2020-04-23 01:19:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gR2dFzsdIPhDzgo0FRzy/2sBAcXDpTzBHE8DxB1eyBY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814647216)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419447216)\\/\",\"ClientRequestId\":\"76c662f9-f50b-4cce-94a1-e6f5f1eb3a98-2021-04-19 07:44:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"f39F+o9gLJYQsPdQ/T3xGsP3qzpiva9IG0hEPI+jV5k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22189,38 +21009,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11752" + "11755" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "93c10264-cd2c-4047-be77-4a8fa7f074fd" + "278028bf-ebbd-4d73-931f-2513891d4984" ], "x-ms-client-request-id": [ - "c052af97-844a-47c3-9d82-5120b398124e-2020-04-23 01:19:35Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "998136a0-9c64-48a3-b9a7-d2167d07b874" ], "x-ms-correlation-request-id": [ - "93c10264-cd2c-4047-be77-4a8fa7f074fd" + "278028bf-ebbd-4d73-931f-2513891d4984" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011935Z:93c10264-cd2c-4047-be77-4a8fa7f074fd" + "CENTRALINDIA:20210419T074407Z:278028bf-ebbd-4d73-931f-2513891d4984" ], "Date": [ - "Thu, 23 Apr 2020 01:19:34 GMT" + "Mon, 19 Apr 2021 07:44:07 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -22229,29 +21046,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1708fbcf-f788-4488-8e38-f3d91d5e2e7a-2020-04-23 01:19:45Z-Ps" + "7185ced6-51d8-4352-9b63-6c98c8c4a222" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601185843)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205985843)\\/\",\"ClientRequestId\":\"1708fbcf-f788-4488-8e38-f3d91d5e2e7a-2020-04-23 01:19:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cBzGmr3wBoygsalcYF8nD9oC/FToGysInKZjv6S9vOo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814657591)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419457591)\\/\",\"ClientRequestId\":\"f9e8c73f-d03b-4b9d-98af-81cca94194cb-2021-04-19 07:44:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xKFOdBV8hxwlkp+bZYFiucS+i6SebGj/BCuRoxrlltw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22262,38 +21079,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11751" + "11754" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d98193e4-592c-49d9-a18f-6c6beb22cd6a" + "337b4b84-19a3-4593-baff-70fb0c293ae3" ], "x-ms-client-request-id": [ - "1708fbcf-f788-4488-8e38-f3d91d5e2e7a-2020-04-23 01:19:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7185ced6-51d8-4352-9b63-6c98c8c4a222" ], "x-ms-correlation-request-id": [ - "d98193e4-592c-49d9-a18f-6c6beb22cd6a" + "337b4b84-19a3-4593-baff-70fb0c293ae3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011947Z:d98193e4-592c-49d9-a18f-6c6beb22cd6a" + "CENTRALINDIA:20210419T074417Z:337b4b84-19a3-4593-baff-70fb0c293ae3" ], "Date": [ - "Thu, 23 Apr 2020 01:19:47 GMT" + "Mon, 19 Apr 2021 07:44:17 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -22302,29 +21116,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90f83dab-ab08-4784-96f7-0f85f6b1ba76-2020-04-23 01:19:57Z-Ps" + "816636ea-3796-453f-9788-930938297756" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601197547)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588205997547)\\/\",\"ClientRequestId\":\"90f83dab-ab08-4784-96f7-0f85f6b1ba76-2020-04-23 01:19:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Oabxh1dQ86GMmV3LWVijwIqaZUERrXYeSjoAua5g0Gk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814667987)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419467987)\\/\",\"ClientRequestId\":\"213a19ac-d3c4-4fee-b36d-b35ba449198d-2021-04-19 07:44:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TTIMHbhlkRfZbQTjhv7HlgEVkfsoByyhJMdqVMcfP7k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22334,39 +21148,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11753" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0487e05d-9225-4c72-a32d-0aa14ecbbe03" + "6098acae-0444-4db2-82c5-84519b543886" ], "x-ms-client-request-id": [ - "90f83dab-ab08-4784-96f7-0f85f6b1ba76-2020-04-23 01:19:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11750" + "816636ea-3796-453f-9788-930938297756" ], "x-ms-correlation-request-id": [ - "0487e05d-9225-4c72-a32d-0aa14ecbbe03" + "6098acae-0444-4db2-82c5-84519b543886" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T011958Z:0487e05d-9225-4c72-a32d-0aa14ecbbe03" + "CENTRALINDIA:20210419T074428Z:6098acae-0444-4db2-82c5-84519b543886" ], "Date": [ - "Thu, 23 Apr 2020 01:19:57 GMT" + "Mon, 19 Apr 2021 07:44:27 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -22375,29 +21186,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b3c042b-c053-42a6-a3a7-3951b227e4cb-2020-04-23 01:20:08Z-Ps" + "c58beb2e-06e7-4c59-b8f4-3281d1074b79" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601208175)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206008175)\\/\",\"ClientRequestId\":\"6b3c042b-c053-42a6-a3a7-3951b227e4cb-2020-04-23 01:20:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3j5iWBpOVcNdIkHVnO9/KxDiZ930XEfMqUjIGjY76Ik=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814678352)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419478352)\\/\",\"ClientRequestId\":\"c3177281-6283-4096-b8eb-ca01072f636f-2021-04-19 07:44:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZA8RXVsO2d4SBVuew6XQOeO1aj/eClcJiA3OHf18l8c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22408,38 +21219,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11749" + "11752" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "15a3bf7d-1e92-4dbf-a061-5eff4ef65041" + "8c6ec5e7-c18e-4736-b4cf-21cd925006ee" ], "x-ms-client-request-id": [ - "6b3c042b-c053-42a6-a3a7-3951b227e4cb-2020-04-23 01:20:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c58beb2e-06e7-4c59-b8f4-3281d1074b79" ], "x-ms-correlation-request-id": [ - "15a3bf7d-1e92-4dbf-a061-5eff4ef65041" + "8c6ec5e7-c18e-4736-b4cf-21cd925006ee" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012008Z:15a3bf7d-1e92-4dbf-a061-5eff4ef65041" + "CENTRALINDIA:20210419T074438Z:8c6ec5e7-c18e-4736-b4cf-21cd925006ee" ], "Date": [ - "Thu, 23 Apr 2020 01:20:07 GMT" + "Mon, 19 Apr 2021 07:44:38 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -22448,29 +21256,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06ef38ec-c432-4d6e-a755-1984e52a8d34-2020-04-23 01:20:18Z-Ps" + "bb1b8aba-53b3-4500-8420-54a5d8a1fe3a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601218789)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206018789)\\/\",\"ClientRequestId\":\"06ef38ec-c432-4d6e-a755-1984e52a8d34-2020-04-23 01:20:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cYRiIFZuopGkvUbw+wJN84yw8YHGEcUpUxQttW6Yf9Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814688785)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419488785)\\/\",\"ClientRequestId\":\"d5fe64d8-9023-4738-98e0-e4a24df395ca-2021-04-19 07:44:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nBzv10PoTNDym07h+VwkT7ZjDg94OuKxytDlzyKv5bk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22481,38 +21289,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11748" + "11751" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9191ca94-21c0-4933-bba7-e47360097ef6" + "4e6255ce-045f-42cf-8055-50493303507f" ], "x-ms-client-request-id": [ - "06ef38ec-c432-4d6e-a755-1984e52a8d34-2020-04-23 01:20:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bb1b8aba-53b3-4500-8420-54a5d8a1fe3a" ], "x-ms-correlation-request-id": [ - "9191ca94-21c0-4933-bba7-e47360097ef6" + "4e6255ce-045f-42cf-8055-50493303507f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012019Z:9191ca94-21c0-4933-bba7-e47360097ef6" + "CENTRALINDIA:20210419T074449Z:4e6255ce-045f-42cf-8055-50493303507f" ], "Date": [ - "Thu, 23 Apr 2020 01:20:18 GMT" + "Mon, 19 Apr 2021 07:44:48 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -22521,29 +21326,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc1d13af-0116-4d74-baed-622030e7c377-2020-04-23 01:20:29Z-Ps" + "d4c2493c-3208-46af-9737-86bdeb17d67d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601229274)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206029274)\\/\",\"ClientRequestId\":\"fc1d13af-0116-4d74-baed-622030e7c377-2020-04-23 01:20:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/C6ClITt1bJzeqxIVkJ7/BeiV845w31XcdjaxmstzRo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814699144)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419499144)\\/\",\"ClientRequestId\":\"2ac75150-4c44-48af-b7d4-3cb1af2da819-2021-04-19 07:44:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AxdMSx4qGJSbe61gS/fquAUC/8c58vlctv5F44TzMe8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22554,38 +21359,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11747" + "11750" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e6aa26e6-2a89-4229-93d4-b1a76f77ce85" + "2429d640-891a-47ed-953a-c4689d81fdfa" ], "x-ms-client-request-id": [ - "fc1d13af-0116-4d74-baed-622030e7c377-2020-04-23 01:20:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d4c2493c-3208-46af-9737-86bdeb17d67d" ], "x-ms-correlation-request-id": [ - "e6aa26e6-2a89-4229-93d4-b1a76f77ce85" + "2429d640-891a-47ed-953a-c4689d81fdfa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012029Z:e6aa26e6-2a89-4229-93d4-b1a76f77ce85" + "CENTRALINDIA:20210419T074459Z:2429d640-891a-47ed-953a-c4689d81fdfa" ], "Date": [ - "Thu, 23 Apr 2020 01:20:29 GMT" + "Mon, 19 Apr 2021 07:44:58 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -22594,29 +21396,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d3ee3bd-01a6-4374-9734-e2c124b9b5d5-2020-04-23 01:20:39Z-Ps" + "220f06e0-56de-404e-b63b-fb1e834b4082" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601239775)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206039775)\\/\",\"ClientRequestId\":\"6d3ee3bd-01a6-4374-9734-e2c124b9b5d5-2020-04-23 01:20:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OxpY47R3MOn5OwLnEj76Opxv4+jMlJZIBnG2Oxsb5y4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814709505)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419509505)\\/\",\"ClientRequestId\":\"522079b7-acb0-40d7-89ac-51345dd09393-2021-04-19 07:45:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YK250m4oYnAG3DZmQtz1/i1x8jg+s8xeGsEmbKcL9hA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22627,38 +21429,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11746" + "11749" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bb6dfcce-b984-474a-81de-a46c6e04e1c7" + "7214a74e-0979-4c1b-9a98-4dc9a6305abc" ], "x-ms-client-request-id": [ - "6d3ee3bd-01a6-4374-9734-e2c124b9b5d5-2020-04-23 01:20:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "220f06e0-56de-404e-b63b-fb1e834b4082" ], "x-ms-correlation-request-id": [ - "bb6dfcce-b984-474a-81de-a46c6e04e1c7" + "7214a74e-0979-4c1b-9a98-4dc9a6305abc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012040Z:bb6dfcce-b984-474a-81de-a46c6e04e1c7" + "CENTRALINDIA:20210419T074509Z:7214a74e-0979-4c1b-9a98-4dc9a6305abc" ], "Date": [ - "Thu, 23 Apr 2020 01:20:39 GMT" + "Mon, 19 Apr 2021 07:45:09 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -22667,29 +21466,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14f96fb1-7ec2-457b-ab58-0400e9e36706-2020-04-23 01:20:50Z-Ps" + "4962b05c-9a79-4d41-a711-462e846c72e6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601250347)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206050347)\\/\",\"ClientRequestId\":\"14f96fb1-7ec2-457b-ab58-0400e9e36706-2020-04-23 01:20:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KZTUH6orTijB6FoSthZSEy0UFlZh1P5EuPNwE6q73Ns=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814719862)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419519862)\\/\",\"ClientRequestId\":\"277f6126-0d24-47b8-8e2d-2a80ca3ba75c-2021-04-19 07:45:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4klw5eujx+f+ZCJfpHIeC5sMJPq1GhGnpNIDy7N3NAg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22699,39 +21498,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11748" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "10ebd5b6-0032-4c80-93fc-23e32e93f679" + "735f79dc-279e-4535-aaae-18d650b0d53f" ], "x-ms-client-request-id": [ - "14f96fb1-7ec2-457b-ab58-0400e9e36706-2020-04-23 01:20:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11745" + "4962b05c-9a79-4d41-a711-462e846c72e6" ], "x-ms-correlation-request-id": [ - "10ebd5b6-0032-4c80-93fc-23e32e93f679" + "735f79dc-279e-4535-aaae-18d650b0d53f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012050Z:10ebd5b6-0032-4c80-93fc-23e32e93f679" + "CENTRALINDIA:20210419T074520Z:735f79dc-279e-4535-aaae-18d650b0d53f" ], "Date": [ - "Thu, 23 Apr 2020 01:20:50 GMT" + "Mon, 19 Apr 2021 07:45:19 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -22740,29 +21536,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2f43e6b-1006-45c7-82f4-6d07c55c680e-2020-04-23 01:21:00Z-Ps" + "8ad702fa-3ffc-4347-a46f-a3b3c9f348dc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601260967)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206060967)\\/\",\"ClientRequestId\":\"f2f43e6b-1006-45c7-82f4-6d07c55c680e-2020-04-23 01:21:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BVUB0KSighsJIDBobeHMvM+o5aItNtgX0b0ZuwqtzL0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814730379)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419530379)\\/\",\"ClientRequestId\":\"db161adf-7082-4937-879e-0cdc6dec1e33-2021-04-19 07:45:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2vLob31eUkZKhG26N3N379ilztSpP81glsLETJFVagE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22773,38 +21569,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11744" + "11747" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a185c4cf-3f16-4d71-bab6-dfb6075630d1" + "00ab48ec-4476-4b0a-9420-5d529ffc8648" ], "x-ms-client-request-id": [ - "f2f43e6b-1006-45c7-82f4-6d07c55c680e-2020-04-23 01:21:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8ad702fa-3ffc-4347-a46f-a3b3c9f348dc" ], "x-ms-correlation-request-id": [ - "a185c4cf-3f16-4d71-bab6-dfb6075630d1" + "00ab48ec-4476-4b0a-9420-5d529ffc8648" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012102Z:a185c4cf-3f16-4d71-bab6-dfb6075630d1" + "CENTRALINDIA:20210419T074530Z:00ab48ec-4476-4b0a-9420-5d529ffc8648" ], "Date": [ - "Thu, 23 Apr 2020 01:21:02 GMT" + "Mon, 19 Apr 2021 07:45:29 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -22813,29 +21606,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e90adec-72b6-47d5-b188-e8474ed461ce-2020-04-23 01:21:12Z-Ps" + "d92a324f-fd35-4caa-8dd9-55b0e7babdf9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601272609)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206072609)\\/\",\"ClientRequestId\":\"3e90adec-72b6-47d5-b188-e8474ed461ce-2020-04-23 01:21:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vyxbYNeodSZioks9TzyvUBJyHst22hv0oBe79dzYq6M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814740746)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419540746)\\/\",\"ClientRequestId\":\"03dac26b-8fe7-44bb-ab09-9712029940cc-2021-04-19 07:45:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SA/RmBU1/l6qtTGMFiRyjni+SzMx90OJDffA0r/f+Yg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22846,38 +21639,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11743" + "11746" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c2adf1ab-d0cd-4200-a88e-57d057abf57e" + "0382770c-e583-4865-a1a0-3ebb5359046f" ], "x-ms-client-request-id": [ - "3e90adec-72b6-47d5-b188-e8474ed461ce-2020-04-23 01:21:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d92a324f-fd35-4caa-8dd9-55b0e7babdf9" ], "x-ms-correlation-request-id": [ - "c2adf1ab-d0cd-4200-a88e-57d057abf57e" + "0382770c-e583-4865-a1a0-3ebb5359046f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012112Z:c2adf1ab-d0cd-4200-a88e-57d057abf57e" + "CENTRALINDIA:20210419T074541Z:0382770c-e583-4865-a1a0-3ebb5359046f" ], "Date": [ - "Thu, 23 Apr 2020 01:21:12 GMT" + "Mon, 19 Apr 2021 07:45:41 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -22886,29 +21676,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e988aa7-1448-4e80-8297-67ffe5de63f4-2020-04-23 01:21:23Z-Ps" + "aae83bd1-9257-4a50-939d-e98f8edaf77b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601283099)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206083099)\\/\",\"ClientRequestId\":\"3e988aa7-1448-4e80-8297-67ffe5de63f4-2020-04-23 01:21:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BpUteybOJX3WaCK2/oI+reJMBtsD/0Ca3NF2i16dxPE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814751387)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419551387)\\/\",\"ClientRequestId\":\"083697e8-2e10-441c-858e-42903767ba98-2021-04-19 07:45:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xVv2CoPyQxUOzocMEdmuQJRsxERnb3rq8ZouLTF0+q8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22919,38 +21709,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11742" + "11745" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a25b72fe-6d0f-46d7-a072-84f53151410c" + "4f826c01-9d03-40b1-a6b2-346a25afd15a" ], "x-ms-client-request-id": [ - "3e988aa7-1448-4e80-8297-67ffe5de63f4-2020-04-23 01:21:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "aae83bd1-9257-4a50-939d-e98f8edaf77b" ], "x-ms-correlation-request-id": [ - "a25b72fe-6d0f-46d7-a072-84f53151410c" + "4f826c01-9d03-40b1-a6b2-346a25afd15a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012123Z:a25b72fe-6d0f-46d7-a072-84f53151410c" + "CENTRALINDIA:20210419T074551Z:4f826c01-9d03-40b1-a6b2-346a25afd15a" ], "Date": [ - "Thu, 23 Apr 2020 01:21:22 GMT" + "Mon, 19 Apr 2021 07:45:51 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -22959,29 +21746,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0fe03d0-9a03-42be-aa8e-0d672e025aac-2020-04-23 01:21:33Z-Ps" + "18c1297f-ca51-48e6-ada4-a32658931145" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601293585)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206093585)\\/\",\"ClientRequestId\":\"d0fe03d0-9a03-42be-aa8e-0d672e025aac-2020-04-23 01:21:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ApWgQjRa9kMLQROsfiBclrwiSVmXAERgSFdkYGZylNc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814761741)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419561741)\\/\",\"ClientRequestId\":\"c0516b33-475b-4b99-b55f-c95140760194-2021-04-19 07:46:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TctFImLw2DWp6iLm51Ki/WfN+HMOJj/+3bOpkEKd0KU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22992,38 +21779,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11741" + "11744" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6d582c63-64bc-48ad-9c5b-3c6a4c500cf0" + "702780ca-2d05-4ddb-b405-39008b3eb07c" ], "x-ms-client-request-id": [ - "d0fe03d0-9a03-42be-aa8e-0d672e025aac-2020-04-23 01:21:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "18c1297f-ca51-48e6-ada4-a32658931145" ], "x-ms-correlation-request-id": [ - "6d582c63-64bc-48ad-9c5b-3c6a4c500cf0" + "702780ca-2d05-4ddb-b405-39008b3eb07c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012134Z:6d582c63-64bc-48ad-9c5b-3c6a4c500cf0" + "CENTRALINDIA:20210419T074601Z:702780ca-2d05-4ddb-b405-39008b3eb07c" ], "Date": [ - "Thu, 23 Apr 2020 01:21:34 GMT" + "Mon, 19 Apr 2021 07:46:01 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -23032,29 +21816,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c967397-cbda-49e2-bcfc-8e420bdfc8c2-2020-04-23 01:21:44Z-Ps" + "7eb77246-b4c6-4c5e-af0b-ca831581d80a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601304199)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206104199)\\/\",\"ClientRequestId\":\"0c967397-cbda-49e2-bcfc-8e420bdfc8c2-2020-04-23 01:21:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Nm+zTqyZ0OHKPTUvAw/4xGihHum2ctLnPW3GqOGOzD4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814772082)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419572082)\\/\",\"ClientRequestId\":\"2a8c775c-de48-4768-85b0-01d4392b471c-2021-04-19 07:46:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iNRyx2JM9VCXDGStCksXPm+7iniKt/dAoVA3F2ycn68=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23065,38 +21849,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11740" + "11743" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f7c93784-0e3d-494b-ace3-8a0437360b9c" + "4caf1eca-d106-4d5a-be87-bbda2fb7fd70" ], "x-ms-client-request-id": [ - "0c967397-cbda-49e2-bcfc-8e420bdfc8c2-2020-04-23 01:21:44Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7eb77246-b4c6-4c5e-af0b-ca831581d80a" ], "x-ms-correlation-request-id": [ - "f7c93784-0e3d-494b-ace3-8a0437360b9c" + "4caf1eca-d106-4d5a-be87-bbda2fb7fd70" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012144Z:f7c93784-0e3d-494b-ace3-8a0437360b9c" + "CENTRALINDIA:20210419T074612Z:4caf1eca-d106-4d5a-be87-bbda2fb7fd70" ], "Date": [ - "Thu, 23 Apr 2020 01:21:44 GMT" + "Mon, 19 Apr 2021 07:46:11 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -23105,29 +21886,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3eb71f6e-5630-4c3a-957a-7b723fe3fd84-2020-04-23 01:21:54Z-Ps" + "b18e55a4-7518-4854-87d0-f4db21ef8800" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601314714)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206114714)\\/\",\"ClientRequestId\":\"3eb71f6e-5630-4c3a-957a-7b723fe3fd84-2020-04-23 01:21:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NxQkSxRgkbRfCQtNeSiijzTAxtTqMQIG2+lqwVJ1vc0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814782439)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419582439)\\/\",\"ClientRequestId\":\"d7f1053b-d353-4759-ad79-634ecfe0bc20-2021-04-19 07:46:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BYH6I3d0M7+p6ky5BwdQtdXezVAuzOluhnBqdxTtdsA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23138,38 +21919,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11739" + "11742" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4c173abc-6978-4e26-9c73-82a7680113ee" + "f38576b5-08eb-4571-ac4f-6fcbcdcac5f9" ], "x-ms-client-request-id": [ - "3eb71f6e-5630-4c3a-957a-7b723fe3fd84-2020-04-23 01:21:54Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b18e55a4-7518-4854-87d0-f4db21ef8800" ], "x-ms-correlation-request-id": [ - "4c173abc-6978-4e26-9c73-82a7680113ee" + "f38576b5-08eb-4571-ac4f-6fcbcdcac5f9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012155Z:4c173abc-6978-4e26-9c73-82a7680113ee" + "CENTRALINDIA:20210419T074622Z:f38576b5-08eb-4571-ac4f-6fcbcdcac5f9" ], "Date": [ - "Thu, 23 Apr 2020 01:21:54 GMT" + "Mon, 19 Apr 2021 07:46:22 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -23178,29 +21956,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "11960b11-3296-4367-938e-72306d70d4a5-2020-04-23 01:22:05Z-Ps" + "4b78a0f4-1c9e-4386-8d9a-20f80cd2c400" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601325208)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206125208)\\/\",\"ClientRequestId\":\"11960b11-3296-4367-938e-72306d70d4a5-2020-04-23 01:22:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+bklF6JemGSxycqw8i6NM+9wYulFGLDmxoTqYZ5g8Ow=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814792863)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419592863)\\/\",\"ClientRequestId\":\"028b826e-4fb5-4825-b2aa-a36f95b996b7-2021-04-19 07:46:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Z0l2Yu/sL50L4DOdTqR/RBsP3w82NCSj3P8sK71o7jg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23210,39 +21988,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11741" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e34dd3be-e797-4240-85d2-17d758fcbd89" + "f862af5b-bdd7-4748-8e68-31e41dd4d73b" ], "x-ms-client-request-id": [ - "11960b11-3296-4367-938e-72306d70d4a5-2020-04-23 01:22:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11738" + "4b78a0f4-1c9e-4386-8d9a-20f80cd2c400" ], "x-ms-correlation-request-id": [ - "e34dd3be-e797-4240-85d2-17d758fcbd89" + "f862af5b-bdd7-4748-8e68-31e41dd4d73b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012205Z:e34dd3be-e797-4240-85d2-17d758fcbd89" + "CENTRALINDIA:20210419T074633Z:f862af5b-bdd7-4748-8e68-31e41dd4d73b" ], "Date": [ - "Thu, 23 Apr 2020 01:22:05 GMT" + "Mon, 19 Apr 2021 07:46:32 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -23251,29 +22026,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d31435a5-01cd-434a-9115-873036863eb3-2020-04-23 01:22:15Z-Ps" + "b1af04c6-39f9-4961-ac71-d05afa3ff8ee" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601335743)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206135743)\\/\",\"ClientRequestId\":\"d31435a5-01cd-434a-9115-873036863eb3-2020-04-23 01:22:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"V6SwSDCYYag33sJZTWwB9nMS9uEUIWEi4dvv3BP8zY8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814803220)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419603220)\\/\",\"ClientRequestId\":\"5b61a5dc-cecd-4717-890a-6bcce6beb225-2021-04-19 07:46:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RlpIwn/uPHmy+525SrZEmbVBCMesnSZ0yLK/Web/iBQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23284,38 +22059,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11737" + "11740" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3b97dd5e-4451-4b4f-b819-a6cc93206d7a" + "8c143f6e-c21e-4939-9789-f4e33ed9aa1a" ], "x-ms-client-request-id": [ - "d31435a5-01cd-434a-9115-873036863eb3-2020-04-23 01:22:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b1af04c6-39f9-4961-ac71-d05afa3ff8ee" ], "x-ms-correlation-request-id": [ - "3b97dd5e-4451-4b4f-b819-a6cc93206d7a" + "8c143f6e-c21e-4939-9789-f4e33ed9aa1a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012217Z:3b97dd5e-4451-4b4f-b819-a6cc93206d7a" + "CENTRALINDIA:20210419T074643Z:8c143f6e-c21e-4939-9789-f4e33ed9aa1a" ], "Date": [ - "Thu, 23 Apr 2020 01:22:16 GMT" + "Mon, 19 Apr 2021 07:46:42 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -23324,29 +22096,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d87a4db-0ded-47d1-8212-b895ce92b848-2020-04-23 01:22:27Z-Ps" + "d3e6555d-02a0-4139-b151-c5c6e8433c14" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601347432)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206147432)\\/\",\"ClientRequestId\":\"5d87a4db-0ded-47d1-8212-b895ce92b848-2020-04-23 01:22:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"R8fQlr175/OeDyXD78Ji+WgZyjTSJPg8z8m2jCvxsVw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814813564)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419613564)\\/\",\"ClientRequestId\":\"cb0e3bcd-d1b1-40b9-9a89-c0ad85151053-2021-04-19 07:46:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/4qh5A3rs0i3PyHXZl+ljkzizih2WaylNl7WwN9iG0A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23357,38 +22129,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11736" + "11739" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3dd9df02-a3d7-480e-92ea-db50cf2011f2" + "3c0d0b3d-f099-4726-bb05-4adb23010e7d" ], "x-ms-client-request-id": [ - "5d87a4db-0ded-47d1-8212-b895ce92b848-2020-04-23 01:22:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d3e6555d-02a0-4139-b151-c5c6e8433c14" ], "x-ms-correlation-request-id": [ - "3dd9df02-a3d7-480e-92ea-db50cf2011f2" + "3c0d0b3d-f099-4726-bb05-4adb23010e7d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012227Z:3dd9df02-a3d7-480e-92ea-db50cf2011f2" + "CENTRALINDIA:20210419T074653Z:3c0d0b3d-f099-4726-bb05-4adb23010e7d" ], "Date": [ - "Thu, 23 Apr 2020 01:22:26 GMT" + "Mon, 19 Apr 2021 07:46:52 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -23397,29 +22166,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe83ed87-1a81-4441-8075-88e6dd9ed2fe-2020-04-23 01:22:38Z-Ps" + "74d69a3e-dd80-4c9d-a291-b8ebd1f965ed" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601358024)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206158024)\\/\",\"ClientRequestId\":\"fe83ed87-1a81-4441-8075-88e6dd9ed2fe-2020-04-23 01:22:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Zf9R9Yggs+kWossYnwCTNMqPD09xf2gJi/CX+S0yDVM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814823922)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419623922)\\/\",\"ClientRequestId\":\"b0c83b02-5d58-4f23-9703-a10d551bb8f4-2021-04-19 07:47:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"s7sdPTAmiM6CsKzWHUfo6jiLLLr5KlPJS0iqfguDGM0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23430,38 +22199,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11735" + "11738" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f90780c0-dc3d-40fe-8e88-18bd72f3c5a2" + "f497101e-1f15-42a8-a907-f365bf6022df" ], "x-ms-client-request-id": [ - "fe83ed87-1a81-4441-8075-88e6dd9ed2fe-2020-04-23 01:22:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "74d69a3e-dd80-4c9d-a291-b8ebd1f965ed" ], "x-ms-correlation-request-id": [ - "f90780c0-dc3d-40fe-8e88-18bd72f3c5a2" + "f497101e-1f15-42a8-a907-f365bf6022df" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012238Z:f90780c0-dc3d-40fe-8e88-18bd72f3c5a2" + "CENTRALINDIA:20210419T074704Z:f497101e-1f15-42a8-a907-f365bf6022df" ], "Date": [ - "Thu, 23 Apr 2020 01:22:38 GMT" + "Mon, 19 Apr 2021 07:47:04 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -23470,29 +22236,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d75f3ae9-42a9-472a-96f7-e62c7762c0da-2020-04-23 01:22:48Z-Ps" + "e57c7d9c-8f4a-4dbd-abd1-115053475efa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601368555)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206168555)\\/\",\"ClientRequestId\":\"d75f3ae9-42a9-472a-96f7-e62c7762c0da-2020-04-23 01:22:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"t0pdL3kxOXG9Pm8h8gfpUcxy1y/PUOb/BTfvBgORvm0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814834278)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419634278)\\/\",\"ClientRequestId\":\"d8b99b61-ffd1-4f6b-a38e-87df77547ce2-2021-04-19 07:47:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cn8f1e6zcm1rkBKcyW/f3qBN/W1ozHEagYegoW0JcVc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23503,38 +22269,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11734" + "11737" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e7fe820f-f751-4367-899b-b10eb8af7eef" + "48775134-5d6b-4cde-a271-2035a90cd354" ], "x-ms-client-request-id": [ - "d75f3ae9-42a9-472a-96f7-e62c7762c0da-2020-04-23 01:22:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e57c7d9c-8f4a-4dbd-abd1-115053475efa" ], "x-ms-correlation-request-id": [ - "e7fe820f-f751-4367-899b-b10eb8af7eef" + "48775134-5d6b-4cde-a271-2035a90cd354" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012248Z:e7fe820f-f751-4367-899b-b10eb8af7eef" + "CENTRALINDIA:20210419T074714Z:48775134-5d6b-4cde-a271-2035a90cd354" ], "Date": [ - "Thu, 23 Apr 2020 01:22:48 GMT" + "Mon, 19 Apr 2021 07:47:14 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -23543,29 +22306,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "854a8b77-b6b4-49c1-9883-2cb39e4761f9-2020-04-23 01:22:59Z-Ps" + "afecc301-a26e-45ee-b965-0034d96a5b8b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601379035)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206179035)\\/\",\"ClientRequestId\":\"854a8b77-b6b4-49c1-9883-2cb39e4761f9-2020-04-23 01:22:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"elaqSnm+Cgsb3eUMTO/XnbR++w20+rxuRlXAkFBH4jU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814844636)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419644636)\\/\",\"ClientRequestId\":\"05bb1949-37c9-4788-af6b-508f289ec58d-2021-04-19 07:47:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PGJgrlEgyGraJUfop3NokuJ3H5OBF5deGNhIZl9uoUM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23575,39 +22338,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11733" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4ace80be-106a-4398-8bb7-378e84440d18" + "9cc989f0-2844-499a-9635-2d44ce84cbb4" ], "x-ms-client-request-id": [ - "854a8b77-b6b4-49c1-9883-2cb39e4761f9-2020-04-23 01:22:59Z-Ps" + "afecc301-a26e-45ee-b965-0034d96a5b8b" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11736" ], "x-ms-correlation-request-id": [ - "4ace80be-106a-4398-8bb7-378e84440d18" + "9cc989f0-2844-499a-9635-2d44ce84cbb4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012259Z:4ace80be-106a-4398-8bb7-378e84440d18" + "CENTRALINDIA:20210419T074724Z:9cc989f0-2844-499a-9635-2d44ce84cbb4" ], "Date": [ - "Thu, 23 Apr 2020 01:22:58 GMT" + "Mon, 19 Apr 2021 07:47:24 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -23616,29 +22376,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e414b918-56e8-4298-a3a2-dffad5a51a62-2020-04-23 01:23:09Z-Ps" + "1d9dd045-ac94-4151-af15-1e5635f4ee70" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601389564)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206189564)\\/\",\"ClientRequestId\":\"e414b918-56e8-4298-a3a2-dffad5a51a62-2020-04-23 01:23:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ij5x+rJHdbHQx50lMi9yfP91Lz6hF1i9GagaUGe2vCk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814854990)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419654990)\\/\",\"ClientRequestId\":\"c0ffd335-d1da-4697-b94c-674abfb17115-2021-04-19 07:47:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AMZ546hRI3iwCFQOTjBjiOS4Sz63RN+4uIljbxCXnuM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23649,38 +22409,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11732" + "11735" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5cb6a370-7c2f-4cc8-aea7-c4858e279f48" + "cd18c66e-98a8-4b39-86c6-e75bbb53ed55" ], "x-ms-client-request-id": [ - "e414b918-56e8-4298-a3a2-dffad5a51a62-2020-04-23 01:23:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1d9dd045-ac94-4151-af15-1e5635f4ee70" ], "x-ms-correlation-request-id": [ - "5cb6a370-7c2f-4cc8-aea7-c4858e279f48" + "cd18c66e-98a8-4b39-86c6-e75bbb53ed55" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012309Z:5cb6a370-7c2f-4cc8-aea7-c4858e279f48" + "CENTRALINDIA:20210419T074736Z:cd18c66e-98a8-4b39-86c6-e75bbb53ed55" ], "Date": [ - "Thu, 23 Apr 2020 01:23:09 GMT" + "Mon, 19 Apr 2021 07:47:35 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -23689,29 +22446,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "683f21d1-99ff-4b04-8d46-053a6f04190f-2020-04-23 01:23:20Z-Ps" + "019da725-f65e-4b33-952b-ffe111cdf8fb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601400068)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206200068)\\/\",\"ClientRequestId\":\"683f21d1-99ff-4b04-8d46-053a6f04190f-2020-04-23 01:23:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ffxgmd+GYRQVIV4K8aYA2vEOOYtp5s/zwnrfOvH0rRs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814866595)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419666595)\\/\",\"ClientRequestId\":\"63feccc0-2a17-459a-bc95-22f286a5a9fe-2021-04-19 07:47:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ozzVjWhxfVY2kkU0ljLk0hFbaIbxabV22aAR0o1IxUU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23721,39 +22478,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11734" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "756dffde-3734-4869-9685-a1497a754a36" + "940b9c17-1b22-40bf-984e-c6ddeb9c5769" ], "x-ms-client-request-id": [ - "683f21d1-99ff-4b04-8d46-053a6f04190f-2020-04-23 01:23:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11731" + "019da725-f65e-4b33-952b-ffe111cdf8fb" ], "x-ms-correlation-request-id": [ - "756dffde-3734-4869-9685-a1497a754a36" + "940b9c17-1b22-40bf-984e-c6ddeb9c5769" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012320Z:756dffde-3734-4869-9685-a1497a754a36" + "CENTRALINDIA:20210419T074746Z:940b9c17-1b22-40bf-984e-c6ddeb9c5769" ], "Date": [ - "Thu, 23 Apr 2020 01:23:20 GMT" + "Mon, 19 Apr 2021 07:47:46 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -23762,29 +22516,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9af1107-d50f-43b7-ac25-8817ed9dfe07-2020-04-23 01:23:30Z-Ps" + "547fa6cc-4982-43f7-b079-096ed50ff667" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601410850)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206210850)\\/\",\"ClientRequestId\":\"e9af1107-d50f-43b7-ac25-8817ed9dfe07-2020-04-23 01:23:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Be4ztcgTo/Mimpkl1lQGAoxFmLCiIu77yAeVJtxBRpk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814876923)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419676923)\\/\",\"ClientRequestId\":\"3eb48c90-a806-4f36-aa65-91f05c47838b-2021-04-19 07:47:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XaYIBMcLi8bBAA81vJrwppMosrLESZnza9WgmunoAl0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23795,38 +22549,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11730" + "11733" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "985d59e0-0163-49d1-b15b-3177fdef2c41" + "4305af12-04a8-446b-8a7c-f53d64b0b291" ], "x-ms-client-request-id": [ - "e9af1107-d50f-43b7-ac25-8817ed9dfe07-2020-04-23 01:23:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "547fa6cc-4982-43f7-b079-096ed50ff667" ], "x-ms-correlation-request-id": [ - "985d59e0-0163-49d1-b15b-3177fdef2c41" + "4305af12-04a8-446b-8a7c-f53d64b0b291" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012332Z:985d59e0-0163-49d1-b15b-3177fdef2c41" + "CENTRALINDIA:20210419T074757Z:4305af12-04a8-446b-8a7c-f53d64b0b291" ], "Date": [ - "Thu, 23 Apr 2020 01:23:31 GMT" + "Mon, 19 Apr 2021 07:47:56 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -23835,29 +22586,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c1fd6735-426f-4c5d-8a80-32cb7ad4489c-2020-04-23 01:23:42Z-Ps" + "55234b62-f84c-4284-8599-c152c64cb06f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601422438)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206222438)\\/\",\"ClientRequestId\":\"c1fd6735-426f-4c5d-8a80-32cb7ad4489c-2020-04-23 01:23:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9J52EizwTdKpuCIJx/DmwnYSB0a1bCPzxNCXBYaknag=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814887262)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419687262)\\/\",\"ClientRequestId\":\"2188af59-d3f1-473e-aa5a-c83d72741831-2021-04-19 07:48:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wyWrbkZ2wUOezOPWXiLJ9CXDTEc8bFvM+EUI2jTaRRo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23868,38 +22619,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11729" + "11732" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "38b743b5-fa3f-4501-bd7e-8ff6c7ff9821" + "3f378e7c-f6d5-4481-a038-0cc3c403a178" ], "x-ms-client-request-id": [ - "c1fd6735-426f-4c5d-8a80-32cb7ad4489c-2020-04-23 01:23:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "55234b62-f84c-4284-8599-c152c64cb06f" ], "x-ms-correlation-request-id": [ - "38b743b5-fa3f-4501-bd7e-8ff6c7ff9821" + "3f378e7c-f6d5-4481-a038-0cc3c403a178" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012343Z:38b743b5-fa3f-4501-bd7e-8ff6c7ff9821" + "CENTRALINDIA:20210419T074807Z:3f378e7c-f6d5-4481-a038-0cc3c403a178" ], "Date": [ - "Thu, 23 Apr 2020 01:23:42 GMT" + "Mon, 19 Apr 2021 07:48:07 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -23908,29 +22656,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04b40d17-fa5d-4e43-9257-326fc1ca414d-2020-04-23 01:23:53Z-Ps" + "b4f6a5d0-c25d-4ece-b65d-d816e5b2bf69" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601433237)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206233237)\\/\",\"ClientRequestId\":\"04b40d17-fa5d-4e43-9257-326fc1ca414d-2020-04-23 01:23:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"v1iWUl6Wq37fer2+O/sUefv0FUYRW2p78fCnoXU/DO8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814897610)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419697610)\\/\",\"ClientRequestId\":\"724200fc-b5fd-4e3f-9cb6-f0f6eb02b465-2021-04-19 07:48:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7lnuoeiEI+/A0ckXr/eAD+6wCds4wsEehDkSM7uIk88=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23941,38 +22689,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11728" + "11731" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b1e939f6-cb88-4f93-9037-cb4aec60bea0" + "a279a6d9-26ff-467a-8fbc-15c88ed9463b" ], "x-ms-client-request-id": [ - "04b40d17-fa5d-4e43-9257-326fc1ca414d-2020-04-23 01:23:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b4f6a5d0-c25d-4ece-b65d-d816e5b2bf69" ], "x-ms-correlation-request-id": [ - "b1e939f6-cb88-4f93-9037-cb4aec60bea0" + "a279a6d9-26ff-467a-8fbc-15c88ed9463b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012353Z:b1e939f6-cb88-4f93-9037-cb4aec60bea0" + "CENTRALINDIA:20210419T074817Z:a279a6d9-26ff-467a-8fbc-15c88ed9463b" ], "Date": [ - "Thu, 23 Apr 2020 01:23:53 GMT" + "Mon, 19 Apr 2021 07:48:17 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -23981,29 +22726,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef6a3198-abec-42f6-8f99-95cbd06d5a9c-2020-04-23 01:24:03Z-Ps" + "1fd9c855-85b7-471c-bb62-ddaf7589cbe3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601443779)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206243779)\\/\",\"ClientRequestId\":\"ef6a3198-abec-42f6-8f99-95cbd06d5a9c-2020-04-23 01:24:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1Sm1z7pYYRnDs+phnfrSc+MGBhbdj77dDz2I6Wq45s4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814907946)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419707946)\\/\",\"ClientRequestId\":\"3dec2321-72a8-47b9-8b93-f343ab59c879-2021-04-19 07:48:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6tdg1cgd9+Me7GGKn9TN03tG7BSc8dhpvBp/yCbXXJo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24014,38 +22759,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11727" + "11730" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1f8f622a-0634-408a-b7a9-229706c174c9" + "ff5dee9e-9479-43db-a26e-175ea0b05c6b" ], "x-ms-client-request-id": [ - "ef6a3198-abec-42f6-8f99-95cbd06d5a9c-2020-04-23 01:24:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1fd9c855-85b7-471c-bb62-ddaf7589cbe3" ], "x-ms-correlation-request-id": [ - "1f8f622a-0634-408a-b7a9-229706c174c9" + "ff5dee9e-9479-43db-a26e-175ea0b05c6b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012404Z:1f8f622a-0634-408a-b7a9-229706c174c9" + "CENTRALINDIA:20210419T074828Z:ff5dee9e-9479-43db-a26e-175ea0b05c6b" ], "Date": [ - "Thu, 23 Apr 2020 01:24:03 GMT" + "Mon, 19 Apr 2021 07:48:27 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -24054,29 +22796,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "811ce353-b7a8-43c1-9437-d508c72486a8-2020-04-23 01:24:14Z-Ps" + "51dbba80-4217-46cc-b33b-b78a495245c2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601454426)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206254426)\\/\",\"ClientRequestId\":\"811ce353-b7a8-43c1-9437-d508c72486a8-2020-04-23 01:24:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LZH9FjgWlMtLE3nti1G72kZLz0epFSVvXCT8VS2x5lc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814918291)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419718291)\\/\",\"ClientRequestId\":\"c970f9fa-548f-4129-96c1-c2a5c84c4df7-2021-04-19 07:48:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4CCUZwdBidCtwLT0Hk0iLLZPfaI8LB3wwrfeDRj8pN8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24087,38 +22829,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11726" + "11729" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ebed8a4c-51bf-4bae-bd91-f1b00672e838" + "11e71b42-aaed-43b9-a33b-817cff996583" ], "x-ms-client-request-id": [ - "811ce353-b7a8-43c1-9437-d508c72486a8-2020-04-23 01:24:14Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "51dbba80-4217-46cc-b33b-b78a495245c2" ], "x-ms-correlation-request-id": [ - "ebed8a4c-51bf-4bae-bd91-f1b00672e838" + "11e71b42-aaed-43b9-a33b-817cff996583" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012414Z:ebed8a4c-51bf-4bae-bd91-f1b00672e838" + "CENTRALINDIA:20210419T074838Z:11e71b42-aaed-43b9-a33b-817cff996583" ], "Date": [ - "Thu, 23 Apr 2020 01:24:13 GMT" + "Mon, 19 Apr 2021 07:48:38 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -24127,29 +22866,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7442baec-e6aa-4f60-94ce-0ce236695d09-2020-04-23 01:24:24Z-Ps" + "7da0bcbc-9fe1-4ec8-9988-dd36f155fe5d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601464974)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206264974)\\/\",\"ClientRequestId\":\"7442baec-e6aa-4f60-94ce-0ce236695d09-2020-04-23 01:24:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pKhpi7J6vl7beE2Fs62EPf6FSDovocW80mmQjXYQOMk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814928679)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419728679)\\/\",\"ClientRequestId\":\"99687879-d166-4aa9-9fed-e7868dd4e60e-2021-04-19 07:48:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Fi0L4qdjW8PW7GF3IEe9gC17ufX4Qp2mH3dUArS7R3s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24160,38 +22899,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11725" + "11728" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "361529fd-70e3-4e58-a70a-6a4190e3767a" + "03a17a7a-7c4c-41fa-ba8d-4a0f40ce95c4" ], "x-ms-client-request-id": [ - "7442baec-e6aa-4f60-94ce-0ce236695d09-2020-04-23 01:24:24Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7da0bcbc-9fe1-4ec8-9988-dd36f155fe5d" ], "x-ms-correlation-request-id": [ - "361529fd-70e3-4e58-a70a-6a4190e3767a" + "03a17a7a-7c4c-41fa-ba8d-4a0f40ce95c4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012425Z:361529fd-70e3-4e58-a70a-6a4190e3767a" + "CENTRALINDIA:20210419T074848Z:03a17a7a-7c4c-41fa-ba8d-4a0f40ce95c4" ], "Date": [ - "Thu, 23 Apr 2020 01:24:25 GMT" + "Mon, 19 Apr 2021 07:48:48 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -24200,29 +22936,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ace0d712-02a7-4d5c-98cd-feff7137a771-2020-04-23 01:24:35Z-Ps" + "fdb708d6-0d6c-45a4-98a0-7d2d317f4ca0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601475505)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206275505)\\/\",\"ClientRequestId\":\"ace0d712-02a7-4d5c-98cd-feff7137a771-2020-04-23 01:24:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VS3qTCpx3x8KPVYXINXMLMlnI6r4ENk5EwXzLx/1BGQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814939030)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419739030)\\/\",\"ClientRequestId\":\"d7fac648-aeb4-4b21-bff4-259498148142-2021-04-19 07:48:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cFm1WLX2oQhVQ2QAX03934K4AEy5aEFvfwkz5xjB6P4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24232,39 +22968,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11727" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7ed4ba57-18df-4cbf-8d63-0b96a3252ddc" + "dbce8ccc-998c-4c86-84da-50d0aa9e1412" ], "x-ms-client-request-id": [ - "ace0d712-02a7-4d5c-98cd-feff7137a771-2020-04-23 01:24:35Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11724" + "fdb708d6-0d6c-45a4-98a0-7d2d317f4ca0" ], "x-ms-correlation-request-id": [ - "7ed4ba57-18df-4cbf-8d63-0b96a3252ddc" + "dbce8ccc-998c-4c86-84da-50d0aa9e1412" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012435Z:7ed4ba57-18df-4cbf-8d63-0b96a3252ddc" + "CENTRALINDIA:20210419T074859Z:dbce8ccc-998c-4c86-84da-50d0aa9e1412" ], "Date": [ - "Thu, 23 Apr 2020 01:24:35 GMT" + "Mon, 19 Apr 2021 07:48:59 GMT" ], "Content-Length": [ - "7480" + "7512" ], "Content-Type": [ "application/json" @@ -24273,29 +23006,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f934c9b-d14d-4de7-9d9d-dd5ce86721b4-2020-04-23 01:24:46Z-Ps" + "7f6072c4-fda8-4cf2-b20b-8a5bd8ae48dc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601486059)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206286059)\\/\",\"ClientRequestId\":\"7f934c9b-d14d-4de7-9d9d-dd5ce86721b4-2020-04-23 01:24:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"E7zNDAd2DOdZRbcI0eZGkDRECQj8S0xIiYDES2/QvVo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814949375)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419749375)\\/\",\"ClientRequestId\":\"b6ed2c4a-3edf-4bbb-9340-f636816c6758-2021-04-19 07:49:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kgGk9NjqM5aHwwSNFfHFTqnlrosBoYZp6YHEwsCT4Dw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24306,38 +23039,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11723" + "11726" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a41938c4-d84e-45f1-8a92-96671264a152" + "4747881b-508d-4ad8-9047-1f61bfa43b1f" ], "x-ms-client-request-id": [ - "7f934c9b-d14d-4de7-9d9d-dd5ce86721b4-2020-04-23 01:24:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7f6072c4-fda8-4cf2-b20b-8a5bd8ae48dc" ], "x-ms-correlation-request-id": [ - "a41938c4-d84e-45f1-8a92-96671264a152" + "4747881b-508d-4ad8-9047-1f61bfa43b1f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012447Z:a41938c4-d84e-45f1-8a92-96671264a152" + "CENTRALINDIA:20210419T074909Z:4747881b-508d-4ad8-9047-1f61bfa43b1f" ], "Date": [ - "Thu, 23 Apr 2020 01:24:46 GMT" + "Mon, 19 Apr 2021 07:49:09 GMT" ], "Content-Length": [ - "8256" + "7512" ], "Content-Type": [ "application/json" @@ -24346,29 +23076,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/2ddb7afd-a6ff-43a6-9c87-56bce7342a09\",\r\n \"name\": \"2ddb7afd-a6ff-43a6-9c87-56bce7342a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:24:41.131289Z\",\r\n \"endTime\": \"2020-04-23T01:24:41Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a15621e-93e5-486f-b50f-3a3561df827d-2020-04-23 01:24:57Z-Ps" + "6baaf259-5b5e-4ec8-b2bb-233ffe4e5419" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601497970)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206297970)\\/\",\"ClientRequestId\":\"5a15621e-93e5-486f-b50f-3a3561df827d-2020-04-23 01:24:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0jf21kWGCclpElw6fWRtXjgr4Z32fh/yo1Fx/SKaQRo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814959728)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419759728)\\/\",\"ClientRequestId\":\"1b29c365-ccfb-47de-91c7-27056cbd5822-2021-04-19 07:49:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YjJIG1BYoySfVQHE/Gu4xjfRKInlOw6KOh/LoEHGdHM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24379,38 +23109,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11722" + "11725" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6fe80b62-7fd9-42a3-b14f-99b5e957b88a" + "fc4d31e8-e5b7-4970-993d-7876f1c573c8" ], "x-ms-client-request-id": [ - "5a15621e-93e5-486f-b50f-3a3561df827d-2020-04-23 01:24:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6baaf259-5b5e-4ec8-b2bb-233ffe4e5419" ], "x-ms-correlation-request-id": [ - "6fe80b62-7fd9-42a3-b14f-99b5e957b88a" + "fc4d31e8-e5b7-4970-993d-7876f1c573c8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012458Z:6fe80b62-7fd9-42a3-b14f-99b5e957b88a" + "CENTRALINDIA:20210419T074919Z:fc4d31e8-e5b7-4970-993d-7876f1c573c8" ], "Date": [ - "Thu, 23 Apr 2020 01:24:58 GMT" + "Mon, 19 Apr 2021 07:49:19 GMT" ], "Content-Length": [ - "8256" + "7512" ], "Content-Type": [ "application/json" @@ -24419,29 +23146,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/2ddb7afd-a6ff-43a6-9c87-56bce7342a09\",\r\n \"name\": \"2ddb7afd-a6ff-43a6-9c87-56bce7342a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:24:41.131289Z\",\r\n \"endTime\": \"2020-04-23T01:24:41Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "261d2ee5-09b4-41be-aae0-a6af63537745-2020-04-23 01:25:08Z-Ps" + "3c6eede5-5ffe-4f79-b41e-ea1dca9c8eb1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601508546)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206308546)\\/\",\"ClientRequestId\":\"261d2ee5-09b4-41be-aae0-a6af63537745-2020-04-23 01:25:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bEot5UpTk4UlWHtizGC25Nasv5E2HFvCyrSZDDrJpaM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814970076)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419770076)\\/\",\"ClientRequestId\":\"d598dde5-aaeb-4bde-9d8b-40df855c7d5f-2021-04-19 07:49:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"orJ4W8dJ/y/hsoG7z4DVx5iUBFf9pEweFyZh5byQiqg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24452,38 +23179,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11721" + "11724" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9d6bf55b-0d7a-475e-92a4-8716fa825359" + "00fa3705-b7b3-41a8-b6ab-80baeae8ca9c" ], "x-ms-client-request-id": [ - "261d2ee5-09b4-41be-aae0-a6af63537745-2020-04-23 01:25:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3c6eede5-5ffe-4f79-b41e-ea1dca9c8eb1" ], "x-ms-correlation-request-id": [ - "9d6bf55b-0d7a-475e-92a4-8716fa825359" + "00fa3705-b7b3-41a8-b6ab-80baeae8ca9c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012508Z:9d6bf55b-0d7a-475e-92a4-8716fa825359" + "CENTRALINDIA:20210419T074930Z:00fa3705-b7b3-41a8-b6ab-80baeae8ca9c" ], "Date": [ - "Thu, 23 Apr 2020 01:25:08 GMT" + "Mon, 19 Apr 2021 07:49:29 GMT" ], "Content-Length": [ - "8256" + "7512" ], "Content-Type": [ "application/json" @@ -24492,29 +23216,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/2ddb7afd-a6ff-43a6-9c87-56bce7342a09\",\r\n \"name\": \"2ddb7afd-a6ff-43a6-9c87-56bce7342a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:24:41.131289Z\",\r\n \"endTime\": \"2020-04-23T01:24:41Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "499c800c-3e71-491e-8e6b-d5ecea42fb70-2020-04-23 01:25:19Z-Ps" + "70369200-4de5-4235-9d35-5298ee728420" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601519149)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206319149)\\/\",\"ClientRequestId\":\"499c800c-3e71-491e-8e6b-d5ecea42fb70-2020-04-23 01:25:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TzsGV2BTkxBagpsK/lQEuHT9ugzj6wkbjs2oCoMG6I4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814980406)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419780406)\\/\",\"ClientRequestId\":\"8e04830b-1a5a-471f-90ca-2c3f3a971043-2021-04-19 07:49:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"w1kJY8jhytt8sxAc7OXXB57fhMSuIV1ic9/lKbWVC+g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24525,38 +23249,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11720" + "11723" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d564b440-848d-4dad-a8e0-d90828ac307c" + "3058e6aa-0c46-4491-8fcc-eca504406248" ], "x-ms-client-request-id": [ - "499c800c-3e71-491e-8e6b-d5ecea42fb70-2020-04-23 01:25:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "70369200-4de5-4235-9d35-5298ee728420" ], "x-ms-correlation-request-id": [ - "d564b440-848d-4dad-a8e0-d90828ac307c" + "3058e6aa-0c46-4491-8fcc-eca504406248" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012519Z:d564b440-848d-4dad-a8e0-d90828ac307c" + "CENTRALINDIA:20210419T074940Z:3058e6aa-0c46-4491-8fcc-eca504406248" ], "Date": [ - "Thu, 23 Apr 2020 01:25:18 GMT" + "Mon, 19 Apr 2021 07:49:40 GMT" ], "Content-Length": [ - "9035" + "7512" ], "Content-Type": [ "application/json" @@ -24565,29 +23286,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/058bc626-fb33-419a-a3b3-547116a29487\",\r\n \"name\": \"058bc626-fb33-419a-a3b3-547116a29487\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:08.897237Z\",\r\n \"endTime\": \"2020-04-23T01:25:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/2ddb7afd-a6ff-43a6-9c87-56bce7342a09\",\r\n \"name\": \"2ddb7afd-a6ff-43a6-9c87-56bce7342a09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:24:41.131289Z\",\r\n \"endTime\": \"2020-04-23T01:24:41Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"name\": \"c3cb6f3f-079c-45fc-b133-218b737df5b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:48.5118275Z\",\r\n \"endTime\": \"2020-04-23T00:50:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"name\": \"54331f3a-30be-4639-abfc-cc3cb7cb21eb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:37:24.3596994Z\",\r\n \"endTime\": \"2020-04-23T00:37:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork910\",\r\n \"targetObjectName\": \"a2arecoverynetwork910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"name\": \"be67700a-14cc-4a18-8c73-4968cb566598\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:58.2549843Z\",\r\n \"endTime\": \"2020-04-23T00:37:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"name\": \"054d6366-f840-4e68-b810-9b56308825ce\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:35:34.3656218Z\",\r\n \"endTime\": \"2020-04-23T00:35:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm910\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"name\": \"a4774469-bb40-45f6-a838-eafa48d3380b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:06.9510965Z\",\r\n \"endTime\": \"2020-04-23T00:35:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"name\": \"784b77ce-04ba-42a5-83d2-335bfe4d4943\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:03.5711343Z\",\r\n \"endTime\": \"2020-04-23T00:34:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"targetObjectName\": \"TestA2APolicy1910\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"name\": \"df99828c-85dd-4d40-a9c5-fcaac079ce0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:34:00.6994279Z\",\r\n \"endTime\": \"2020-04-23T00:34:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"targetObjectName\": \"A2ARecoveryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"name\": \"7e82151f-18a5-40a6-8bd5-96cd5896f57d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:33:37.1521701Z\",\r\n \"endTime\": \"2020-04-23T00:33:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"targetObjectName\": \"A2APrimaryContainer910\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"name\": \"a15f4d8a-7252-463c-ad10-2f3b12ad2ba9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:32:09.6304098Z\",\r\n \"endTime\": \"2020-04-23T00:33:15Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"name\": \"b79d8cca-dd30-4b57-8df9-9ec03dcecd98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T00:30:41.5885208Z\",\r\n \"endTime\": \"2020-04-23T00:31:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"targetObjectName\": \"a2aPrimaryFabric910\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/058bc626-fb33-419a-a3b3-547116a29487?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMDU4YmM2MjYtZmIzMy00MTlhLWEzYjMtNTQ3MTE2YTI5NDg3P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47a24143-8628-4581-b100-7ef5dc7c0bc9-2020-04-23 01:25:19Z-Ps" + "3faff191-80e8-4c37-b263-222d35289200" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601519725)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206319725)\\/\",\"ClientRequestId\":\"47a24143-8628-4581-b100-7ef5dc7c0bc9-2020-04-23 01:25:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"a05fux+nbhaYjbPp2d1p3yJzMG4CDe2f0h0WctXdBr0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618814990789)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419790789)\\/\",\"ClientRequestId\":\"a5cdd2d0-ffc3-4001-9dbc-1e42cf9d63a8-2021-04-19 07:49:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eSq3darAMMMSIgUnjN05i1ElcBMDQKncIeqFBveGgm8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24598,38 +23319,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11719" + "11722" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/058bc626-fb33-419a-a3b3-547116a29487" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "47a24143-8628-4581-b100-7ef5dc7c0bc9-2020-04-23 01:25:19Z-Ps" + "x-ms-request-id": [ + "6b23ae5c-0008-4096-87e6-f08e1aa5b4d7" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "3faff191-80e8-4c37-b263-222d35289200" ], "x-ms-correlation-request-id": [ - "a6e36183-bbf9-4e81-9e00-97eda9088595" + "6b23ae5c-0008-4096-87e6-f08e1aa5b4d7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012520Z:a6e36183-bbf9-4e81-9e00-97eda9088595" + "CENTRALINDIA:20210419T074951Z:6b23ae5c-0008-4096-87e6-f08e1aa5b4d7" ], "Date": [ - "Thu, 23 Apr 2020 01:25:19 GMT" + "Mon, 19 Apr 2021 07:49:50 GMT" ], "Content-Length": [ - "3140" + "7512" ], "Content-Type": [ "application/json" @@ -24638,29 +23356,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/058bc626-fb33-419a-a3b3-547116a29487\",\r\n \"name\": \"058bc626-fb33-419a-a3b3-547116a29487\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"486763d0-e9ed-4b7c-8c9e-9a3a5889e00c-2020-04-23 00:37:47Z-Ps ActivityId: 3f1497e7-7455-4a82-b4a3-4dd4d39ace96\",\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CompleteInitialReplicationTask\",\r\n \"name\": \"CompleteInitialReplication\",\r\n \"startTime\": \"2020-04-23T01:25:09.4063505Z\",\r\n \"endTime\": \"2020-04-23T01:25:10.0471199Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationPreflightChecksTask\",\r\n \"name\": \"FailWorkflowOnIRFailureTask\",\r\n \"startTime\": \"2020-04-23T01:25:10.0471199Z\",\r\n \"endTime\": \"2020-04-23T01:25:10.1719717Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationTask\",\r\n \"name\": \"ReplicaConfiguration\",\r\n \"startTime\": \"2020-04-23T01:25:10.1719717Z\",\r\n \"endTime\": \"2020-04-23T01:25:13.7032571Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete network and post-replication configuration\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2020-04-23T01:25:13.7032571Z\",\r\n \"endTime\": \"2020-04-23T01:25:14.0001861Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:08.897237Z\",\r\n \"endTime\": \"2020-04-23T01:25:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectedItems/a2aVM910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTkxMD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a149fefb-717b-4ec9-8c30-5774b976a710-2020-04-23 01:25:20Z-Ps" + "a4eff056-f99f-4d66-acc8-c413a367042f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601520212)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206320212)\\/\",\"ClientRequestId\":\"a149fefb-717b-4ec9-8c30-5774b976a710-2020-04-23 01:25:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LO16w5fvKguX3dDYVRNcAsPGxSOp8Eup7DmhuGThtpQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815001135)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419801135)\\/\",\"ClientRequestId\":\"575b4696-dd37-487c-8a32-f26af146ad19-2021-04-19 07:50:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KEiqsCCDHUb/zv0bshEkesq48QRzMU3RtSHKYdswaKw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24671,38 +23389,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11718" + "11721" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "a149fefb-717b-4ec9-8c30-5774b976a710-2020-04-23 01:25:20Z-Ps 4/23/2020 1:25:20 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "a149fefb-717b-4ec9-8c30-5774b976a710-2020-04-23 01:25:20Z-Ps" + "x-ms-request-id": [ + "c80633c9-1b21-4370-8def-f14a29701829" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "a4eff056-f99f-4d66-acc8-c413a367042f" ], "x-ms-correlation-request-id": [ - "bd667268-86fd-4628-b9a0-cb6e83463242" + "c80633c9-1b21-4370-8def-f14a29701829" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012520Z:bd667268-86fd-4628-b9a0-cb6e83463242" + "CENTRALINDIA:20210419T075001Z:c80633c9-1b21-4370-8def-f14a29701829" ], "Date": [ - "Thu, 23 Apr 2020 01:25:20 GMT" + "Mon, 19 Apr 2021 07:50:00 GMT" ], "Content-Length": [ - "7817" + "7512" ], "Content-Type": [ "application/json" @@ -24711,29 +23426,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"name\": \"a2aVM910\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM910\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationRecoveryServicesProviders/71b97426-cb83-5eed-a464-ca15cee88b76\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer910\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer910\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM910'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-04-23T01:25:14.9050081Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationPolicies/TestA2APolicy1910\",\r\n \"policyFriendlyName\": \"TestA2APolicy1910\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm910/providers/microsoft.compute/virtualmachines/a2avm910\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"73118479-4ab6-4b50-bafd-43f7a26aa976\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"1a00e110-a905-40a3-9af9-0a4b87744da7\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm910/providers/microsoft.compute/disks/a2avm910_osdisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/disks/a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Storage/storageAccounts/cache910\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 2.15380859375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"tfoDiskName\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM910\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.network/virtualnetworks/a2arecoverynetwork910\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"0d8f9cb1-ed4e-5aa6-af58-c6dbea1b0bd6\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkInterfaces/a2aVM910\",\r\n \"vMSubnetName\": \"a2aVM910\",\r\n \"vMNetworkName\": \"a2avm910\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.network/virtualnetworks/a2arecoverynetwork910\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoNicName\": null,\r\n \"tfoNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 99,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2020-04-23T01:24:47.2191253Z\",\r\n \"agentVersion\": \"9.32.5487.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"5ce16f45-f71c-48cb-b72b-46bfcd18d67c\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2103,\r\n \"lastRpoCalculatedTime\": \"2020-04-23T01:25:07.3197927Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM910-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910\",\r\n \"eventCorrelationId\": \"609627e0-228b-487d-a00a-8161ac5f7abd\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectedItems/a2aVM910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTkxMD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "beafcc16-8324-4c8b-a876-edb93e8fb898-2020-04-23 01:25:20Z-Ps" + "181aafc6-2d9d-437f-92e4-19eb24d6c402" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601520983)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206320983)\\/\",\"ClientRequestId\":\"beafcc16-8324-4c8b-a876-edb93e8fb898-2020-04-23 01:25:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2eOFkZSKdZmi7f/nTzcnUSqGSrGnitRQonH8LYb7lk4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815011472)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419811472)\\/\",\"ClientRequestId\":\"e89efbf0-c481-407d-a5e5-20259357f7f0-2021-04-19 07:50:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UcCw0fsXVsVuxBCc9yQ1924xTrxEWGRLG7jOPwBppKk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24744,38 +23459,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11717" + "11720" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "beafcc16-8324-4c8b-a876-edb93e8fb898-2020-04-23 01:25:20Z-Ps 4/23/2020 1:25:21 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "beafcc16-8324-4c8b-a876-edb93e8fb898-2020-04-23 01:25:20Z-Ps" + "x-ms-request-id": [ + "e77e82de-38b1-4720-b4a6-6c61df7e36b4" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "181aafc6-2d9d-437f-92e4-19eb24d6c402" ], "x-ms-correlation-request-id": [ - "7c735f7b-ee07-4a89-9ddc-5349039143f4" + "e77e82de-38b1-4720-b4a6-6c61df7e36b4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012522Z:7c735f7b-ee07-4a89-9ddc-5349039143f4" + "CENTRALINDIA:20210419T075011Z:e77e82de-38b1-4720-b4a6-6c61df7e36b4" ], "Date": [ - "Thu, 23 Apr 2020 01:25:21 GMT" + "Mon, 19 Apr 2021 07:50:10 GMT" ], "Content-Length": [ - "7817" + "7512" ], "Content-Type": [ "application/json" @@ -24784,29 +23496,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"name\": \"a2aVM910\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM910\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationRecoveryServicesProviders/71b97426-cb83-5eed-a464-ca15cee88b76\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer910\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer910\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM910'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-04-23T01:25:14.9050081Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationPolicies/TestA2APolicy1910\",\r\n \"policyFriendlyName\": \"TestA2APolicy1910\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm910/providers/microsoft.compute/virtualmachines/a2avm910\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"73118479-4ab6-4b50-bafd-43f7a26aa976\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"1a00e110-a905-40a3-9af9-0a4b87744da7\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm910/providers/microsoft.compute/disks/a2avm910_osdisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/disks/a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Storage/storageAccounts/cache910\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 2.15380859375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"tfoDiskName\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM910\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.network/virtualnetworks/a2arecoverynetwork910\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"0d8f9cb1-ed4e-5aa6-af58-c6dbea1b0bd6\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkInterfaces/a2aVM910\",\r\n \"vMSubnetName\": \"a2aVM910\",\r\n \"vMNetworkName\": \"a2avm910\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.network/virtualnetworks/a2arecoverynetwork910\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoNicName\": null,\r\n \"tfoNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 99,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2020-04-23T01:24:47.2191253Z\",\r\n \"agentVersion\": \"9.32.5487.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"5ce16f45-f71c-48cb-b72b-46bfcd18d67c\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2103,\r\n \"lastRpoCalculatedTime\": \"2020-04-23T01:25:07.3197927Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM910-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910\",\r\n \"eventCorrelationId\": \"609627e0-228b-487d-a00a-8161ac5f7abd\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectedItems/a2aVM910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTkxMD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac1f053d-7a3c-4e5f-9203-d1a8d50f5e9f-2020-04-23 01:25:45Z-Ps" + "72798ac5-d785-4a06-b9f2-c33519d01d2f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601545389)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206345389)\\/\",\"ClientRequestId\":\"ac1f053d-7a3c-4e5f-9203-d1a8d50f5e9f-2020-04-23 01:25:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iNnLzg7RRdctvWDx1CazzB9a+xGFoqVYKQ0yZyHVNgY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815021799)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419821799)\\/\",\"ClientRequestId\":\"85409c07-245e-4278-9fa8-145dd658c989-2021-04-19 07:50:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EoOTqxDFASfiyLfwlLVKvqLUbRXlHYXELz/SUKB2nLY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24817,38 +23529,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11713" + "11719" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "ac1f053d-7a3c-4e5f-9203-d1a8d50f5e9f-2020-04-23 01:25:45Z-Ps 4/23/2020 1:25:46 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "ac1f053d-7a3c-4e5f-9203-d1a8d50f5e9f-2020-04-23 01:25:45Z-Ps" + "x-ms-request-id": [ + "624474a7-63c5-4323-b994-6476ba8d3cf7" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "72798ac5-d785-4a06-b9f2-c33519d01d2f" ], "x-ms-correlation-request-id": [ - "c064282f-f12a-4e36-a9ef-2c1a8bcb27c4" + "624474a7-63c5-4323-b994-6476ba8d3cf7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012546Z:c064282f-f12a-4e36-a9ef-2c1a8bcb27c4" + "CENTRALINDIA:20210419T075022Z:624474a7-63c5-4323-b994-6476ba8d3cf7" ], "Date": [ - "Thu, 23 Apr 2020 01:25:45 GMT" + "Mon, 19 Apr 2021 07:50:21 GMT" ], "Content-Length": [ - "7876" + "7512" ], "Content-Type": [ "application/json" @@ -24857,29 +23566,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"name\": \"a2aVM910\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM910\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationRecoveryServicesProviders/71b97426-cb83-5eed-a464-ca15cee88b76\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer910\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer910\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM910'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-04-23T01:25:26.8967531Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationPolicies/TestA2APolicy1910\",\r\n \"policyFriendlyName\": \"TestA2APolicy1910\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm910/providers/microsoft.compute/virtualmachines/a2avm910\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"73118479-4ab6-4b50-bafd-43f7a26aa976\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"1a00e110-a905-40a3-9af9-0a4b87744da7\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm910/providers/microsoft.compute/disks/a2avm910_osdisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/disks/a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Storage/storageAccounts/cache910\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 2.15380859375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"tfoDiskName\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM910\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.network/virtualnetworks/a2arecoverynetwork910\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"0d8f9cb1-ed4e-5aa6-af58-c6dbea1b0bd6\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkInterfaces/a2aVM910\",\r\n \"vMSubnetName\": \"a2aVM910\",\r\n \"vMNetworkName\": \"a2avm910\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.network/virtualnetworks/a2arecoverynetwork910\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": \"\",\r\n \"tfoNetworkSecurityGroupId\": \"\",\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": [\r\n {\r\n \"staticIPAddress\": \"\",\r\n \"publicIpAddressId\": \"\",\r\n \"lBBackendAddressPoolIds\": []\r\n }\r\n ],\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoNicName\": null,\r\n \"tfoNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 99,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2020-04-23T01:24:47.2191253Z\",\r\n \"agentVersion\": \"9.32.5487.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"5ce16f45-f71c-48cb-b72b-46bfcd18d67c\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2103,\r\n \"lastRpoCalculatedTime\": \"2020-04-23T01:25:07.3197927Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM910-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/proximityPlacementGroups/PPG2-asr\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910\",\r\n \"eventCorrelationId\": \"609627e0-228b-487d-a00a-8161ac5f7abd\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectedItems/a2aVM910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTkxMD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e7e43324-34ad-4c12-a362-10ef53ad5e5a-2020-04-23 01:45:57Z-Ps" + "146bd490-f636-4813-b9b0-67c06b09d86e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602757012)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207557012)\\/\",\"ClientRequestId\":\"e7e43324-34ad-4c12-a362-10ef53ad5e5a-2020-04-23 01:45:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Z6MU9hT+913Dye+KWcev0l8htfAgCCPJm1cIjlo+W+Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815032138)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419832138)\\/\",\"ClientRequestId\":\"1ff59acf-aed6-49ff-83f3-622311adbd0f-2021-04-19 07:50:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"h1DSZY6OSHwOJUb1Wqxdgm+kzRei+VUF/xo5l22TCak=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24890,38 +23599,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11718" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "e7e43324-34ad-4c12-a362-10ef53ad5e5a-2020-04-23 01:45:57Z-Ps 4/23/2020 1:45:59 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "e7e43324-34ad-4c12-a362-10ef53ad5e5a-2020-04-23 01:45:57Z-Ps" + "x-ms-request-id": [ + "9d1daabf-b697-455f-a613-19c8aa94b601" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "146bd490-f636-4813-b9b0-67c06b09d86e" ], "x-ms-correlation-request-id": [ - "e07ab7b0-ab62-4378-90a1-c1823b84700c" + "9d1daabf-b697-455f-a613-19c8aa94b601" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T014559Z:e07ab7b0-ab62-4378-90a1-c1823b84700c" + "CENTRALINDIA:20210419T075032Z:9d1daabf-b697-455f-a613-19c8aa94b601" ], "Date": [ - "Thu, 23 Apr 2020 01:45:58 GMT" + "Mon, 19 Apr 2021 07:50:32 GMT" ], "Content-Length": [ - "8009" + "7512" ], "Content-Type": [ "application/json" @@ -24930,35 +23636,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"name\": \"a2aVM910\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM910\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationRecoveryServicesProviders/71b97426-cb83-5eed-a464-ca15cee88b76\",\r\n \"primaryFabricFriendlyName\": \"West US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer910\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer910\",\r\n \"protectionState\": \"UnplannedFailoverCommitPendingStatesBegin\",\r\n \"protectionStateDescription\": \"Failover completed\",\r\n \"activeLocation\": \"Recovery\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"CompleteMigration\",\r\n \"Commit\",\r\n \"DisableProtection\",\r\n \"ChangePit\",\r\n \"SwitchProtection\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Normal\",\r\n \"healthErrors\": [],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationPolicies/TestA2APolicy1910\",\r\n \"policyFriendlyName\": \"TestA2APolicy1910\",\r\n \"lastSuccessfulFailoverTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/e92ce51d-c73d-53df-8be2-1539d785d5df/replicationProtectedItems/a2aVM910/recoveryPoints/6b16ae96-cfa5-42d8-b441-ceb4ea61d2b7\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm910/providers/microsoft.compute/virtualmachines/a2avm910\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"73118479-4ab6-4b50-bafd-43f7a26aa976\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"1a00e110-a905-40a3-9af9-0a4b87744da7\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm910/providers/microsoft.compute/disks/a2avm910_osdisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910\",\r\n \"recoveryTargetDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/disks/a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/disks/a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Storage/storageAccounts/cache910\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 2.15380859375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"tfoDiskName\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM910\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.network/virtualnetworks/a2arecoverynetwork910\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"0d8f9cb1-ed4e-5aa6-af58-c6dbea1b0bd6\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkInterfaces/a2aVM910\",\r\n \"vMSubnetName\": \"a2aVM910\",\r\n \"vMNetworkName\": \"a2avm910\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.network/virtualnetworks/a2arecoverynetwork910\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": \"\",\r\n \"tfoNetworkSecurityGroupId\": \"\",\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": [\r\n {\r\n \"staticIPAddress\": \"\",\r\n \"publicIpAddressId\": \"\",\r\n \"lBBackendAddressPoolIds\": []\r\n }\r\n ],\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoNicName\": null,\r\n \"tfoNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-04-23T01:24:47.2191253Z\",\r\n \"agentVersion\": \"9.32.5487.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.compute/virtualmachines/a2avm910\",\r\n \"vmProtectionState\": \"UnplannedFailoverCommitPendingStatesBegin\",\r\n \"vmProtectionStateDescription\": \"Failover completed\",\r\n \"lifecycleId\": \"5ce16f45-f71c-48cb-b72b-46bfcd18d67c\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 582,\r\n \"lastRpoCalculatedTime\": \"2020-04-23T01:29:45.7694033Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM910-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/proximityPlacementGroups/PPG2-asr\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910\",\r\n \"eventCorrelationId\": \"609627e0-228b-487d-a00a-8161ac5f7abd\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectedItems/a2aVM910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTkxMD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"recoveryAzureVMName\": \"a2aVM910\",\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.network/virtualnetworks/a2arecoverynetwork910\",\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"0d8f9cb1-ed4e-5aa6-af58-c6dbea1b0bd6\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"enableAcceleratedNetworkingOnRecovery\": false\r\n }\r\n ],\r\n \"licenseType\": \"WindowsServer\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"managedDiskUpdateDetails\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm910/providers/microsoft.compute/disks/a2avm910_osdisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"failoverDiskName\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"tfoDiskName\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef-ASRtest\"\r\n }\r\n ],\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/proximityPlacementGroups/PPG2-asr\",\r\n \"tfoAzureVMName\": \"a2aVM910-test\"\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98157156-8793-4768-9ad9-966aa2751217-2020-04-23 01:25:22Z-Ps" + "24b9ed15-b874-4396-b578-5d4a25868ab6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601522131)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206322131)\\/\",\"ClientRequestId\":\"98157156-8793-4768-9ad9-966aa2751217-2020-04-23 01:25:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"K7zz/+OdhjAq777R1GRNjc5EiToyWhiW22xcHBtkBEo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815042470)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419842470)\\/\",\"ClientRequestId\":\"f78f7600-6402-46e8-bbb1-e902e049aaee-2021-04-19 07:50:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hLIlJrL5n9R6g0zeN8MQdij0WfrFgh7b+JqbtUfEJS0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1428" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -24968,73 +23668,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectedItems/a2aVM910/operationresults/9db40c14-afca-4cc8-8cd2-458289174c98?api-version=2018-07-10" - ], - "Retry-After": [ - "30" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11717" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/9db40c14-afca-4cc8-8cd2-458289174c98", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/9db40c14-afca-4cc8-8cd2-458289174c98" + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationOperationStatus/9db40c14-afca-4cc8-8cd2-458289174c98?api-version=2018-07-10" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "98157156-8793-4768-9ad9-966aa2751217-2020-04-23 01:25:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "8802cdd5-f71d-4712-9cc0-5540c17458e5" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "x-ms-client-request-id": [ + "24b9ed15-b874-4396-b578-5d4a25868ab6" ], "x-ms-correlation-request-id": [ - "9c00a552-00eb-4fbb-b89d-943eb31c0430" + "8802cdd5-f71d-4712-9cc0-5540c17458e5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012523Z:9c00a552-00eb-4fbb-b89d-943eb31c0430" + "CENTRALINDIA:20210419T075042Z:8802cdd5-f71d-4712-9cc0-5540c17458e5" ], "Date": [ - "Thu, 23 Apr 2020 01:25:22 GMT" + "Mon, 19 Apr 2021 07:50:42 GMT" + ], + "Content-Length": [ + "7512" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/9db40c14-afca-4cc8-8cd2-458289174c98?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvOWRiNDBjMTQtYWZjYS00Y2M4LThjZDItNDU4Mjg5MTc0Yzk4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2667102f-b380-4594-bb6f-cff8d06aff73-2020-04-23 01:25:23Z-Ps" + "1edaf11a-6aa8-416a-a4b3-9bda5aa846ac" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601523678)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206323678)\\/\",\"ClientRequestId\":\"2667102f-b380-4594-bb6f-cff8d06aff73-2020-04-23 01:25:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5avE5PAWroSbSAzuq2Nv4BIka8u6uO9a50NhezDzO0c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815052838)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419852838)\\/\",\"ClientRequestId\":\"e4fd4b87-ecbb-4114-a1d5-067aab637116-2021-04-19 07:50:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"I5mfBV7WdXsAnlr/DbGlRlpWkB5dcI1PILtIeHJx/SU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25051,32 +23745,29 @@ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/9db40c14-afca-4cc8-8cd2-458289174c98" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "2667102f-b380-4594-bb6f-cff8d06aff73-2020-04-23 01:25:23Z-Ps" + "x-ms-request-id": [ + "f05eb17c-4238-49ac-bdb7-3ae05087b50c" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "1edaf11a-6aa8-416a-a4b3-9bda5aa846ac" ], "x-ms-correlation-request-id": [ - "0ed41e86-b2e3-4cd4-941a-e225073d0b13" + "f05eb17c-4238-49ac-bdb7-3ae05087b50c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012524Z:0ed41e86-b2e3-4cd4-941a-e225073d0b13" + "CENTRALINDIA:20210419T075053Z:f05eb17c-4238-49ac-bdb7-3ae05087b50c" ], "Date": [ - "Thu, 23 Apr 2020 01:25:23 GMT" + "Mon, 19 Apr 2021 07:50:52 GMT" ], "Content-Length": [ - "1893" + "7512" ], "Content-Type": [ "application/json" @@ -25085,29 +23776,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/9db40c14-afca-4cc8-8cd2-458289174c98\",\r\n \"name\": \"9db40c14-afca-4cc8-8cd2-458289174c98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"98157156-8793-4768-9ad9-966aa2751217-2020-04-23 01:25:22Z-Ps ActivityId: 9c00a552-00eb-4fbb-b89d-943eb31c0430\",\r\n \"scenarioName\": \"UpdateVmProperties\",\r\n \"friendlyName\": \"Update the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"516b7c79-ad09-4ebf-92b9-c1e9ee64de89\",\r\n \"name\": \"UpdateVmPropertiesTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Update the virtual machine properties\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:23.2608994Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/9db40c14-afca-4cc8-8cd2-458289174c98?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvOWRiNDBjMTQtYWZjYS00Y2M4LThjZDItNDU4Mjg5MTc0Yzk4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14d7b568-0d6a-4838-a50e-548172450db9-2020-04-23 01:25:24Z-Ps" + "4adc87fe-db7a-4c20-b03a-66913a19230d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601524223)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206324223)\\/\",\"ClientRequestId\":\"14d7b568-0d6a-4838-a50e-548172450db9-2020-04-23 01:25:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"f+byGubJaw/Y1so9njzWFImusAluFKqrHNoypvGQvFc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815063183)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419863183)\\/\",\"ClientRequestId\":\"dff8eae5-cd61-45bf-a90f-b7c7548d3513-2021-04-19 07:51:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YgevADcUVFSnnQJ7I+hxa3zhTJqrC53+c5fc1E5KFBY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25124,32 +23815,29 @@ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/9db40c14-afca-4cc8-8cd2-458289174c98" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "14d7b568-0d6a-4838-a50e-548172450db9-2020-04-23 01:25:24Z-Ps" + "x-ms-request-id": [ + "f2a16f44-e4af-444f-b99f-1127bd5c7a71" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "4adc87fe-db7a-4c20-b03a-66913a19230d" ], "x-ms-correlation-request-id": [ - "e244ceb4-e0d9-48bc-b292-23a3839d0532" + "f2a16f44-e4af-444f-b99f-1127bd5c7a71" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012524Z:e244ceb4-e0d9-48bc-b292-23a3839d0532" + "CENTRALINDIA:20210419T075103Z:f2a16f44-e4af-444f-b99f-1127bd5c7a71" ], "Date": [ - "Thu, 23 Apr 2020 01:25:23 GMT" + "Mon, 19 Apr 2021 07:51:02 GMT" ], "Content-Length": [ - "1893" + "7512" ], "Content-Type": [ "application/json" @@ -25158,29 +23846,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/9db40c14-afca-4cc8-8cd2-458289174c98\",\r\n \"name\": \"9db40c14-afca-4cc8-8cd2-458289174c98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"98157156-8793-4768-9ad9-966aa2751217-2020-04-23 01:25:22Z-Ps ActivityId: 9c00a552-00eb-4fbb-b89d-943eb31c0430\",\r\n \"scenarioName\": \"UpdateVmProperties\",\r\n \"friendlyName\": \"Update the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"516b7c79-ad09-4ebf-92b9-c1e9ee64de89\",\r\n \"name\": \"UpdateVmPropertiesTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Update the virtual machine properties\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:23.2608994Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/9db40c14-afca-4cc8-8cd2-458289174c98?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvOWRiNDBjMTQtYWZjYS00Y2M4LThjZDItNDU4Mjg5MTc0Yzk4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b73d996f-2e20-4734-a12c-5aee5ba838d0-2020-04-23 01:25:44Z-Ps" + "dc9018b5-4c40-42a5-9bcc-eccf9bf0d69d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601544898)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206344898)\\/\",\"ClientRequestId\":\"b73d996f-2e20-4734-a12c-5aee5ba838d0-2020-04-23 01:25:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zhOc1NOjGFTG+0OzvQL9VRijdgBEkVTliX5o9EcBkIg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815073525)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419873525)\\/\",\"ClientRequestId\":\"9d8c5bd5-7cde-4511-ae15-86a7bbfacd9e-2021-04-19 07:51:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3u1LYK7xyFLsOmMOBEMpAhJ2aBnCf1RwEP2K+E2YKwg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25197,32 +23885,29 @@ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/9db40c14-afca-4cc8-8cd2-458289174c98" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "b73d996f-2e20-4734-a12c-5aee5ba838d0-2020-04-23 01:25:44Z-Ps" + "x-ms-request-id": [ + "77b3636e-8daa-46c2-b5f8-be0a549008b6" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "dc9018b5-4c40-42a5-9bcc-eccf9bf0d69d" ], "x-ms-correlation-request-id": [ - "e8ca09a2-af32-40e1-b7ee-b941c9c3bab1" + "77b3636e-8daa-46c2-b5f8-be0a549008b6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012545Z:e8ca09a2-af32-40e1-b7ee-b941c9c3bab1" + "CENTRALINDIA:20210419T075113Z:77b3636e-8daa-46c2-b5f8-be0a549008b6" ], "Date": [ - "Thu, 23 Apr 2020 01:25:45 GMT" + "Mon, 19 Apr 2021 07:51:13 GMT" ], "Content-Length": [ - "1940" + "7512" ], "Content-Type": [ "application/json" @@ -25231,35 +23916,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/9db40c14-afca-4cc8-8cd2-458289174c98\",\r\n \"name\": \"9db40c14-afca-4cc8-8cd2-458289174c98\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"98157156-8793-4768-9ad9-966aa2751217-2020-04-23 01:25:22Z-Ps ActivityId: 9c00a552-00eb-4fbb-b89d-943eb31c0430\",\r\n \"scenarioName\": \"UpdateVmProperties\",\r\n \"friendlyName\": \"Update the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"516b7c79-ad09-4ebf-92b9-c1e9ee64de89\",\r\n \"name\": \"UpdateVmPropertiesTask\",\r\n \"startTime\": \"2020-04-23T01:25:23.7057297Z\",\r\n \"endTime\": \"2020-04-23T01:25:25.3776055Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Update the virtual machine properties\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:23.2608994Z\",\r\n \"endTime\": \"2020-04-23T01:25:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectedItems/a2aVM910/unplannedFailover?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTkxMC91bnBsYW5uZWRGYWlsb3Zlcj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"failoverDirection\": \"PrimaryToRecovery\",\r\n \"sourceSiteOperations\": \"Required\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\"\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps" + "d9d49f86-ce48-4f4f-bf8b-252a5ae30e42" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601546278)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206346278)\\/\",\"ClientRequestId\":\"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TokFR7KhsGaAU9NCOXVpSv0U8X+NsbtIRCDLNsYXiDE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815083858)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419883858)\\/\",\"ClientRequestId\":\"d3c62383-cb05-47f2-a996-c8745a99b005-2021-04-19 07:51:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Vr7KZQXNyZvjk+R54lenLlOpgA1TKU0PKTSCM4BYMd4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "186" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25269,73 +23948,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/replicationProtectedItems/a2aVM910/operationresults/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10" - ], - "Retry-After": [ - "30" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11713" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationOperationStatus/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "7a38251e-2384-4e14-ab16-20118c80f5ff" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-client-request-id": [ + "d9d49f86-ce48-4f4f-bf8b-252a5ae30e42" ], "x-ms-correlation-request-id": [ - "22533a0b-2eb5-4ccf-9a38-16e10dc1d20a" + "7a38251e-2384-4e14-ab16-20118c80f5ff" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012547Z:22533a0b-2eb5-4ccf-9a38-16e10dc1d20a" + "CENTRALINDIA:20210419T075124Z:7a38251e-2384-4e14-ab16-20118c80f5ff" ], "Date": [ - "Thu, 23 Apr 2020 01:25:47 GMT" + "Mon, 19 Apr 2021 07:51:23 GMT" + ], + "Content-Length": [ + "7512" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18cbae01-0a76-4e84-9bbd-4a49b8720446-2020-04-23 01:25:47Z-Ps" + "e5dcfae4-646a-4ce5-97e9-a8e2160bd352" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601547373)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206347373)\\/\",\"ClientRequestId\":\"18cbae01-0a76-4e84-9bbd-4a49b8720446-2020-04-23 01:25:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YSiQKCXOOsTjEgDoI8eWU82hG/ou6pnlP81t75S0kdQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815094200)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419894200)\\/\",\"ClientRequestId\":\"f00eb7e2-49a5-4007-b6e6-c55a25f136bf-2021-04-19 07:51:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PnypD1dW7x+AoMUDgoBK4y9RdDo3MHHE7oiDxpQ33xM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25345,39 +24018,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11712" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "18cbae01-0a76-4e84-9bbd-4a49b8720446-2020-04-23 01:25:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "390076c8-6f0b-446b-8f70-e039b20a6301" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11712" + "x-ms-client-request-id": [ + "e5dcfae4-646a-4ce5-97e9-a8e2160bd352" ], "x-ms-correlation-request-id": [ - "cf549e1e-45d6-43be-a68c-198fb4a33a1f" + "390076c8-6f0b-446b-8f70-e039b20a6301" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012547Z:cf549e1e-45d6-43be-a68c-198fb4a33a1f" + "CENTRALINDIA:20210419T075134Z:390076c8-6f0b-446b-8f70-e039b20a6301" ], "Date": [ - "Thu, 23 Apr 2020 01:25:47 GMT" + "Mon, 19 Apr 2021 07:51:33 GMT" ], "Content-Length": [ - "3374" + "7512" ], "Content-Type": [ "application/json" @@ -25386,29 +24056,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:47.3392857Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41379e1c-6a2a-4e9b-9a70-ff570d6974ff-2020-04-23 01:25:47Z-Ps" + "da8392ca-5a09-4585-a0ac-22884bcee08d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601547833)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206347833)\\/\",\"ClientRequestId\":\"41379e1c-6a2a-4e9b-9a70-ff570d6974ff-2020-04-23 01:25:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yq5XYVhdmqPlxpVah0KFMPnjvmO9RxqxKC0VQCHg/JI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815104599)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419904599)\\/\",\"ClientRequestId\":\"2c0b001d-ed50-4f7f-8bf2-e8ab087b7351-2021-04-19 07:51:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"worVorFYfXGf/vhA3hJEvGN5Ri0o15mMvPVvlVZXx1M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25425,32 +24095,29 @@ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "41379e1c-6a2a-4e9b-9a70-ff570d6974ff-2020-04-23 01:25:47Z-Ps" + "x-ms-request-id": [ + "c33721ba-fb5b-48b9-af5b-ab0cd3118701" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "da8392ca-5a09-4585-a0ac-22884bcee08d" ], "x-ms-correlation-request-id": [ - "9d0f6c07-f0f9-4ae5-83e8-39a832ac18b6" + "c33721ba-fb5b-48b9-af5b-ab0cd3118701" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012549Z:9d0f6c07-f0f9-4ae5-83e8-39a832ac18b6" + "CENTRALINDIA:20210419T075144Z:c33721ba-fb5b-48b9-af5b-ab0cd3118701" ], "Date": [ - "Thu, 23 Apr 2020 01:25:49 GMT" + "Mon, 19 Apr 2021 07:51:44 GMT" ], "Content-Length": [ - "3374" + "7512" ], "Content-Type": [ "application/json" @@ -25459,29 +24126,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:47.3392857Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d58928cc-9cb4-4a0b-bf8e-01b21f99d1fc-2020-04-23 01:26:09Z-Ps" + "19d2393e-7e30-4384-81bf-8a888fa4a044" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601569499)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206369499)\\/\",\"ClientRequestId\":\"d58928cc-9cb4-4a0b-bf8e-01b21f99d1fc-2020-04-23 01:26:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uvcbwQnI99/V6F7w+8gSgZf6hnRGc++srHpx6E3e+jM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815114935)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419914935)\\/\",\"ClientRequestId\":\"0cb23d81-27e1-4608-bf07-300d6313bbdb-2021-04-19 07:51:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nHwb52vixpQbvKeIHOFMX/97rhR+UsInCw+WQcJuuB8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25498,32 +24165,29 @@ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "d58928cc-9cb4-4a0b-bf8e-01b21f99d1fc-2020-04-23 01:26:09Z-Ps" + "x-ms-request-id": [ + "cac48a36-4ee7-417c-beb2-301eb91f6d8a" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "19d2393e-7e30-4384-81bf-8a888fa4a044" ], "x-ms-correlation-request-id": [ - "36b5a5ea-12c5-49a6-b2e7-23be0a8b9fbd" + "cac48a36-4ee7-417c-beb2-301eb91f6d8a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012610Z:36b5a5ea-12c5-49a6-b2e7-23be0a8b9fbd" + "CENTRALINDIA:20210419T075155Z:cac48a36-4ee7-417c-beb2-301eb91f6d8a" ], "Date": [ - "Thu, 23 Apr 2020 01:26:09 GMT" + "Mon, 19 Apr 2021 07:51:54 GMT" ], "Content-Length": [ - "3390" + "8292" ], "Content-Type": [ "application/json" @@ -25532,29 +24196,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/3f326a56-1f47-4bbf-a8f8-e1cb2c8a11bb\",\r\n \"name\": \"3f326a56-1f47-4bbf-a8f8-e1cb2c8a11bb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:51:48.9297073Z\",\r\n \"endTime\": \"2021-04-19T07:51:49Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d1ef2c0-dee9-4127-a2a7-57c9b8d0ed44-2020-04-23 01:26:30Z-Ps" + "30be3a99-09a1-47d7-ac78-c2048f31d5a4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601590278)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206390278)\\/\",\"ClientRequestId\":\"5d1ef2c0-dee9-4127-a2a7-57c9b8d0ed44-2020-04-23 01:26:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VKKdBhU7GEBYfx9u5QnFsDpq6qGzLObfXNTHjZyGWMw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815125277)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419925277)\\/\",\"ClientRequestId\":\"c7b54a8f-66ba-4a86-acfb-99748e0439b9-2021-04-19 07:52:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mgQO8Yri8CDiPW3Y0wjADVh7gdWZN4wCxHtHEgiqDYg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25571,32 +24235,29 @@ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "5d1ef2c0-dee9-4127-a2a7-57c9b8d0ed44-2020-04-23 01:26:30Z-Ps" + "x-ms-request-id": [ + "671e17e2-5969-4eaf-bcb7-47ecc1a04f0c" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "30be3a99-09a1-47d7-ac78-c2048f31d5a4" ], "x-ms-correlation-request-id": [ - "68607972-f3c7-490a-af81-aee9af9e6aeb" + "671e17e2-5969-4eaf-bcb7-47ecc1a04f0c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012630Z:68607972-f3c7-490a-af81-aee9af9e6aeb" + "CENTRALINDIA:20210419T075205Z:671e17e2-5969-4eaf-bcb7-47ecc1a04f0c" ], "Date": [ - "Thu, 23 Apr 2020 01:26:30 GMT" + "Mon, 19 Apr 2021 07:52:04 GMT" ], "Content-Length": [ - "3390" + "8292" ], "Content-Type": [ "application/json" @@ -25605,29 +24266,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/3f326a56-1f47-4bbf-a8f8-e1cb2c8a11bb\",\r\n \"name\": \"3f326a56-1f47-4bbf-a8f8-e1cb2c8a11bb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:51:48.9297073Z\",\r\n \"endTime\": \"2021-04-19T07:51:49Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ad96ef7-90ee-41b8-bb24-056e7365be67-2020-04-23 01:26:50Z-Ps" + "52ff2f68-b832-436f-9985-d0e757a65535" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601610954)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206410954)\\/\",\"ClientRequestId\":\"7ad96ef7-90ee-41b8-bb24-056e7365be67-2020-04-23 01:26:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gWdvc9AbgKUbIAH7+hzYVwXGC6f/5rGmrDtb5dyHypc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815135629)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419935629)\\/\",\"ClientRequestId\":\"e4757c50-8d01-4562-a2b2-8b4e46985404-2021-04-19 07:52:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"S0e3ECdZKQgZmQWCPk2bqyjhypamcJpaZCCdaXnVzVE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25637,39 +24298,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11708" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "7ad96ef7-90ee-41b8-bb24-056e7365be67-2020-04-23 01:26:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "55041319-b8fb-4780-bbcd-e7912293e790" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11708" + "x-ms-client-request-id": [ + "52ff2f68-b832-436f-9985-d0e757a65535" ], "x-ms-correlation-request-id": [ - "e35190c1-d8a4-48fa-bc3e-3c420e4a63c3" + "55041319-b8fb-4780-bbcd-e7912293e790" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012651Z:e35190c1-d8a4-48fa-bc3e-3c420e4a63c3" + "CENTRALINDIA:20210419T075215Z:55041319-b8fb-4780-bbcd-e7912293e790" ], "Date": [ - "Thu, 23 Apr 2020 01:26:50 GMT" + "Mon, 19 Apr 2021 07:52:14 GMT" ], "Content-Length": [ - "3390" + "8292" ], "Content-Type": [ "application/json" @@ -25678,29 +24336,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/3f326a56-1f47-4bbf-a8f8-e1cb2c8a11bb\",\r\n \"name\": \"3f326a56-1f47-4bbf-a8f8-e1cb2c8a11bb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:51:48.9297073Z\",\r\n \"endTime\": \"2021-04-19T07:51:49Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70552369-baca-437a-acc8-43ea3daebbf5-2020-04-23 01:27:11Z-Ps" + "7737c2f8-da45-46df-b86f-3fed434aaa9a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601631491)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206431491)\\/\",\"ClientRequestId\":\"70552369-baca-437a-acc8-43ea3daebbf5-2020-04-23 01:27:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bVLbQOhY0Q5K4ckb3psDP0ZV4gx89NcH+SCIO326Fu4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815145968)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419945968)\\/\",\"ClientRequestId\":\"91862358-fb11-4175-92f2-b9bfb55673c4-2021-04-19 07:52:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LYiYB21MGd7ARW9cMhr/PnFK687RAdhPwSClirf4n60=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25717,32 +24375,29 @@ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "70552369-baca-437a-acc8-43ea3daebbf5-2020-04-23 01:27:11Z-Ps" + "x-ms-request-id": [ + "40af03b1-54db-4e90-96fa-502bfff280ed" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "7737c2f8-da45-46df-b86f-3fed434aaa9a" ], "x-ms-correlation-request-id": [ - "eb627639-16ce-411f-a6a3-921d0ef934f7" + "40af03b1-54db-4e90-96fa-502bfff280ed" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012713Z:eb627639-16ce-411f-a6a3-921d0ef934f7" + "CENTRALINDIA:20210419T075226Z:40af03b1-54db-4e90-96fa-502bfff280ed" ], "Date": [ - "Thu, 23 Apr 2020 01:27:12 GMT" + "Mon, 19 Apr 2021 07:52:25 GMT" ], "Content-Length": [ - "3390" + "8292" ], "Content-Type": [ "application/json" @@ -25751,29 +24406,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/3f326a56-1f47-4bbf-a8f8-e1cb2c8a11bb\",\r\n \"name\": \"3f326a56-1f47-4bbf-a8f8-e1cb2c8a11bb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:51:48.9297073Z\",\r\n \"endTime\": \"2021-04-19T07:51:49Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b51c270b-bf02-4295-9571-3b638559a08e-2020-04-23 01:27:33Z-Ps" + "1aaef762-cff6-46b5-88ea-9d48ae9b1fd2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601653652)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206453652)\\/\",\"ClientRequestId\":\"b51c270b-bf02-4295-9571-3b638559a08e-2020-04-23 01:27:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xPRsX9Y4koDosjwKQjmIXzSyqCCiCvpR37skJsWPuxw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815156306)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419956306)\\/\",\"ClientRequestId\":\"a6f27e99-2cac-41e5-9697-afd602b17500-2021-04-19 07:52:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NFdXY84ZhH71YA9Zv+p7q3DudAGKPZeXr22EGaytVI0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25790,32 +24445,29 @@ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "b51c270b-bf02-4295-9571-3b638559a08e-2020-04-23 01:27:33Z-Ps" + "x-ms-request-id": [ + "688e16ec-946c-48f5-bc01-d9e69ee1f96d" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "1aaef762-cff6-46b5-88ea-9d48ae9b1fd2" ], "x-ms-correlation-request-id": [ - "8dd13f0f-cbf3-446c-a952-db3c1c2369ed" + "688e16ec-946c-48f5-bc01-d9e69ee1f96d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012734Z:8dd13f0f-cbf3-446c-a952-db3c1c2369ed" + "CENTRALINDIA:20210419T075236Z:688e16ec-946c-48f5-bc01-d9e69ee1f96d" ], "Date": [ - "Thu, 23 Apr 2020 01:27:33 GMT" + "Mon, 19 Apr 2021 07:52:36 GMT" ], "Content-Length": [ - "3390" + "8292" ], "Content-Type": [ "application/json" @@ -25824,29 +24476,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/3f326a56-1f47-4bbf-a8f8-e1cb2c8a11bb\",\r\n \"name\": \"3f326a56-1f47-4bbf-a8f8-e1cb2c8a11bb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:51:48.9297073Z\",\r\n \"endTime\": \"2021-04-19T07:51:49Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6fa4b600-3b0b-47e6-937a-f750a21b9394-2020-04-23 01:27:54Z-Ps" + "2f6760e1-59f9-45d7-b1ed-4c4efdeebc5c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601674307)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206474307)\\/\",\"ClientRequestId\":\"6fa4b600-3b0b-47e6-937a-f750a21b9394-2020-04-23 01:27:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WKOFOmLNopPjLmRgDVIvaHh08IGfJpQo+qt+FJK/+CU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815166661)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419966661)\\/\",\"ClientRequestId\":\"820959de-6c1d-4674-8044-1ec56274f958-2021-04-19 07:52:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zcVYBa8KOBU9HnvrqAjFW7DxGRT2LuiRwxNNdsnsFfs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25863,32 +24515,29 @@ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "6fa4b600-3b0b-47e6-937a-f750a21b9394-2020-04-23 01:27:54Z-Ps" + "x-ms-request-id": [ + "81a6936b-8bde-485a-ab8f-f06f91edc830" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "2f6760e1-59f9-45d7-b1ed-4c4efdeebc5c" ], "x-ms-correlation-request-id": [ - "7bf750d1-a9c0-4b89-8304-31ea231f84ce" + "81a6936b-8bde-485a-ab8f-f06f91edc830" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012754Z:7bf750d1-a9c0-4b89-8304-31ea231f84ce" + "CENTRALINDIA:20210419T075246Z:81a6936b-8bde-485a-ab8f-f06f91edc830" ], "Date": [ - "Thu, 23 Apr 2020 01:27:54 GMT" + "Mon, 19 Apr 2021 07:52:46 GMT" ], "Content-Length": [ - "3390" + "8292" ], "Content-Type": [ "application/json" @@ -25897,29 +24546,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/3f326a56-1f47-4bbf-a8f8-e1cb2c8a11bb\",\r\n \"name\": \"3f326a56-1f47-4bbf-a8f8-e1cb2c8a11bb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:51:48.9297073Z\",\r\n \"endTime\": \"2021-04-19T07:51:49Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb9a81fc-e517-44f7-87ff-5d17c1284d4b-2020-04-23 01:28:14Z-Ps" + "91f5bb1d-9afb-4cd9-b621-1963f5e56b79" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601694851)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206494851)\\/\",\"ClientRequestId\":\"fb9a81fc-e517-44f7-87ff-5d17c1284d4b-2020-04-23 01:28:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6qMmsBXOf67pHKIh9jA+vmf9YI9m0Htsc9LZqeCzdLw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815177003)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419977003)\\/\",\"ClientRequestId\":\"853e3fa2-4962-4f47-9a42-14da538ed0f9-2021-04-19 07:52:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3G3QzbYUA+Je55wXdbbmqUUZ4s12K3C5m7bjVCoxqko=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -25929,39 +24578,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11704" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "fb9a81fc-e517-44f7-87ff-5d17c1284d4b-2020-04-23 01:28:14Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "0aead212-8f8d-4651-9b18-493f30153e11" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11704" + "x-ms-client-request-id": [ + "91f5bb1d-9afb-4cd9-b621-1963f5e56b79" ], "x-ms-correlation-request-id": [ - "4652efdb-c125-408d-9958-2c10b06322ea" + "0aead212-8f8d-4651-9b18-493f30153e11" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012815Z:4652efdb-c125-408d-9958-2c10b06322ea" + "CENTRALINDIA:20210419T075257Z:0aead212-8f8d-4651-9b18-493f30153e11" ], "Date": [ - "Thu, 23 Apr 2020 01:28:15 GMT" + "Mon, 19 Apr 2021 07:52:57 GMT" ], "Content-Length": [ - "3390" + "9075" ], "Content-Type": [ "application/json" @@ -25970,29 +24616,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/450ddc76-ab5c-4b3e-b8d4-f0bc28a32b78\",\r\n \"name\": \"450ddc76-ab5c-4b3e-b8d4-f0bc28a32b78\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:52:50.9640993Z\",\r\n \"endTime\": \"2021-04-19T07:52:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/3f326a56-1f47-4bbf-a8f8-e1cb2c8a11bb\",\r\n \"name\": \"3f326a56-1f47-4bbf-a8f8-e1cb2c8a11bb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:51:48.9297073Z\",\r\n \"endTime\": \"2021-04-19T07:51:49Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"name\": \"99569afd-5b79-4c74-afae-b27bb78275d2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:04:00.1341481Z\",\r\n \"endTime\": \"2021-04-19T07:17:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"name\": \"813979e1-b0b2-4cf8-b3fa-0c01ea1689b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:03:38.0547687Z\",\r\n \"endTime\": \"2021-04-19T07:03:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork9100\",\r\n \"targetObjectName\": \"a2arecoverynetwork9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"name\": \"cca5c3eb-af07-452a-abf9-44575dc8cbec\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:02:13.0812405Z\",\r\n \"endTime\": \"2021-04-19T07:03:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"name\": \"c5577312-ddf7-4ab0-999b-39e19a3937d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:01:51.3254112Z\",\r\n \"endTime\": \"2021-04-19T07:01:53Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm9100\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"name\": \"35659744-f2a4-40f0-aa35-a36422986b4f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:28.0561112Z\",\r\n \"endTime\": \"2021-04-19T07:01:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"name\": \"2c142b96-02ad-4e70-8a68-8964f46dd904\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:26.0644588Z\",\r\n \"endTime\": \"2021-04-19T07:00:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"targetObjectName\": \"TestA2APolicy19100\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"name\": \"9c3c496a-aa00-45f2-86e6-ab2d82225340\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:23.8456061Z\",\r\n \"endTime\": \"2021-04-19T07:00:24Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"targetObjectName\": \"A2ARecoveryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"name\": \"996ec1f7-9504-4fdb-a871-16bc1df5a0b9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:00:21.6512802Z\",\r\n \"endTime\": \"2021-04-19T07:00:21Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"targetObjectName\": \"A2APrimaryContainer9100\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"name\": \"8d37e6e3-bf32-4abb-a896-8104f5efc316\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:58:57.7327158Z\",\r\n \"endTime\": \"2021-04-19T07:00:03Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"targetObjectName\": \"a2aRecoveryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"name\": \"b3b488bf-c464-4f38-9e3b-a88621d56f09\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T06:57:33.5816843Z\",\r\n \"endTime\": \"2021-04-19T06:58:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"targetObjectName\": \"a2aPrimaryFabric9100\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/450ddc76-ab5c-4b3e-b8d4-f0bc28a32b78?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy80NTBkZGM3Ni1hYjVjLTRiM2UtYjhkNC1mMGJjMjhhMzJiNzg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05154ca8-5687-4dd2-b461-5ccb79722029-2020-04-23 01:28:35Z-Ps" + "b7f2d652-5850-424e-96fd-c85745675216" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601715536)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206515536)\\/\",\"ClientRequestId\":\"05154ca8-5687-4dd2-b461-5ccb79722029-2020-04-23 01:28:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TuNMfEgcVX2a4qOxKLwN3vSKl6CYPKhpMO8C0I1nXEg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815177344)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419977344)\\/\",\"ClientRequestId\":\"dfb9b1fe-8272-4a63-a93b-9135945696d5-2021-04-19 07:52:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WFFCPKB6EbkgGJkeF1YSGXvFBVtv84Oz+4yH2Gy+W+o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26009,32 +24655,29 @@ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/450ddc76-ab5c-4b3e-b8d4-f0bc28a32b78" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "05154ca8-5687-4dd2-b461-5ccb79722029-2020-04-23 01:28:35Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b7f2d652-5850-424e-96fd-c85745675216" ], "x-ms-correlation-request-id": [ - "204edb5b-f402-4c8b-9a07-cb134ee1d168" + "2edfd152-bcc5-431d-be4f-024bc6be6ef4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012837Z:204edb5b-f402-4c8b-9a07-cb134ee1d168" + "CENTRALINDIA:20210419T075257Z:2edfd152-bcc5-431d-be4f-024bc6be6ef4" ], "Date": [ - "Thu, 23 Apr 2020 01:28:36 GMT" + "Mon, 19 Apr 2021 07:52:57 GMT" ], "Content-Length": [ - "3390" + "3131" ], "Content-Type": [ "application/json" @@ -26043,29 +24686,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/450ddc76-ab5c-4b3e-b8d4-f0bc28a32b78\",\r\n \"name\": \"450ddc76-ab5c-4b3e-b8d4-f0bc28a32b78\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"958bd7f4-b202-4a07-9a31-117bb697ae43 ActivityId: 0d5aae5b-a258-4dac-a11c-abc1dac932f7\",\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CompleteInitialReplicationTask\",\r\n \"name\": \"CompleteInitialReplication\",\r\n \"startTime\": \"2021-04-19T07:52:51.1978462Z\",\r\n \"endTime\": \"2021-04-19T07:52:51.8477938Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationPreflightChecksTask\",\r\n \"name\": \"FailWorkflowOnIRFailureTask\",\r\n \"startTime\": \"2021-04-19T07:52:51.8477938Z\",\r\n \"endTime\": \"2021-04-19T07:52:51.9527989Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationTask\",\r\n \"name\": \"ReplicaConfiguration\",\r\n \"startTime\": \"2021-04-19T07:52:51.9527989Z\",\r\n \"endTime\": \"2021-04-19T07:52:56.6928251Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete network and post-replication configuration\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2021-04-19T07:52:56.6928251Z\",\r\n \"endTime\": \"2021-04-19T07:52:56.952829Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:52:50.9640993Z\",\r\n \"endTime\": \"2021-04-19T07:52:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectedItems/a2aVM9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljOTEwMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAwL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk05MTAwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7017105-733c-4878-936f-256ae4f96932-2020-04-23 01:28:57Z-Ps" + "7cd2b3d2-2615-4b7a-9a18-d80dfa31e8d1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601737485)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206537485)\\/\",\"ClientRequestId\":\"b7017105-733c-4878-936f-256ae4f96932-2020-04-23 01:28:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dLAR3zyVFGthxY/AyguzBvBslV2pCEMA6ONjbr6RPdc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815177706)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619419977706)\\/\",\"ClientRequestId\":\"9256adec-00bc-4ae3-80cf-8c0368e2fe2c-2021-04-19 07:52:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zBz9a8AOypASWt+IMZ8CQXIs0Ab+Qz/Bn74DL55eHPQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26082,32 +24725,29 @@ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "7cd2b3d2-2615-4b7a-9a18-d80dfa31e8d1 4/19/2021 7:52:57 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b7017105-733c-4878-936f-256ae4f96932-2020-04-23 01:28:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7cd2b3d2-2615-4b7a-9a18-d80dfa31e8d1" ], "x-ms-correlation-request-id": [ - "02aadc6b-d846-41ce-a426-05c0d074a98f" + "f8f71a34-4660-4ea1-8882-ae4b3d56b9ac" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012857Z:02aadc6b-d846-41ce-a426-05c0d074a98f" + "CENTRALINDIA:20210419T075333Z:f8f71a34-4660-4ea1-8882-ae4b3d56b9ac" ], "Date": [ - "Thu, 23 Apr 2020 01:28:57 GMT" + "Mon, 19 Apr 2021 07:53:33 GMT" ], "Content-Length": [ - "3390" + "8437" ], "Content-Type": [ "application/json" @@ -26116,29 +24756,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"name\": \"a2aVM9100\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM9100\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationRecoveryServicesProviders/2112d305-b244-514a-a5a5-3313208e58ce\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer9100\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer9100\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM9100'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-19T07:52:57.7364983Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationPolicies/TestA2APolicy19100\",\r\n \"policyFriendlyName\": \"TestA2APolicy19100\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm9100/providers/microsoft.compute/virtualmachines/a2avm9100\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"84e9446e-3056-42cd-a007-19008f7eb774\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"8d7ff796-ce82-41e2-8126-09cfd1c8a4d5\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm9100/providers/microsoft.compute/disks/a2avm9100_osdisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/disks/a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Storage/storageAccounts/cache9100\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.35498046875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"tfoDiskName\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM9100\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.network/virtualnetworks/a2arecoverynetwork9100\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"e16674d7-efba-57d3-9688-77e2b6c158dd\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkInterfaces/a2aVM9100\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/virtualNetworks/a2aVM9100\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.network/virtualnetworks/a2arecoverynetwork9100\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM9100\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM9100\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 87,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2021-04-19T07:52:35.5710306Z\",\r\n \"agentVersion\": \"9.42.5941.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-18T07:00:30Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"ac1296d2-d215-4f61-936c-590a988e101f\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2093,\r\n \"lastRpoCalculatedTime\": \"2021-04-19T07:52:49.9860533Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM9100-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr\",\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100\",\r\n \"eventCorrelationId\": \"3c369788-7df0-4c16-9294-9af758437ba9\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectedItems/a2aVM9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljOTEwMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAwL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk05MTAwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32e9838d-3113-4b76-a11a-5a604d0a5ed4-2020-04-23 01:29:18Z-Ps" + "df7789be-1cc1-45e0-a94a-f37cade15148" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601758042)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206558042)\\/\",\"ClientRequestId\":\"32e9838d-3113-4b76-a11a-5a604d0a5ed4-2020-04-23 01:29:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7mkUTLr/2QBL9ZFO2J8jz+1OFxbgjGwBiBFVhcp2ou4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815213679)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420013679)\\/\",\"ClientRequestId\":\"d67b7bcd-b8f1-471e-96d3-59565cb64cd6-2021-04-19 07:53:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZJKO35X2/v/aXOF0kcLtxfOlyHaY+8oEypVDZ9sSS0Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26148,39 +24788,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11701" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "df7789be-1cc1-45e0-a94a-f37cade15148 4/19/2021 7:53:33 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "32e9838d-3113-4b76-a11a-5a604d0a5ed4-2020-04-23 01:29:18Z-Ps" + "df7789be-1cc1-45e0-a94a-f37cade15148" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11701" ], "x-ms-correlation-request-id": [ - "2fe6b891-af02-4a48-8012-57626c05af9d" + "e2fc74bd-db63-4c3e-9d66-a728c0b2674e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012918Z:2fe6b891-af02-4a48-8012-57626c05af9d" + "CENTRALINDIA:20210419T075334Z:e2fc74bd-db63-4c3e-9d66-a728c0b2674e" ], "Date": [ - "Thu, 23 Apr 2020 01:29:18 GMT" + "Mon, 19 Apr 2021 07:53:33 GMT" ], "Content-Length": [ - "3390" + "8437" ], "Content-Type": [ "application/json" @@ -26189,29 +24826,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"name\": \"a2aVM9100\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM9100\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationRecoveryServicesProviders/2112d305-b244-514a-a5a5-3313208e58ce\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer9100\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer9100\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM9100'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-19T07:52:57.7364983Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationPolicies/TestA2APolicy19100\",\r\n \"policyFriendlyName\": \"TestA2APolicy19100\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm9100/providers/microsoft.compute/virtualmachines/a2avm9100\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"84e9446e-3056-42cd-a007-19008f7eb774\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"8d7ff796-ce82-41e2-8126-09cfd1c8a4d5\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm9100/providers/microsoft.compute/disks/a2avm9100_osdisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/disks/a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Storage/storageAccounts/cache9100\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.35498046875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"tfoDiskName\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM9100\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.network/virtualnetworks/a2arecoverynetwork9100\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"e16674d7-efba-57d3-9688-77e2b6c158dd\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkInterfaces/a2aVM9100\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/virtualNetworks/a2aVM9100\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.network/virtualnetworks/a2arecoverynetwork9100\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM9100\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM9100\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 87,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2021-04-19T07:52:35.5710306Z\",\r\n \"agentVersion\": \"9.42.5941.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-18T07:00:30Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"ac1296d2-d215-4f61-936c-590a988e101f\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2093,\r\n \"lastRpoCalculatedTime\": \"2021-04-19T07:52:49.9860533Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM9100-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/proximityPlacementGroups/PPG1-asr\",\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100\",\r\n \"eventCorrelationId\": \"3c369788-7df0-4c16-9294-9af758437ba9\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectedItems/a2aVM9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljOTEwMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAwL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk05MTAwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc6599ca-f0b7-4d0c-8d48-38e714fc686f-2020-04-23 01:29:38Z-Ps" + "ca4687f7-e43e-48d0-b43b-d64e2f0f3021" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601778570)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206578570)\\/\",\"ClientRequestId\":\"dc6599ca-f0b7-4d0c-8d48-38e714fc686f-2020-04-23 01:29:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mcX57clujcrMBRBv8E1l6zcOZlb0tQONrPKjclaCY68=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815221076)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420021076)\\/\",\"ClientRequestId\":\"37bc8117-35c6-437e-ace1-dc551969ca76-2021-04-19 07:53:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6gSenepnWKTuBjxdKCN0belcubPbGw1rh19P08QBVGo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26221,39 +24858,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11698" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "ca4687f7-e43e-48d0-b43b-d64e2f0f3021 4/19/2021 7:53:41 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "dc6599ca-f0b7-4d0c-8d48-38e714fc686f-2020-04-23 01:29:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11700" + "ca4687f7-e43e-48d0-b43b-d64e2f0f3021" ], "x-ms-correlation-request-id": [ - "9046ed9d-dead-425f-b280-050c9409f4e1" + "2214f0ed-4b38-4dcd-9960-92ded47d28b0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T012938Z:9046ed9d-dead-425f-b280-050c9409f4e1" + "CENTRALINDIA:20210419T075341Z:2214f0ed-4b38-4dcd-9960-92ded47d28b0" ], "Date": [ - "Thu, 23 Apr 2020 01:29:38 GMT" + "Mon, 19 Apr 2021 07:53:41 GMT" ], "Content-Length": [ - "3390" + "8418" ], "Content-Type": [ "application/json" @@ -26262,29 +24896,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"name\": \"a2aVM9100\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM9100\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationRecoveryServicesProviders/2112d305-b244-514a-a5a5-3313208e58ce\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer9100\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer9100\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM9100'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-19T07:52:57.7364983Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationPolicies/TestA2APolicy19100\",\r\n \"policyFriendlyName\": \"TestA2APolicy19100\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm9100/providers/microsoft.compute/virtualmachines/a2avm9100\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"84e9446e-3056-42cd-a007-19008f7eb774\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"8d7ff796-ce82-41e2-8126-09cfd1c8a4d5\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm9100/providers/microsoft.compute/disks/a2avm9100_osdisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/disks/a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Storage/storageAccounts/cache9100\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.35498046875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"tfoDiskName\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM9100\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.network/virtualnetworks/a2arecoverynetwork9100\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"e16674d7-efba-57d3-9688-77e2b6c158dd\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkInterfaces/a2aVM9100\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/virtualNetworks/a2aVM9100\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.network/virtualnetworks/a2arecoverynetwork9100\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM9100\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM9100\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"tfoSubnetName\": \"\",\r\n \"tfoStaticIPAddress\": \"\",\r\n \"tfoPublicIPAddressId\": \"\",\r\n \"tfoLBBackendAddressPoolIds\": []\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": \"\",\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 87,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2021-04-19T07:52:35.5710306Z\",\r\n \"agentVersion\": \"9.42.5941.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-18T07:00:30Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"ac1296d2-d215-4f61-936c-590a988e101f\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2093,\r\n \"lastRpoCalculatedTime\": \"2021-04-19T07:52:49.9860533Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM9100-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/proximityPlacementGroups/PPG2-asr\",\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100\",\r\n \"eventCorrelationId\": \"3c369788-7df0-4c16-9294-9af758437ba9\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectedItems/a2aVM9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljOTEwMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAwL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk05MTAwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee15cebf-739c-4159-94f9-7e102047b129-2020-04-23 01:29:59Z-Ps" + "b36bbf17-21da-4090-ad44-095206816498" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601799146)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206599146)\\/\",\"ClientRequestId\":\"ee15cebf-739c-4159-94f9-7e102047b129-2020-04-23 01:29:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"h5pkHNCAIRRsmhJi+X0pTsayxX6l9O7829ONeJXn390=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618817847740)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422647740)\\/\",\"ClientRequestId\":\"545c54ed-c7f3-45f5-a856-e93d8e11ddb7-2021-04-19 08:37:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UkoXT+lD2AO1t+eK4NgSI3KpVK5liZ2dElpcpGRtUFI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26295,38 +24929,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11701" + "11999" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "b36bbf17-21da-4090-ad44-095206816498 4/19/2021 8:37:29 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ee15cebf-739c-4159-94f9-7e102047b129-2020-04-23 01:29:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b36bbf17-21da-4090-ad44-095206816498" ], "x-ms-correlation-request-id": [ - "950ddd09-3479-4c24-877f-e09f567d90b1" + "1d447c8c-e9c1-4f63-94f7-62884ebd15fe" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013000Z:950ddd09-3479-4c24-877f-e09f567d90b1" + "CENTRALINDIA:20210419T083730Z:1d447c8c-e9c1-4f63-94f7-62884ebd15fe" ], "Date": [ - "Thu, 23 Apr 2020 01:29:59 GMT" + "Mon, 19 Apr 2021 08:37:29 GMT" ], "Content-Length": [ - "3390" + "8520" ], "Content-Type": [ "application/json" @@ -26335,29 +24966,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"name\": \"a2aVM9100\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM9100\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationRecoveryServicesProviders/2112d305-b244-514a-a5a5-3313208e58ce\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer9100\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer9100\",\r\n \"protectionState\": \"UnplannedFailoverCommitPendingStatesBegin\",\r\n \"protectionStateDescription\": \"Failover completed\",\r\n \"activeLocation\": \"Recovery\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"CompleteMigration\",\r\n \"Commit\",\r\n \"DisableProtection\",\r\n \"ChangePit\",\r\n \"SwitchProtection\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Normal\",\r\n \"healthErrors\": [],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationPolicies/TestA2APolicy19100\",\r\n \"policyFriendlyName\": \"TestA2APolicy19100\",\r\n \"lastSuccessfulFailoverTime\": \"2021-04-19T07:53:41.9387801Z\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/66443560-d9b9-5df4-ad90-0679f5198d3f/replicationProtectedItems/a2aVM9100/recoveryPoints/2449a337-7f15-4635-998b-a197fa6e7473\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm9100/providers/microsoft.compute/virtualmachines/a2avm9100\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"84e9446e-3056-42cd-a007-19008f7eb774\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"8d7ff796-ce82-41e2-8126-09cfd1c8a4d5\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm9100/providers/microsoft.compute/disks/a2avm9100_osdisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100\",\r\n \"recoveryTargetDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/disks/a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/disks/a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Storage/storageAccounts/cache9100\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.35498046875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"tfoDiskName\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM9100\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.network/virtualnetworks/a2arecoverynetwork9100\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"e16674d7-efba-57d3-9688-77e2b6c158dd\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkInterfaces/a2aVM9100\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/virtualNetworks/a2aVM9100\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.network/virtualnetworks/a2arecoverynetwork9100\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM9100\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM9100\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"tfoSubnetName\": \"\",\r\n \"tfoStaticIPAddress\": \"\",\r\n \"tfoPublicIPAddressId\": \"\",\r\n \"tfoLBBackendAddressPoolIds\": []\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": \"\",\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 87,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2021-04-19T07:52:35.5710306Z\",\r\n \"agentVersion\": \"9.42.5941.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.compute/virtualmachines/a2avm9100\",\r\n \"vmProtectionState\": \"UnplannedFailoverCommitPendingStatesBegin\",\r\n \"vmProtectionStateDescription\": \"Failover completed\",\r\n \"lifecycleId\": \"ac1296d2-d215-4f61-936c-590a988e101f\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2093,\r\n \"lastRpoCalculatedTime\": \"2021-04-19T07:52:49.9860533Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM9100-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/proximityPlacementGroups/PPG2-asr\",\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100\",\r\n \"eventCorrelationId\": \"3c369788-7df0-4c16-9294-9af758437ba9\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectedItems/a2aVM9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljOTEwMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAwL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk05MTAwP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"recoveryAzureVMName\": \"a2aVM9100\",\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.network/virtualnetworks/a2arecoverynetwork9100\",\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"e16674d7-efba-57d3-9688-77e2b6c158dd\",\r\n \"ipConfigs\": [\r\n {\r\n \"ipConfigName\": \"a2aVM9100\",\r\n \"isPrimary\": true,\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\"\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"enableAcceleratedNetworkingOnRecovery\": false\r\n }\r\n ],\r\n \"licenseType\": \"WindowsServer\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"managedDiskUpdateDetails\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm9100/providers/microsoft.compute/disks/a2avm9100_osdisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"failoverDiskName\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"tfoDiskName\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd-ASRtest\"\r\n }\r\n ],\r\n \"tfoAzureVMName\": \"a2aVM9100-test\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/proximityPlacementGroups/PPG2-asr\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5e907a5e-ad2d-4f83-a43b-6fa87dadfd60-2020-04-23 01:30:20Z-Ps" + "df7789be-1cc1-45e0-a94a-f37cade15148" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601820788)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206620788)\\/\",\"ClientRequestId\":\"5e907a5e-ad2d-4f83-a43b-6fa87dadfd60-2020-04-23 01:30:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/2jf4nkczD3iAxshYHdIDk+CnESqb6aklQPldlBqaiE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815214155)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420014155)\\/\",\"ClientRequestId\":\"7375c321-663c-4ac6-95b7-f36b375ed1d9-2021-04-19 07:53:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MEYwwmbKKw8I2jGtCkPWQ4jdrkDPALdlXX9vvJIR2UI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1619" ] }, "ResponseHeaders": { @@ -26367,70 +25004,70 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11700" + "Location": [ + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectedItems/a2aVM9100/operationresults/2f52b8d1-a55f-4753-bf47-7a99f5eece3f?api-version=2021-02-10" ], - "Server": [ - "Microsoft-IIS/10.0", - "Kestrel" + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2f52b8d1-a55f-4753-bf47-7a99f5eece3f", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2f52b8d1-a55f-4753-bf47-7a99f5eece3f" ], - "X-Powered-By": [ - "ASP.NET" + "Azure-AsyncOperation": [ + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationOperationStatus/2f52b8d1-a55f-4753-bf47-7a99f5eece3f?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "5e907a5e-ad2d-4f83-a43b-6fa87dadfd60-2020-04-23 01:30:20Z-Ps" + "df7789be-1cc1-45e0-a94a-f37cade15148" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" ], "x-ms-correlation-request-id": [ - "389d4167-7e26-4089-a05a-2ed15890e8d5" + "804386ce-6254-487f-9b3f-d87ec89d9ac4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013021Z:389d4167-7e26-4089-a05a-2ed15890e8d5" + "CENTRALINDIA:20210419T075340Z:804386ce-6254-487f-9b3f-d87ec89d9ac4" ], "Date": [ - "Thu, 23 Apr 2020 01:30:20 GMT" - ], - "Content-Length": [ - "3390" - ], - "Content-Type": [ - "application/json" + "Mon, 19 Apr 2021 07:53:39 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2f52b8d1-a55f-4753-bf47-7a99f5eece3f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy8yZjUyYjhkMS1hNTVmLTQ3NTMtYmY0Ny03YTk5ZjVlZWNlM2Y/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e80d3450-9592-4c56-928e-038a5a4c63c1-2020-04-23 01:30:41Z-Ps" + "df7789be-1cc1-45e0-a94a-f37cade15148" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601841423)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206641423)\\/\",\"ClientRequestId\":\"e80d3450-9592-4c56-928e-038a5a4c63c1-2020-04-23 01:30:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"F4/RzRJnLawbNOG5hem0N8TbQ10CfEcO00CyTLk6zcQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815220363)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420020363)\\/\",\"ClientRequestId\":\"ad882187-68d7-4005-a6a8-45cd633a9726-2021-04-19 07:53:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SQvYJaAhWawVnKdKVgsN/frTI3ZD8wtjtk0TuORdoMo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26441,38 +25078,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11699" + "11700" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2f52b8d1-a55f-4753-bf47-7a99f5eece3f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e80d3450-9592-4c56-928e-038a5a4c63c1-2020-04-23 01:30:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "df7789be-1cc1-45e0-a94a-f37cade15148" ], "x-ms-correlation-request-id": [ - "6578f83e-2e77-4d06-af4a-099e09ad83bf" + "533bc438-e174-4d71-8b0d-4471658275ec" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013041Z:6578f83e-2e77-4d06-af4a-099e09ad83bf" + "CENTRALINDIA:20210419T075340Z:533bc438-e174-4d71-8b0d-4471658275ec" ], "Date": [ - "Thu, 23 Apr 2020 01:30:41 GMT" + "Mon, 19 Apr 2021 07:53:40 GMT" ], "Content-Length": [ - "3407" + "1929" ], "Content-Type": [ "application/json" @@ -26481,29 +25115,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.8860231Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2f52b8d1-a55f-4753-bf47-7a99f5eece3f\",\r\n \"name\": \"2f52b8d1-a55f-4753-bf47-7a99f5eece3f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"df7789be-1cc1-45e0-a94a-f37cade15148 ActivityId: 804386ce-6254-487f-9b3f-d87ec89d9ac4\",\r\n \"scenarioName\": \"UpdateVmProperties\",\r\n \"friendlyName\": \"Update the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"8b724beb-6195-4558-af51-d079ac50fdd7\",\r\n \"name\": \"UpdateVmPropertiesTask\",\r\n \"startTime\": \"2021-04-19T07:53:37.2364395Z\",\r\n \"endTime\": \"2021-04-19T07:53:38.29645Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Update the virtual machine properties\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:53:36.7055397Z\",\r\n \"endTime\": \"2021-04-19T07:53:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2f52b8d1-a55f-4753-bf47-7a99f5eece3f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy8yZjUyYjhkMS1hNTVmLTQ3NTMtYmY0Ny03YTk5ZjVlZWNlM2Y/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60e5ffb1-1559-423a-8d13-c51e1255efef-2020-04-23 01:31:01Z-Ps" + "ac97ecef-4f6a-4ba7-9518-3b01b0b7bf44" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601861976)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206661976)\\/\",\"ClientRequestId\":\"60e5ffb1-1559-423a-8d13-c51e1255efef-2020-04-23 01:31:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"T0uPg8Li+c8bvuGJ+tS6znqFYz1TzRaLjrjzy9DDOVo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815220740)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420020740)\\/\",\"ClientRequestId\":\"bf297967-cb31-4e22-813c-a0cc697bbdb0-2021-04-19 07:53:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TtbQpxlqpIvKPnfV8wephrnIRnqvqIcmUXbpvbCF/fo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26513,39 +25147,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11699" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2f52b8d1-a55f-4753-bf47-7a99f5eece3f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "60e5ffb1-1559-423a-8d13-c51e1255efef-2020-04-23 01:31:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11698" + "ac97ecef-4f6a-4ba7-9518-3b01b0b7bf44" ], "x-ms-correlation-request-id": [ - "3459ec2e-e8ba-4bed-8826-d71ca330645b" + "8a9c2d60-9db3-416e-9329-80f1e06ca3e6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013102Z:3459ec2e-e8ba-4bed-8826-d71ca330645b" + "CENTRALINDIA:20210419T075341Z:8a9c2d60-9db3-416e-9329-80f1e06ca3e6" ], "Date": [ - "Thu, 23 Apr 2020 01:31:01 GMT" + "Mon, 19 Apr 2021 07:53:40 GMT" ], "Content-Length": [ - "3407" + "1929" ], "Content-Type": [ "application/json" @@ -26554,29 +25185,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.8860231Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/2f52b8d1-a55f-4753-bf47-7a99f5eece3f\",\r\n \"name\": \"2f52b8d1-a55f-4753-bf47-7a99f5eece3f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"df7789be-1cc1-45e0-a94a-f37cade15148 ActivityId: 804386ce-6254-487f-9b3f-d87ec89d9ac4\",\r\n \"scenarioName\": \"UpdateVmProperties\",\r\n \"friendlyName\": \"Update the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"8b724beb-6195-4558-af51-d079ac50fdd7\",\r\n \"name\": \"UpdateVmPropertiesTask\",\r\n \"startTime\": \"2021-04-19T07:53:37.2364395Z\",\r\n \"endTime\": \"2021-04-19T07:53:38.29645Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Update the virtual machine properties\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:53:36.7055397Z\",\r\n \"endTime\": \"2021-04-19T07:53:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2avm9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectedItems/a2aVM9100/unplannedFailover?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljOTEwMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAwL3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk05MTAwL3VucGxhbm5lZEZhaWxvdmVyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"failoverDirection\": \"PrimaryToRecovery\",\r\n \"sourceSiteOperations\": \"Required\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6e3b6060-ef09-4d30-b35a-1b1ddccd92ba-2020-04-23 01:31:22Z-Ps" + "3938c51a-5def-4d98-8eef-ab2e1ca33669" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601882512)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206682512)\\/\",\"ClientRequestId\":\"6e3b6060-ef09-4d30-b35a-1b1ddccd92ba-2020-04-23 01:31:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pGoWzQ3Uh7WgTeVgbjVxq7eBLZcfjHvOnrcxnDVCOyE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815221568)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420021568)\\/\",\"ClientRequestId\":\"db1e0967-1d7e-4e48-9f6c-2e9cf6c4e835-2021-04-19 07:53:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"esFMFlc4ZpeF8GEP34h0DtgS0ojl+lQvd49Cy7T9Dm0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "186" ] }, "ResponseHeaders": { @@ -26586,70 +25223,70 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11697" + "Location": [ + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/replicationProtectedItems/a2aVM9100/operationresults/d3e918d5-e513-4c4b-a43d-1e6e118a2a72?api-version=2021-02-10" ], - "Server": [ - "Microsoft-IIS/10.0", - "Kestrel" + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72" ], - "X-Powered-By": [ - "ASP.NET" + "Azure-AsyncOperation": [ + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationOperationStatus/d3e918d5-e513-4c4b-a43d-1e6e118a2a72?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "6e3b6060-ef09-4d30-b35a-1b1ddccd92ba-2020-04-23 01:31:22Z-Ps" + "3938c51a-5def-4d98-8eef-ab2e1ca33669" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "a5ed52d6-4cc0-48ed-add0-9ed0402b8b10" + "ff3c5ed8-1d53-4c5c-b4b7-524ad73814ba" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013123Z:a5ed52d6-4cc0-48ed-add0-9ed0402b8b10" + "CENTRALINDIA:20210419T075342Z:ff3c5ed8-1d53-4c5c-b4b7-524ad73814ba" ], "Date": [ - "Thu, 23 Apr 2020 01:31:23 GMT" - ], - "Content-Length": [ - "3407" - ], - "Content-Type": [ - "application/json" + "Mon, 19 Apr 2021 07:53:41 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.8860231Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9kM2U5MThkNS1lNTEzLTRjNGItYTQzZC0xZTZlMTE4YTJhNzI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1678879b-bcf5-489b-9dd7-74b4be3fc81b-2020-04-23 01:31:44Z-Ps" + "3938c51a-5def-4d98-8eef-ab2e1ca33669" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601904126)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206704126)\\/\",\"ClientRequestId\":\"1678879b-bcf5-489b-9dd7-74b4be3fc81b-2020-04-23 01:31:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/gE1Y58Udb7Uy6SpWCXyTku0VafRl2DQG6GvwWkmFH4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815222278)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420022278)\\/\",\"ClientRequestId\":\"63388bd1-18e8-4483-98a1-7215c6cc7854-2021-04-19 07:53:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QDRdR7O01ZpYNCS7BI4bE0wYF0+bIoHc1CBqzeRpIns=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26660,38 +25297,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11696" + "11697" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1678879b-bcf5-489b-9dd7-74b4be3fc81b-2020-04-23 01:31:44Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3938c51a-5def-4d98-8eef-ab2e1ca33669" ], "x-ms-correlation-request-id": [ - "f21976f3-de90-4ecc-ac2c-6268c4ecfb57" + "59eb1616-7644-4e96-aaaa-9421b0f769b4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013144Z:f21976f3-de90-4ecc-ac2c-6268c4ecfb57" + "CENTRALINDIA:20210419T075342Z:59eb1616-7644-4e96-aaaa-9421b0f769b4" ], "Date": [ - "Thu, 23 Apr 2020 01:31:44 GMT" + "Mon, 19 Apr 2021 07:53:42 GMT" ], "Content-Length": [ - "3407" + "3356" ], "Content-Type": [ "application/json" @@ -26700,29 +25334,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.8860231Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"name\": \"d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3938c51a-5def-4d98-8eef-ab2e1ca33669 ActivityId: ff3c5ed8-1d53-4c5c-b4b7-524ad73814ba\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:53:41.9387801Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9kM2U5MThkNS1lNTEzLTRjNGItYTQzZC0xZTZlMTE4YTJhNzI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "516c1cbb-a684-4d27-b809-7aed8e1cb4ed-2020-04-23 01:32:04Z-Ps" + "8137d71b-e9d7-4cfb-a966-d56f0aea8808" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601924722)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206724722)\\/\",\"ClientRequestId\":\"516c1cbb-a684-4d27-b809-7aed8e1cb4ed-2020-04-23 01:32:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wWHUg0M5S99SwaMm2Bxn6VGvAAhEnmJf24hNJLIKq7g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815222629)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420022629)\\/\",\"ClientRequestId\":\"19a7bb64-fe9c-4aa8-b5e9-8dc9b168f2bc-2021-04-19 07:53:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pMpVTo2RYhiStniN0fgAPB2F6svN3y5N5zPFup8K9sI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26733,38 +25367,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11695" + "11696" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "516c1cbb-a684-4d27-b809-7aed8e1cb4ed-2020-04-23 01:32:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8137d71b-e9d7-4cfb-a966-d56f0aea8808" ], "x-ms-correlation-request-id": [ - "7ac475b1-5c24-405e-abde-bf60c836844e" + "6408d7ee-d855-438e-b73f-7bc8a3362d9f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013205Z:7ac475b1-5c24-405e-abde-bf60c836844e" + "CENTRALINDIA:20210419T075342Z:6408d7ee-d855-438e-b73f-7bc8a3362d9f" ], "Date": [ - "Thu, 23 Apr 2020 01:32:04 GMT" + "Mon, 19 Apr 2021 07:53:42 GMT" ], "Content-Length": [ - "3407" + "3365" ], "Content-Type": [ "application/json" @@ -26773,29 +25404,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.8860231Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"name\": \"d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3938c51a-5def-4d98-8eef-ab2e1ca33669 ActivityId: ff3c5ed8-1d53-4c5c-b4b7-524ad73814ba\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:53:42.4714973Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:53:41.9387801Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9kM2U5MThkNS1lNTEzLTRjNGItYTQzZC0xZTZlMTE4YTJhNzI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1ec0fed-55ed-4e88-a9a7-a1f5e594f884-2020-04-23 01:32:25Z-Ps" + "e1cdec0c-f3db-447d-8e46-27ba454bd043" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601945267)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206745267)\\/\",\"ClientRequestId\":\"d1ec0fed-55ed-4e88-a9a7-a1f5e594f884-2020-04-23 01:32:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4Co6mDXkcVFG2x49ipbiKPTWeQUpD0GU1yUlZ4+tv5U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815242977)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420042977)\\/\",\"ClientRequestId\":\"ca39a552-8761-41f1-9440-4edff91b8365-2021-04-19 07:54:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AnuBfaWzGUbXM+F81FMukbkl5RmdU716KW/1gp+x0eU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26805,39 +25436,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11695" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d1ec0fed-55ed-4e88-a9a7-a1f5e594f884-2020-04-23 01:32:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11694" + "e1cdec0c-f3db-447d-8e46-27ba454bd043" ], "x-ms-correlation-request-id": [ - "ce4a5b95-3345-44d1-8d83-230d81722d56" + "8cb1a4d6-6ab8-4b2c-8d6d-e134b470d815" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013225Z:ce4a5b95-3345-44d1-8d83-230d81722d56" + "CENTRALINDIA:20210419T075403Z:8cb1a4d6-6ab8-4b2c-8d6d-e134b470d815" ], "Date": [ - "Thu, 23 Apr 2020 01:32:25 GMT" + "Mon, 19 Apr 2021 07:54:03 GMT" ], "Content-Length": [ - "3407" + "3380" ], "Content-Type": [ "application/json" @@ -26846,29 +25474,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.8860231Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"name\": \"d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3938c51a-5def-4d98-8eef-ab2e1ca33669 ActivityId: ff3c5ed8-1d53-4c5c-b4b7-524ad73814ba\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:53:50.631584Z\",\r\n \"endTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:53:41.9387801Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9kM2U5MThkNS1lNTEzLTRjNGItYTQzZC0xZTZlMTE4YTJhNzI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "972708a1-1af8-4782-a996-2b339b70a732-2020-04-23 01:32:45Z-Ps" + "9ff41a51-dc7a-4434-b6ed-323f3ac13c96" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601965815)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206765815)\\/\",\"ClientRequestId\":\"972708a1-1af8-4782-a996-2b339b70a732-2020-04-23 01:32:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VMWkXr+TYqXMKzHlrUjHNW4QtCixgLR5yG8pyX2dm8M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815263324)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420063324)\\/\",\"ClientRequestId\":\"36ba9e61-3319-42b3-8daa-ba8853868e92-2021-04-19 07:54:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"R3Lwq+wO+5o6DMj063a/G1xi6W6Q5LxynxSO8tkTdiU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26879,38 +25507,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11693" + "11694" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "972708a1-1af8-4782-a996-2b339b70a732-2020-04-23 01:32:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9ff41a51-dc7a-4434-b6ed-323f3ac13c96" ], "x-ms-correlation-request-id": [ - "1c25e10a-f2e7-464d-ad37-7b77420c5533" + "3e1d09bb-934e-4156-8ce4-6dc16df41365" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013247Z:1c25e10a-f2e7-464d-ad37-7b77420c5533" + "CENTRALINDIA:20210419T075423Z:3e1d09bb-934e-4156-8ce4-6dc16df41365" ], "Date": [ - "Thu, 23 Apr 2020 01:32:46 GMT" + "Mon, 19 Apr 2021 07:54:22 GMT" ], "Content-Length": [ - "3407" + "3380" ], "Content-Type": [ "application/json" @@ -26919,29 +25544,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.8860231Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"name\": \"d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3938c51a-5def-4d98-8eef-ab2e1ca33669 ActivityId: ff3c5ed8-1d53-4c5c-b4b7-524ad73814ba\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:53:50.631584Z\",\r\n \"endTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:53:41.9387801Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9kM2U5MThkNS1lNTEzLTRjNGItYTQzZC0xZTZlMTE4YTJhNzI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b06cc3e3-fc9f-48ac-af31-221445216cea-2020-04-23 01:33:07Z-Ps" + "4391019e-7537-4e42-8fcd-9d8a3fbf3806" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587601987527)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206787527)\\/\",\"ClientRequestId\":\"b06cc3e3-fc9f-48ac-af31-221445216cea-2020-04-23 01:33:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+G2+8Mkpwp8QoAZUtv0WepaytfPy886nDz3ThvvbIJo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815283678)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420083678)\\/\",\"ClientRequestId\":\"0d65bcdc-48d4-4438-b29f-17b7c6be69bb-2021-04-19 07:54:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"026TVzkdt+/vG5XKoGffNaEbfkq+tzRxLLs616hPSC0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -26952,38 +25577,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11692" + "11693" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b06cc3e3-fc9f-48ac-af31-221445216cea-2020-04-23 01:33:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4391019e-7537-4e42-8fcd-9d8a3fbf3806" ], "x-ms-correlation-request-id": [ - "08ce2cee-e641-4b41-9b20-0f18cbf8aae2" + "2a895871-b5f1-467f-9128-c9538fd6d0a7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013307Z:08ce2cee-e641-4b41-9b20-0f18cbf8aae2" + "CENTRALINDIA:20210419T075443Z:2a895871-b5f1-467f-9128-c9538fd6d0a7" ], "Date": [ - "Thu, 23 Apr 2020 01:33:07 GMT" + "Mon, 19 Apr 2021 07:54:43 GMT" ], "Content-Length": [ - "3407" + "3380" ], "Content-Type": [ "application/json" @@ -26992,29 +25614,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.8860231Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"name\": \"d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3938c51a-5def-4d98-8eef-ab2e1ca33669 ActivityId: ff3c5ed8-1d53-4c5c-b4b7-524ad73814ba\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:53:50.631584Z\",\r\n \"endTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:53:41.9387801Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9kM2U5MThkNS1lNTEzLTRjNGItYTQzZC0xZTZlMTE4YTJhNzI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87545796-8e77-4a4a-8d55-13d6a24bda11-2020-04-23 01:33:28Z-Ps" + "91f7a5b2-9402-4a0b-bb73-862a9f191a48" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602008106)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206808106)\\/\",\"ClientRequestId\":\"87545796-8e77-4a4a-8d55-13d6a24bda11-2020-04-23 01:33:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"x/Kkr0TfFNUznYLGgBiJUw1sgxJoH/Sd+Yui9rAixxs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815304041)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420104041)\\/\",\"ClientRequestId\":\"9b8c636d-2e36-45f0-a409-f1df17e5f31b-2021-04-19 07:55:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ku5QQenb2/rEce0+j6F29e5zQiWDN9SCOv8PUsOrArQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27025,38 +25647,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11691" + "11692" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "87545796-8e77-4a4a-8d55-13d6a24bda11-2020-04-23 01:33:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "91f7a5b2-9402-4a0b-bb73-862a9f191a48" ], "x-ms-correlation-request-id": [ - "5c4cffdf-2f59-4701-b8e4-b49598fe3385" + "1d15d313-53f8-45f3-8c8e-bc3c92f389ee" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013328Z:5c4cffdf-2f59-4701-b8e4-b49598fe3385" + "CENTRALINDIA:20210419T075504Z:1d15d313-53f8-45f3-8c8e-bc3c92f389ee" ], "Date": [ - "Thu, 23 Apr 2020 01:33:28 GMT" + "Mon, 19 Apr 2021 07:55:03 GMT" ], "Content-Length": [ - "3407" + "3397" ], "Content-Type": [ "application/json" @@ -27065,29 +25684,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.8860231Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"name\": \"d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3938c51a-5def-4d98-8eef-ab2e1ca33669 ActivityId: ff3c5ed8-1d53-4c5c-b4b7-524ad73814ba\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:53:50.631584Z\",\r\n \"endTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"endTime\": \"2021-04-19T07:54:53.2222539Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2021-04-19T07:54:53.2222539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2021-04-19T07:54:53.5872531Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:53:41.9387801Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9kM2U5MThkNS1lNTEzLTRjNGItYTQzZC0xZTZlMTE4YTJhNzI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f31c4828-2a99-40c5-b12b-838b173cc3ac-2020-04-23 01:33:48Z-Ps" + "ec4dc24a-9950-4354-9b16-d179a27f30b0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602028899)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206828899)\\/\",\"ClientRequestId\":\"f31c4828-2a99-40c5-b12b-838b173cc3ac-2020-04-23 01:33:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qjAEqDkfg4ujiYwAOxChSD7x0RRba6r6N3eSH52rv5k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815324385)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420124385)\\/\",\"ClientRequestId\":\"6858d4a5-6a3f-4456-9bb0-699b22c8d6c9-2021-04-19 07:55:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WYQO4E23BGIUXI5PWnvTgJhpCukm6N/HgLO52LheXyY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27097,39 +25716,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11691" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f31c4828-2a99-40c5-b12b-838b173cc3ac-2020-04-23 01:33:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11690" + "ec4dc24a-9950-4354-9b16-d179a27f30b0" ], "x-ms-correlation-request-id": [ - "4c1bb80c-a678-4419-ae11-8ae68b9bfba5" + "16bbadee-df85-4ea4-8030-de04091c296d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013349Z:4c1bb80c-a678-4419-ae11-8ae68b9bfba5" + "CENTRALINDIA:20210419T075524Z:16bbadee-df85-4ea4-8030-de04091c296d" ], "Date": [ - "Thu, 23 Apr 2020 01:33:49 GMT" + "Mon, 19 Apr 2021 07:55:24 GMT" ], "Content-Length": [ - "3407" + "3397" ], "Content-Type": [ "application/json" @@ -27138,29 +25754,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.8860231Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"name\": \"d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3938c51a-5def-4d98-8eef-ab2e1ca33669 ActivityId: ff3c5ed8-1d53-4c5c-b4b7-524ad73814ba\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:53:50.631584Z\",\r\n \"endTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"endTime\": \"2021-04-19T07:54:53.2222539Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2021-04-19T07:54:53.2222539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2021-04-19T07:54:53.5872531Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:53:41.9387801Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9kM2U5MThkNS1lNTEzLTRjNGItYTQzZC0xZTZlMTE4YTJhNzI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9eead642-e5b6-457f-b80a-42bae7c2676a-2020-04-23 01:34:09Z-Ps" + "b675d318-6231-40f6-9182-c05c7dc74cb5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602049507)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206849507)\\/\",\"ClientRequestId\":\"9eead642-e5b6-457f-b80a-42bae7c2676a-2020-04-23 01:34:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3pHzsxCgMxuCfT6dpdey4jLAiwaB4Br05NXupnFKoiw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815344781)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420144781)\\/\",\"ClientRequestId\":\"e67b3b6c-9f9f-40f8-8d80-932a53f3b81a-2021-04-19 07:55:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"as+HlWDdPV0dcvtKAEksUll01WxevNvvldhbQmhqXiw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27171,38 +25787,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11689" + "11690" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9eead642-e5b6-457f-b80a-42bae7c2676a-2020-04-23 01:34:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b675d318-6231-40f6-9182-c05c7dc74cb5" ], "x-ms-correlation-request-id": [ - "263b4bb6-aa76-41c5-94ab-a4ae49c98002" + "41517c74-a494-4af1-874e-f449fec24752" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013411Z:263b4bb6-aa76-41c5-94ab-a4ae49c98002" + "CENTRALINDIA:20210419T075545Z:41517c74-a494-4af1-874e-f449fec24752" ], "Date": [ - "Thu, 23 Apr 2020 01:34:11 GMT" + "Mon, 19 Apr 2021 07:55:44 GMT" ], "Content-Length": [ - "3407" + "3397" ], "Content-Type": [ "application/json" @@ -27211,29 +25824,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.8860231Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"name\": \"d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3938c51a-5def-4d98-8eef-ab2e1ca33669 ActivityId: ff3c5ed8-1d53-4c5c-b4b7-524ad73814ba\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:53:50.631584Z\",\r\n \"endTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"endTime\": \"2021-04-19T07:54:53.2222539Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2021-04-19T07:54:53.2222539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2021-04-19T07:54:53.5872531Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:53:41.9387801Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9kM2U5MThkNS1lNTEzLTRjNGItYTQzZC0xZTZlMTE4YTJhNzI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6ad1ec9-4b1d-4e37-a331-c34c4e01459d-2020-04-23 01:34:31Z-Ps" + "c6a4ca26-fc14-48fe-bacf-a6058267cd32" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602071261)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206871261)\\/\",\"ClientRequestId\":\"d6ad1ec9-4b1d-4e37-a331-c34c4e01459d-2020-04-23 01:34:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wk6yn+b8a2qBl1V8k+U+/kIhznJF5ooAwr/hbJWFh/8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815365137)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420165137)\\/\",\"ClientRequestId\":\"b1bf6998-8426-4558-adb6-0c1d1f055b22-2021-04-19 07:56:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"su0bWwba4rXiIBLBsLcW79qqLAYzQJgyyuG5rgvqcvY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27244,38 +25857,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11688" + "11689" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d6ad1ec9-4b1d-4e37-a331-c34c4e01459d-2020-04-23 01:34:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c6a4ca26-fc14-48fe-bacf-a6058267cd32" ], "x-ms-correlation-request-id": [ - "ccf7fb1f-04ca-4ee0-8296-2eae8d8d5801" + "11d6b910-ccf6-4695-aceb-9c9a4cc1771f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013431Z:ccf7fb1f-04ca-4ee0-8296-2eae8d8d5801" + "CENTRALINDIA:20210419T075605Z:11d6b910-ccf6-4695-aceb-9c9a4cc1771f" ], "Date": [ - "Thu, 23 Apr 2020 01:34:31 GMT" + "Mon, 19 Apr 2021 07:56:05 GMT" ], "Content-Length": [ - "3407" + "3397" ], "Content-Type": [ "application/json" @@ -27284,29 +25894,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.8860231Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"name\": \"d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3938c51a-5def-4d98-8eef-ab2e1ca33669 ActivityId: ff3c5ed8-1d53-4c5c-b4b7-524ad73814ba\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:53:50.631584Z\",\r\n \"endTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"endTime\": \"2021-04-19T07:54:53.2222539Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2021-04-19T07:54:53.2222539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2021-04-19T07:54:53.5872531Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:53:41.9387801Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9kM2U5MThkNS1lNTEzLTRjNGItYTQzZC0xZTZlMTE4YTJhNzI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "410851db-c3d6-4872-a9a7-af20168a743a-2020-04-23 01:34:52Z-Ps" + "b013e076-2b5f-4a1c-94df-fc764d3f61df" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602092121)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206892121)\\/\",\"ClientRequestId\":\"410851db-c3d6-4872-a9a7-af20168a743a-2020-04-23 01:34:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"A6Sp0nipQdLZc09IY2mjks2GAVBAWWgatFZv4evx9WY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815385489)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420185489)\\/\",\"ClientRequestId\":\"ee928fa5-29b4-4efa-8961-1aad667214e9-2021-04-19 07:56:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"a/dSW0VumoMHS51A380KBtEZ5GHMOzAKjbyTiQE6Hhc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27317,38 +25927,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11687" + "11688" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "410851db-c3d6-4872-a9a7-af20168a743a-2020-04-23 01:34:52Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b013e076-2b5f-4a1c-94df-fc764d3f61df" ], "x-ms-correlation-request-id": [ - "fb70cec7-732a-4f32-875a-c90c8dc61fe8" + "47f1d431-9005-4f7e-9c9d-4016b5fdecdd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013452Z:fb70cec7-732a-4f32-875a-c90c8dc61fe8" + "CENTRALINDIA:20210419T075625Z:47f1d431-9005-4f7e-9c9d-4016b5fdecdd" ], "Date": [ - "Thu, 23 Apr 2020 01:34:52 GMT" + "Mon, 19 Apr 2021 07:56:24 GMT" ], "Content-Length": [ - "3407" + "3397" ], "Content-Type": [ "application/json" @@ -27357,29 +25964,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.8860231Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"name\": \"d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3938c51a-5def-4d98-8eef-ab2e1ca33669 ActivityId: ff3c5ed8-1d53-4c5c-b4b7-524ad73814ba\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:53:50.631584Z\",\r\n \"endTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"endTime\": \"2021-04-19T07:54:53.2222539Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2021-04-19T07:54:53.2222539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2021-04-19T07:54:53.5872531Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:53:41.9387801Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9kM2U5MThkNS1lNTEzLTRjNGItYTQzZC0xZTZlMTE4YTJhNzI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7674dc1-b3d2-484f-a7d5-79f3585bd48b-2020-04-23 01:35:12Z-Ps" + "9cfd6593-cb7f-4d38-98ce-086c7b6a961e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602112746)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206912746)\\/\",\"ClientRequestId\":\"a7674dc1-b3d2-484f-a7d5-79f3585bd48b-2020-04-23 01:35:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HC0pl8pdYFFNhyYPunESXjhlnEUwHHq9ycyJhkHh8qU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815405928)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420205928)\\/\",\"ClientRequestId\":\"8bdc815f-21a9-4832-aa92-3a38773d6a06-2021-04-19 07:56:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DAslomxnzf8MR220KFxXtxjqc6kBZQxSP3WTSW28iKA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27389,39 +25996,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11687" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a7674dc1-b3d2-484f-a7d5-79f3585bd48b-2020-04-23 01:35:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11718" + "9cfd6593-cb7f-4d38-98ce-086c7b6a961e" ], "x-ms-correlation-request-id": [ - "d19a8164-66c2-4047-9c90-02b17e64644f" + "5f268702-0157-4916-b0b9-f60f1196d68d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013513Z:d19a8164-66c2-4047-9c90-02b17e64644f" + "CENTRALINDIA:20210419T075646Z:5f268702-0157-4916-b0b9-f60f1196d68d" ], "Date": [ - "Thu, 23 Apr 2020 01:35:13 GMT" + "Mon, 19 Apr 2021 07:56:45 GMT" ], "Content-Length": [ - "3407" + "3397" ], "Content-Type": [ "application/json" @@ -27430,29 +26034,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.8860231Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"name\": \"d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3938c51a-5def-4d98-8eef-ab2e1ca33669 ActivityId: ff3c5ed8-1d53-4c5c-b4b7-524ad73814ba\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:53:50.631584Z\",\r\n \"endTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"endTime\": \"2021-04-19T07:54:53.2222539Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2021-04-19T07:54:53.2222539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2021-04-19T07:54:53.5872531Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:53:41.9387801Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9kM2U5MThkNS1lNTEzLTRjNGItYTQzZC0xZTZlMTE4YTJhNzI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1967704e-c17c-4675-8131-d5de9a6eaa43-2020-04-23 01:35:33Z-Ps" + "b1b7dcc0-6c93-42b0-8f4d-d18e9337271f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602133633)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206933633)\\/\",\"ClientRequestId\":\"1967704e-c17c-4675-8131-d5de9a6eaa43-2020-04-23 01:35:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uLulsztRW8EMm4AcfXZS5cuwAeZgTNHNVwp3bsUt8vY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815426288)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420226288)\\/\",\"ClientRequestId\":\"11fb300e-6b12-4d65-b946-1ca78f6ce74c-2021-04-19 07:57:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yk3KhF9/qHrm0XV21LDtgEDMUEz/tI5ujYJ0e8AlbH8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27463,38 +26067,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11717" + "11686" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1967704e-c17c-4675-8131-d5de9a6eaa43-2020-04-23 01:35:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b1b7dcc0-6c93-42b0-8f4d-d18e9337271f" ], "x-ms-correlation-request-id": [ - "7fb1dbc0-d637-43cd-be07-4ca2c3966572" + "755eaec3-b626-4a6f-aacf-ec9d32457b94" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013535Z:7fb1dbc0-d637-43cd-be07-4ca2c3966572" + "CENTRALINDIA:20210419T075706Z:755eaec3-b626-4a6f-aacf-ec9d32457b94" ], "Date": [ - "Thu, 23 Apr 2020 01:35:34 GMT" + "Mon, 19 Apr 2021 07:57:05 GMT" ], "Content-Length": [ - "3407" + "3397" ], "Content-Type": [ "application/json" @@ -27503,29 +26104,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.8860231Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"name\": \"d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3938c51a-5def-4d98-8eef-ab2e1ca33669 ActivityId: ff3c5ed8-1d53-4c5c-b4b7-524ad73814ba\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:53:50.631584Z\",\r\n \"endTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"endTime\": \"2021-04-19T07:54:53.2222539Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2021-04-19T07:54:53.2222539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2021-04-19T07:54:53.5872531Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:53:41.9387801Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvYTMwMzk1MGItZTIzOC00MzZmLTg2NzUtYTJiYzNmZDFlMDg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy9kM2U5MThkNS1lNTEzLTRjNGItYTQzZC0xZTZlMTE4YTJhNzI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0558fa6-0d9c-4f05-8ddf-702ecf4a4d5d-2020-04-23 01:35:55Z-Ps" + "aaae74b5-26fb-4b2c-82d8-3f4137ba45b4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602155412)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588206955412)\\/\",\"ClientRequestId\":\"c0558fa6-0d9c-4f05-8ddf-702ecf4a4d5d-2020-04-23 01:35:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YitDysRKAQhTVyHq2z/ChtMEAVX490xSfI+N2xwyglU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618815446635)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619420246635)\\/\",\"ClientRequestId\":\"cc6b19ff-206d-41ad-a3b4-ad3398c8e126-2021-04-19 07:57:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gNkiVtLzJ6IPmDQoBGsg9BCZiPzijp8OGWQwQBYH1vg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27536,38 +26137,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11716" + "11685" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c0558fa6-0d9c-4f05-8ddf-702ecf4a4d5d-2020-04-23 01:35:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "aaae74b5-26fb-4b2c-82d8-3f4137ba45b4" ], "x-ms-correlation-request-id": [ - "7fe1ae6c-99dc-4ab5-ae4b-b266f2297263" + "11704645-155d-4486-a3ab-11084d84312d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013555Z:7fe1ae6c-99dc-4ab5-ae4b-b266f2297263" + "CENTRALINDIA:20210419T075726Z:11704645-155d-4486-a3ab-11084d84312d" ], "Date": [ - "Thu, 23 Apr 2020 01:35:55 GMT" + "Mon, 19 Apr 2021 07:57:26 GMT" ], "Content-Length": [ - "3780" + "3773" ], "Content-Type": [ "application/json" @@ -27576,26 +26174,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"name\": \"a303950b-e238-436f-8675-a2bc3fd1e089\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a5390804-4dfb-4da8-a64e-e0203bbd9fda-2020-04-23 01:25:46Z-Ps ActivityId: 22533a0b-2eb5-4ccf-9a38-16e10dc1d20a\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2020-04-23T01:25:55.4017872Z\",\r\n \"endTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2020-04-23T01:25:56.6581576Z\",\r\n \"endTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.3703972Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2020-04-23T01:30:35.8860231Z\",\r\n \"endTime\": \"2020-04-23T01:35:52.1743756Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"2020-04-23T01:35:52.1743756Z\",\r\n \"endTime\": \"2020-04-23T01:35:52.8149799Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:25:46.9801443Z\",\r\n \"endTime\": \"2020-04-23T01:35:52Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [\r\n {\r\n \"name\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"friendlyName\": \"a2aVM910\",\r\n \"testVmName\": null,\r\n \"testVmFriendlyName\": null,\r\n \"networkConnectionStatus\": null,\r\n \"networkFriendlyName\": \"a2arecoverynetwork910\",\r\n \"subnet\": \"frontendSubnet\",\r\n \"recoveryPointId\": \"6b16ae96-cfa5-42d8-b441-ceb4ea61d2b7\",\r\n \"recoveryPointTime\": \"2020-04-23T01:25:04.260955Z\"\r\n }\r\n ],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"name\": \"d3e918d5-e513-4c4b-a43d-1e6e118a2a72\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3938c51a-5def-4d98-8eef-ab2e1ca33669 ActivityId: ff3c5ed8-1d53-4c5c-b4b7-524ad73814ba\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-19T07:53:50.631584Z\",\r\n \"endTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-19T07:53:51.3766434Z\",\r\n \"endTime\": \"2021-04-19T07:54:53.2222539Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2021-04-19T07:54:53.2222539Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2021-04-19T07:54:53.5872531Z\",\r\n \"endTime\": \"2021-04-19T07:57:06.4636754Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"2021-04-19T07:57:06.4636754Z\",\r\n \"endTime\": \"2021-04-19T07:57:06.7036757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T07:53:41.9387801Z\",\r\n \"endTime\": \"2021-04-19T07:57:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [\r\n {\r\n \"name\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"friendlyName\": \"a2aVM9100\",\r\n \"testVmName\": null,\r\n \"testVmFriendlyName\": null,\r\n \"networkConnectionStatus\": null,\r\n \"networkFriendlyName\": \"a2arecoverynetwork9100\",\r\n \"subnet\": \"frontendSubnet\",\r\n \"recoveryPointId\": \"2449a337-7f15-4635-998b-a197fa6e7473\",\r\n \"recoveryPointTime\": \"2021-04-19T07:17:57.3938572Z\"\r\n }\r\n ],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/virtualMachines/a2aVM910?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk05MTA/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/virtualMachines/a2aVM9100?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHOTEwMC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2EyYVZNOTEwMD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e13202d2-44bb-451f-83a7-a8a2e1801f9b" + "64536875-10fa-48c3-a8e2-5f78259d29b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -27606,13 +26204,13 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31993" + "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31992" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b9a3bd0f-e8b2-4f6a-b4c0-b428389ac293" + "97693326-3202-4711-8189-7a35ee2fb6e8" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -27622,19 +26220,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "f003cdbe-4bd4-4314-a7a2-d27f0a2e1eb5" + "0cb5a127-c8f5-4778-b418-cd565abade78" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T013556Z:f003cdbe-4bd4-4314-a7a2-d27f0a2e1eb5" + "CENTRALINDIA:20210419T075727Z:0cb5a127-c8f5-4778-b418-cd565abade78" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 23 Apr 2020 01:35:56 GMT" + "Mon, 19 Apr 2021 07:57:27 GMT" ], "Content-Length": [ - "1382" + "1534" ], "Content-Type": [ "application/json; charset=utf-8" @@ -27643,35 +26241,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM910\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/virtualMachines/a2aVM910\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"vmId\": \"3fbd897d-70dd-4068-8411-573ac41e3906\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/RECRG910/providers/Microsoft.Compute/proximityPlacementGroups/PPG2-asr\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/disks/a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Network/networkInterfaces/a2aVM910\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM9100\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/virtualMachines/a2aVM9100\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"197e066d-e492-4ced-8bda-a4977e5011ef\",\r\n \"proximityPlacementGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/RECRG9100/providers/Microsoft.Compute/proximityPlacementGroups/PPG2-asr\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/disks/a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Network/networkInterfaces/a2aVM9100\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/switchprotection?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzkxMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAvc3dpdGNocHJvdGVjdGlvbj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/switchprotection?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljOTEwMC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXI5MTAwL3N3aXRjaHByb3RlY3Rpb24/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"replicationProtectedItemName\": \"a2aVM910\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910\",\r\n \"vmDisks\": [],\r\n \"vmManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Compute/disks/a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Storage/storageAccounts/rlog910\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\"\r\n }\r\n ],\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM910/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM910\",\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationPolicies/TestA2APolicy1910\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"replicationProtectedItemName\": \"a2aVM9100\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100\",\r\n \"vmDisks\": [],\r\n \"vmManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Compute/disks/a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Storage/storageAccounts/rlog9100\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\"\r\n }\r\n ],\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100\",\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationPolicies/TestA2APolicy19100\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM9100/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM9100\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps" + "b36bbf17-21da-4090-ad44-095206816498" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602759251)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207559251)\\/\",\"ClientRequestId\":\"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"084H+A2+me7VBu6MoknW1ToFSKyKn4NnyH0sokXK4Z8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618817850167)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422650167)\\/\",\"ClientRequestId\":\"f097341c-4b78-4261-b13c-85bea86bdaa5-2021-04-19 08:37:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UE1XjtWJMIBVb4vEmlwEL4Mho63dTpAvl/8w8GyywNA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1624" + "1640" ] }, "ResponseHeaders": { @@ -27682,41 +26280,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910/operationresults/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100/operationresults/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationOperationStatus/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10" + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationOperationStatus/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "b36bbf17-21da-4090-ad44-095206816498" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "97314060-5283-42b8-9016-2ac781732743" + "e78abde8-1a24-457b-a21b-69b221887d2c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T014600Z:97314060-5283-42b8-9016-2ac781732743" + "CENTRALINDIA:20210419T083730Z:e78abde8-1a24-457b-a21b-69b221887d2c" ], "Date": [ - "Thu, 23 Apr 2020 01:45:59 GMT" + "Mon, 19 Apr 2021 08:37:30 GMT" ], "Expires": [ "-1" @@ -27729,25 +26324,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c824cee-1f8a-4d48-a80d-26a4cb243324-2020-04-23 01:46:00Z-Ps" + "b36bbf17-21da-4090-ad44-095206816498" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602760285)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207560285)\\/\",\"ClientRequestId\":\"8c824cee-1f8a-4d48-a80d-26a4cb243324-2020-04-23 01:46:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FU6FmwUxO2ATpJIq7ke+zlE2/qmWMHcusWecj5CJ/G8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618817851061)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422651061)\\/\",\"ClientRequestId\":\"2977f1a1-4e07-4280-a57e-8825b23f3e8a-2021-04-19 08:37:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FifPGk7LfvKqxm7l5FcUFFmtP7oNwlDu6KQbEoWrGNw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27758,38 +26353,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "8c824cee-1f8a-4d48-a80d-26a4cb243324-2020-04-23 01:46:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b36bbf17-21da-4090-ad44-095206816498" ], "x-ms-correlation-request-id": [ - "220f0ed0-0831-46ea-804b-d18904f30db2" + "10f3d439-bc38-4071-85a0-a6e5b2dbdf01" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T014600Z:220f0ed0-0831-46ea-804b-d18904f30db2" + "CENTRALINDIA:20210419T083731Z:10f3d439-bc38-4071-85a0-a6e5b2dbdf01" ], "Date": [ - "Thu, 23 Apr 2020 01:46:00 GMT" + "Mon, 19 Apr 2021 08:37:31 GMT" ], "Content-Length": [ - "3434" + "3425" ], "Content-Type": [ "application/json" @@ -27798,29 +26390,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": null,\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": null,\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3dc7788-f057-42b6-a1e1-db7fa0b1f10e-2020-04-23 01:46:00Z-Ps" + "b4d25639-f045-4413-8115-71abb7441f11" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602760866)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207560866)\\/\",\"ClientRequestId\":\"a3dc7788-f057-42b6-a1e1-db7fa0b1f10e-2020-04-23 01:46:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fV1zJFRz6U8uxEx0jSeNyV0PYU+5CVyU6P8M/cCHZfs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618817851463)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422651463)\\/\",\"ClientRequestId\":\"cf64205b-6141-4b5c-947c-f9c24e474f5c-2021-04-19 08:37:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SwkauB2knfkFzJ1c/Lf5rExzbQ1xAO95FvMIgX/eUS8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27831,38 +26423,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a3dc7788-f057-42b6-a1e1-db7fa0b1f10e-2020-04-23 01:46:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b4d25639-f045-4413-8115-71abb7441f11" ], "x-ms-correlation-request-id": [ - "114b77b6-e6ee-42c9-956d-bae379ef235f" + "7288bb39-f06d-42b2-83ab-4d9d4d5e4031" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T014601Z:114b77b6-e6ee-42c9-956d-bae379ef235f" + "CENTRALINDIA:20210419T083731Z:7288bb39-f06d-42b2-83ab-4d9d4d5e4031" ], "Date": [ - "Thu, 23 Apr 2020 01:46:00 GMT" + "Mon, 19 Apr 2021 08:37:31 GMT" ], "Content-Length": [ - "3459" + "3450" ], "Content-Type": [ "application/json" @@ -27871,29 +26460,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:00.8742241Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": null,\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": null,\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "156a5c53-8b67-4be2-a1b9-107db5dd5ddc-2020-04-23 01:46:21Z-Ps" + "ad8e673f-b7ec-48b1-9e9a-f30e12c5fbdc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602781425)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207581425)\\/\",\"ClientRequestId\":\"156a5c53-8b67-4be2-a1b9-107db5dd5ddc-2020-04-23 01:46:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wrHj43GgpLr/7prQKibpvl+4MEzQxQ/xnkodJfPh2bo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618817871831)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422671831)\\/\",\"ClientRequestId\":\"94d4d03a-7736-4e61-9b12-8719087f3b50-2021-04-19 08:37:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Fb2r4Kvgi0IdjhyFlunLxjKepOqy5SLSDdeyTij29OE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27904,38 +26493,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11996" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "156a5c53-8b67-4be2-a1b9-107db5dd5ddc-2020-04-23 01:46:21Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ad8e673f-b7ec-48b1-9e9a-f30e12c5fbdc" ], "x-ms-correlation-request-id": [ - "018bc22f-a9d3-4434-96cc-12124b680a75" + "b5323a8e-98fc-493b-a570-91eab5136b50" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T014621Z:018bc22f-a9d3-4434-96cc-12124b680a75" + "CENTRALINDIA:20210419T083752Z:b5323a8e-98fc-493b-a570-91eab5136b50" ], "Date": [ - "Thu, 23 Apr 2020 01:46:21 GMT" + "Mon, 19 Apr 2021 08:37:51 GMT" ], "Content-Length": [ - "4277" + "3450" ], "Content-Type": [ "application/json" @@ -27944,29 +26530,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": null,\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": null,\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ea18e0b-bd4c-4eb1-9494-b14211a88a1d-2020-04-23 01:46:42Z-Ps" + "4d2f3087-b525-436c-89f8-e311125de493" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602802001)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207602001)\\/\",\"ClientRequestId\":\"2ea18e0b-bd4c-4eb1-9494-b14211a88a1d-2020-04-23 01:46:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zNXZVRT4fbsLfQMbg1kh0uBnZ70PjJP9jPC945Y8mgk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618817892210)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422692210)\\/\",\"ClientRequestId\":\"1da9f452-a666-4686-9e2c-714a4afaad9a-2021-04-19 08:38:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WOl0QxYbXZqjLI9Ne3kysLFi3DmsrzEh+fCD4GsgXw8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -27977,38 +26563,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11995" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2ea18e0b-bd4c-4eb1-9494-b14211a88a1d-2020-04-23 01:46:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4d2f3087-b525-436c-89f8-e311125de493" ], "x-ms-correlation-request-id": [ - "ef6eea59-935b-4f21-a158-357e79140e3f" + "2f2680b9-b3ba-441c-b63c-9efc49ebbf04" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T014642Z:ef6eea59-935b-4f21-a158-357e79140e3f" + "CENTRALINDIA:20210419T083812Z:2f2680b9-b3ba-441c-b63c-9efc49ebbf04" ], "Date": [ - "Thu, 23 Apr 2020 01:46:42 GMT" + "Mon, 19 Apr 2021 08:38:12 GMT" ], "Content-Length": [ - "4277" + "4276" ], "Content-Type": [ "application/json" @@ -28017,29 +26600,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": null,\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": null,\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39524e70-fa9e-48cc-95a8-246725c53037-2020-04-23 01:47:02Z-Ps" + "4d8aadfa-aaa8-4e34-9cd2-b7a695a7794f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602822604)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207622604)\\/\",\"ClientRequestId\":\"39524e70-fa9e-48cc-95a8-246725c53037-2020-04-23 01:47:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"72rH6vDnaTPO9Ye7J8m4jqXPKewMtPputg/gM3YGWUw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618817912591)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422712591)\\/\",\"ClientRequestId\":\"9553eb6f-f145-4b5e-a66a-91dc6da041a3-2021-04-19 08:38:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hBhseWkRFbBV+FG6jjbiDCr4e6qOZ52YoAgl8kKaS/o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28049,39 +26632,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "39524e70-fa9e-48cc-95a8-246725c53037-2020-04-23 01:47:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "4d8aadfa-aaa8-4e34-9cd2-b7a695a7794f" ], "x-ms-correlation-request-id": [ - "d5858bf0-4748-4a3f-8633-77c3c2d506c7" + "fc712895-0c3e-4a22-9342-ebd51783f5ab" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T014703Z:d5858bf0-4748-4a3f-8633-77c3c2d506c7" + "CENTRALINDIA:20210419T083832Z:fc712895-0c3e-4a22-9342-ebd51783f5ab" ], "Date": [ - "Thu, 23 Apr 2020 01:47:02 GMT" + "Mon, 19 Apr 2021 08:38:32 GMT" ], "Content-Length": [ - "4277" + "4276" ], "Content-Type": [ "application/json" @@ -28090,29 +26670,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": null,\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": null,\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "66f82013-4a45-4ad3-b10b-5305de030f5e-2020-04-23 01:47:23Z-Ps" + "80f71182-885a-4212-ba1b-9b8a5085acae" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602843328)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207643328)\\/\",\"ClientRequestId\":\"66f82013-4a45-4ad3-b10b-5305de030f5e-2020-04-23 01:47:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7j303R32/1zPjOm0lgYuZ2yGs88A8xxeILcEjiGT8W4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618817932967)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422732967)\\/\",\"ClientRequestId\":\"acb70216-7ad3-4405-87bb-1d61c9f25757-2021-04-19 08:38:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+zWEUUvWCg5BDWzzAL9Fg02L/ifeoO/J0SLLQilATL8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28123,38 +26703,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11993" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "66f82013-4a45-4ad3-b10b-5305de030f5e-2020-04-23 01:47:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "80f71182-885a-4212-ba1b-9b8a5085acae" ], "x-ms-correlation-request-id": [ - "8e6275d5-2c9b-4575-bb27-996ff7d902a6" + "6441eb58-209b-42b3-9f0a-461cda373e95" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T014725Z:8e6275d5-2c9b-4575-bb27-996ff7d902a6" + "CENTRALINDIA:20210419T083853Z:6441eb58-209b-42b3-9f0a-461cda373e95" ], "Date": [ - "Thu, 23 Apr 2020 01:47:24 GMT" + "Mon, 19 Apr 2021 08:38:53 GMT" ], "Content-Length": [ - "4560" + "4276" ], "Content-Type": [ "application/json" @@ -28163,29 +26740,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": null,\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e079af5-48b3-4930-8f7c-62a306780944-2020-04-23 01:47:45Z-Ps" + "2e3290ac-87ef-4cb1-9818-cf9d22872770" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602865258)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207665258)\\/\",\"ClientRequestId\":\"2e079af5-48b3-4930-8f7c-62a306780944-2020-04-23 01:47:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9GL3mmVUxPaFcAIYrMD2qVqWGj3Qe+CiWLXCSNuB0og=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618817953370)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422753370)\\/\",\"ClientRequestId\":\"64c929ca-c7d6-4b35-a9e8-63e66a4b8867-2021-04-19 08:39:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"N9BhKfp1Yg+444iFA3z9AynZD2bJRr5iO6e+NqeeDh8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28196,38 +26773,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11992" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2e079af5-48b3-4930-8f7c-62a306780944-2020-04-23 01:47:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2e3290ac-87ef-4cb1-9818-cf9d22872770" ], "x-ms-correlation-request-id": [ - "2bb3dde9-2680-4b66-80dc-e4d24c867c5e" + "997b0fd4-734e-4427-831d-ab24a7c8324d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T014745Z:2bb3dde9-2680-4b66-80dc-e4d24c867c5e" + "CENTRALINDIA:20210419T083913Z:997b0fd4-734e-4427-831d-ab24a7c8324d" ], "Date": [ - "Thu, 23 Apr 2020 01:47:45 GMT" + "Mon, 19 Apr 2021 08:39:13 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -28236,29 +26810,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdbaa1d8-6411-4fc6-b0c5-bc4428b07119-2020-04-23 01:48:05Z-Ps" + "3490a39c-e951-4fa9-8e09-5470eb71eddc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602885861)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207685861)\\/\",\"ClientRequestId\":\"cdbaa1d8-6411-4fc6-b0c5-bc4428b07119-2020-04-23 01:48:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"co4Ea73L4L44mh1HhB5+jlvAYalsZEdrXVqsjd7ZS1c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618817973740)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422773740)\\/\",\"ClientRequestId\":\"c5752b8d-2bb2-4ef8-bee5-933a9c9ef779-2021-04-19 08:39:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DFswnmy8XLoozhtY2E1R5Hd7a0OvP/lquRVqZRz0t28=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28269,38 +26843,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11991" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "cdbaa1d8-6411-4fc6-b0c5-bc4428b07119-2020-04-23 01:48:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3490a39c-e951-4fa9-8e09-5470eb71eddc" ], "x-ms-correlation-request-id": [ - "41911e0f-009c-4dda-a466-2a301d63301e" + "a6428c7d-aae8-45fb-8961-8672ed5cd71f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T014806Z:41911e0f-009c-4dda-a466-2a301d63301e" + "CENTRALINDIA:20210419T083934Z:a6428c7d-aae8-45fb-8961-8672ed5cd71f" ], "Date": [ - "Thu, 23 Apr 2020 01:48:05 GMT" + "Mon, 19 Apr 2021 08:39:33 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -28309,29 +26880,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d58bbf68-1281-4ed9-afa1-3939de8583fe-2020-04-23 01:48:26Z-Ps" + "66c09f1f-3394-426f-9d17-7b1c78bd42ee" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602906695)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207706695)\\/\",\"ClientRequestId\":\"d58bbf68-1281-4ed9-afa1-3939de8583fe-2020-04-23 01:48:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BDR1eXnlM+TdwNi6XRZ/dmCYnxZRYVIJYHnTQQT9nuE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618817994146)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422794146)\\/\",\"ClientRequestId\":\"f929c6bd-15d7-4de0-a25d-0036ccf2950b-2021-04-19 08:39:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uf7aHPeMz7aqfszm3sUs9waa7T3vvWnkLTuBh++4XYE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28341,39 +26912,106 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d58bbf68-1281-4ed9-afa1-3939de8583fe-2020-04-23 01:48:26Z-Ps" + "66c09f1f-3394-426f-9d17-7b1c78bd42ee" + ], + "x-ms-correlation-request-id": [ + "d088a51a-af27-4560-a2e5-466e80b465b9" + ], + "x-ms-routing-request-id": [ + "CENTRALINDIA:20210419T083954Z:d088a51a-af27-4560-a2e5-466e80b465b9" + ], + "Date": [ + "Mon, 19 Apr 2021 08:39:53 GMT" + ], + "Content-Length": [ + "4564" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f987918e-22dc-436c-85ba-c4cc74ab5416" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618818014537)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422814537)\\/\",\"ClientRequestId\":\"5c2399fa-b13d-41bc-8197-13291b97b98d-2021-04-19 08:40:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0H0smP+feIStSpE39fhFNysVMaLMo1PzfGwVB7xkV3g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "f987918e-22dc-436c-85ba-c4cc74ab5416" ], "x-ms-correlation-request-id": [ - "37b95f19-377c-452c-bb70-c03bf74564fa" + "9dadc9b1-308c-44a6-ae5a-408af19d48a6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T014827Z:37b95f19-377c-452c-bb70-c03bf74564fa" + "CENTRALINDIA:20210419T084014Z:9dadc9b1-308c-44a6-ae5a-408af19d48a6" ], "Date": [ - "Thu, 23 Apr 2020 01:48:26 GMT" + "Mon, 19 Apr 2021 08:40:14 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -28382,29 +27020,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3708b43e-25c1-4c7a-81dc-86c82b28d961-2020-04-23 01:48:47Z-Ps" + "27e8b75f-ad39-4b81-be4d-b9d1cb65b21d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602927386)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207727386)\\/\",\"ClientRequestId\":\"3708b43e-25c1-4c7a-81dc-86c82b28d961-2020-04-23 01:48:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/h//5c+srj3dFzffVKruue2QL/yPkY/o8t1pnWdwR8g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818034912)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422834912)\\/\",\"ClientRequestId\":\"ff591650-5dd5-420f-bc90-2290b1ebda97-2021-04-19 08:40:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cafBGRmeU9y8eS0AyQWyDcuzc71uG3rU6k/4fY7L/Zo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28415,38 +27053,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11988" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3708b43e-25c1-4c7a-81dc-86c82b28d961-2020-04-23 01:48:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "27e8b75f-ad39-4b81-be4d-b9d1cb65b21d" ], "x-ms-correlation-request-id": [ - "f157bb83-7d99-4561-a139-507ab6cf566c" + "33561783-006e-43f2-a173-7ef9d4e9d492" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T014849Z:f157bb83-7d99-4561-a139-507ab6cf566c" + "CENTRALINDIA:20210419T084035Z:33561783-006e-43f2-a173-7ef9d4e9d492" ], "Date": [ - "Thu, 23 Apr 2020 01:48:48 GMT" + "Mon, 19 Apr 2021 08:40:34 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -28455,29 +27090,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a27df902-cc4f-4b6f-b127-989cf95a34e2-2020-04-23 01:49:09Z-Ps" + "f3d10aed-4ec2-428c-b694-3336d034b4e8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602949244)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207749244)\\/\",\"ClientRequestId\":\"a27df902-cc4f-4b6f-b127-989cf95a34e2-2020-04-23 01:49:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"U1++OSQXQi+ffT/u92d4GZ9SwhVAVGFCgBhQi0vx9TM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818055358)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422855358)\\/\",\"ClientRequestId\":\"b1381bfa-750b-4ef4-9baa-123bbddc6759-2021-04-19 08:40:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QNyxGnnBtLLX7UVFwRLaRY0TRq0vWpkDrweH1fRr/Co=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28488,38 +27123,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11987" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a27df902-cc4f-4b6f-b127-989cf95a34e2-2020-04-23 01:49:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f3d10aed-4ec2-428c-b694-3336d034b4e8" ], "x-ms-correlation-request-id": [ - "0c98ad57-9b77-4873-8648-c78f81388375" + "ea991762-acd3-4343-8181-ade7efc6d07b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T014909Z:0c98ad57-9b77-4873-8648-c78f81388375" + "CENTRALINDIA:20210419T084055Z:ea991762-acd3-4343-8181-ade7efc6d07b" ], "Date": [ - "Thu, 23 Apr 2020 01:49:09 GMT" + "Mon, 19 Apr 2021 08:40:55 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -28528,29 +27160,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a7b08e2-bea4-4138-968e-74f06cfcc01d-2020-04-23 01:49:30Z-Ps" + "cbc6356e-3206-4e1d-a4b9-8f4f7e270f63" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602970155)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207770155)\\/\",\"ClientRequestId\":\"7a7b08e2-bea4-4138-968e-74f06cfcc01d-2020-04-23 01:49:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"w8Nfjyl+0A6mdL9iG7C/Q3Se+t04q0oQV2F85v7IolE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818075758)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422875758)\\/\",\"ClientRequestId\":\"9a5eb86e-ea8c-4a4d-a9ca-a4a0673e6052-2021-04-19 08:41:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MqrUtezD8ik9rsV5DZ7b/1QqAmdQOp1pWVRonGuAP3M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28561,38 +27193,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11986" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7a7b08e2-bea4-4138-968e-74f06cfcc01d-2020-04-23 01:49:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cbc6356e-3206-4e1d-a4b9-8f4f7e270f63" ], "x-ms-correlation-request-id": [ - "1b0fa0a4-3f59-47a1-8805-877068d80319" + "4937b02d-1cde-4605-b65a-8aa1679bf9a8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T014930Z:1b0fa0a4-3f59-47a1-8805-877068d80319" + "CENTRALINDIA:20210419T084116Z:4937b02d-1cde-4605-b65a-8aa1679bf9a8" ], "Date": [ - "Thu, 23 Apr 2020 01:49:29 GMT" + "Mon, 19 Apr 2021 08:41:16 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -28601,29 +27230,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b74cf89d-5161-435f-8660-3be2fc690a20-2020-04-23 01:49:50Z-Ps" + "00970340-c8c8-44b6-900f-fc071dc69652" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587602990870)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207790870)\\/\",\"ClientRequestId\":\"b74cf89d-5161-435f-8660-3be2fc690a20-2020-04-23 01:49:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"e4SWBt9Phs3SB6Ee4Q98zzOPLFEpjUfiiCZOyrff8zA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818096132)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422896132)\\/\",\"ClientRequestId\":\"7792de37-6f09-4b61-8249-968310655718-2021-04-19 08:41:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dj/Bu0Wv+07HklEIQw2Qd07SZa/PlB8/fjxp0PMyxAg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28633,39 +27262,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b74cf89d-5161-435f-8660-3be2fc690a20-2020-04-23 01:49:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "00970340-c8c8-44b6-900f-fc071dc69652" ], "x-ms-correlation-request-id": [ - "e91a734f-ded5-4e34-a475-f8b885d06d37" + "a9597c6f-4d47-48c7-a011-f2ce9fdbcddd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T014951Z:e91a734f-ded5-4e34-a475-f8b885d06d37" + "CENTRALINDIA:20210419T084136Z:a9597c6f-4d47-48c7-a011-f2ce9fdbcddd" ], "Date": [ - "Thu, 23 Apr 2020 01:49:51 GMT" + "Mon, 19 Apr 2021 08:41:35 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -28674,29 +27300,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac464b43-58cb-4bef-a2af-f7820462f862-2020-04-23 01:50:11Z-Ps" + "b2bfc677-5301-4f8f-b193-56fb15e497b5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603011497)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207811497)\\/\",\"ClientRequestId\":\"ac464b43-58cb-4bef-a2af-f7820462f862-2020-04-23 01:50:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FCvw3KEyMQROzHRGzmis+6ZvKd7XAEIMUlnLwkGqOVI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818116522)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422916522)\\/\",\"ClientRequestId\":\"55b470a0-89d9-488d-ab38-d543e5f4be87-2021-04-19 08:41:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yeDJ3s9smBdSE3N+hhyRASN0PGhUmmzF7rDaubXjlyY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28707,38 +27333,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11984" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ac464b43-58cb-4bef-a2af-f7820462f862-2020-04-23 01:50:11Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b2bfc677-5301-4f8f-b193-56fb15e497b5" ], "x-ms-correlation-request-id": [ - "4a9da1fa-1017-48be-b13b-8c4cb7ebe77b" + "fab37e24-4800-452a-bf28-dc0acf2cb53b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015013Z:4a9da1fa-1017-48be-b13b-8c4cb7ebe77b" + "CENTRALINDIA:20210419T084156Z:fab37e24-4800-452a-bf28-dc0acf2cb53b" ], "Date": [ - "Thu, 23 Apr 2020 01:50:12 GMT" + "Mon, 19 Apr 2021 08:41:56 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -28747,29 +27370,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf0e3a49-fe9e-4ce0-9efc-0e350b7a6f62-2020-04-23 01:50:33Z-Ps" + "2f3e073e-95f5-485d-8ceb-1a5736afab07" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603033249)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207833249)\\/\",\"ClientRequestId\":\"bf0e3a49-fe9e-4ce0-9efc-0e350b7a6f62-2020-04-23 01:50:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8mo7155xkybV/jqVfESApgflVPYgKUyS/dRt76Rw1OI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818136907)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422936907)\\/\",\"ClientRequestId\":\"f6612130-9bba-4ed2-8c89-d69515180f25-2021-04-19 08:42:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VicLWULOjBPhdHapVQ+yr655RQNjv4o16zSz9bdhlxs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28780,38 +27403,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11983" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "bf0e3a49-fe9e-4ce0-9efc-0e350b7a6f62-2020-04-23 01:50:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2f3e073e-95f5-485d-8ceb-1a5736afab07" ], "x-ms-correlation-request-id": [ - "04fd5ac9-9d05-4e22-901e-6290b4c5de3a" + "b5875341-84cf-4d8a-8ffa-a14330386239" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015033Z:04fd5ac9-9d05-4e22-901e-6290b4c5de3a" + "CENTRALINDIA:20210419T084217Z:b5875341-84cf-4d8a-8ffa-a14330386239" ], "Date": [ - "Thu, 23 Apr 2020 01:50:33 GMT" + "Mon, 19 Apr 2021 08:42:16 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -28820,29 +27440,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e51370d-ca4e-46e2-b5df-2f9fad625d88-2020-04-23 01:50:53Z-Ps" + "a494acc1-a752-4bb5-9de5-53b0bf73ffa2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603053854)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207853854)\\/\",\"ClientRequestId\":\"9e51370d-ca4e-46e2-b5df-2f9fad625d88-2020-04-23 01:50:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IkN8c4NAKZzOf3/JPkHJg2dO/U9SX2D7gZEuFTHDf/8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818157270)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422957270)\\/\",\"ClientRequestId\":\"5eb780f4-6334-4f48-831c-077b8616bb27-2021-04-19 08:42:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YU5jTRN6WQEGKhrg6JqhXQMrZ6qFITT63p3GHb3JgLA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28853,38 +27473,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11982" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9e51370d-ca4e-46e2-b5df-2f9fad625d88-2020-04-23 01:50:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a494acc1-a752-4bb5-9de5-53b0bf73ffa2" ], "x-ms-correlation-request-id": [ - "21b3a9d4-2723-47a7-8eb0-0114b3e8e9b9" + "f4a5245d-2325-4a73-8acc-da7a4da6fe9c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015054Z:21b3a9d4-2723-47a7-8eb0-0114b3e8e9b9" + "CENTRALINDIA:20210419T084237Z:f4a5245d-2325-4a73-8acc-da7a4da6fe9c" ], "Date": [ - "Thu, 23 Apr 2020 01:50:53 GMT" + "Mon, 19 Apr 2021 08:42:37 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -28893,29 +27510,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2181ce0c-ac42-4342-955b-b10a9a27ad3d-2020-04-23 01:51:14Z-Ps" + "2ca1391e-5cfc-4d71-8aae-3ea4922dc848" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603074436)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207874436)\\/\",\"ClientRequestId\":\"2181ce0c-ac42-4342-955b-b10a9a27ad3d-2020-04-23 01:51:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Xz5yfaQuDp0QGtsBhXAyhhFvhvew4q30lWl7W3dQx/4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818177696)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422977696)\\/\",\"ClientRequestId\":\"b4ab4b36-9d6d-4a1e-bb38-3a95fcd9297b-2021-04-19 08:42:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hyVnmnWtcLev/4r5YkgDcOZoZpZQPyHwwln6HJnnC4M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28925,39 +27542,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2181ce0c-ac42-4342-955b-b10a9a27ad3d-2020-04-23 01:51:14Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "2ca1391e-5cfc-4d71-8aae-3ea4922dc848" ], "x-ms-correlation-request-id": [ - "3c84505b-fae1-4f9a-bebc-2b2c0b17ef06" + "852f260c-b175-4b6a-82c7-f01ca63917e3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015115Z:3c84505b-fae1-4f9a-bebc-2b2c0b17ef06" + "CENTRALINDIA:20210419T084257Z:852f260c-b175-4b6a-82c7-f01ca63917e3" ], "Date": [ - "Thu, 23 Apr 2020 01:51:14 GMT" + "Mon, 19 Apr 2021 08:42:57 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -28966,29 +27580,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be0a6a67-72f8-410c-9f88-e9ae358004bf-2020-04-23 01:51:35Z-Ps" + "d62405ec-bd9d-4343-a48f-de21eef80260" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603095184)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207895184)\\/\",\"ClientRequestId\":\"be0a6a67-72f8-410c-9f88-e9ae358004bf-2020-04-23 01:51:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IfX7OKSKAyE7vJs4avCyO+p0dgoICQ8ibk4uQuE8js8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818198080)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619422998080)\\/\",\"ClientRequestId\":\"6939103b-3183-4ba8-9068-9ea0983fa9ca-2021-04-19 08:43:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AyH4DGC324zIcTyP5Wm35gDRicXghNw4B/426wQ7ngg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -28999,38 +27613,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11980" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "be0a6a67-72f8-410c-9f88-e9ae358004bf-2020-04-23 01:51:35Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d62405ec-bd9d-4343-a48f-de21eef80260" ], "x-ms-correlation-request-id": [ - "784f893a-e301-40ea-9f51-97f7ced0d10a" + "71ac72cc-c038-4b7a-b09a-96e3bb3ac300" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015137Z:784f893a-e301-40ea-9f51-97f7ced0d10a" + "CENTRALINDIA:20210419T084318Z:71ac72cc-c038-4b7a-b09a-96e3bb3ac300" ], "Date": [ - "Thu, 23 Apr 2020 01:51:37 GMT" + "Mon, 19 Apr 2021 08:43:17 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -29039,29 +27650,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69556e42-b76c-4966-be51-3753193a189b-2020-04-23 01:51:57Z-Ps" + "96b1d492-4e27-477e-9215-5d83082191f0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603117454)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207917454)\\/\",\"ClientRequestId\":\"69556e42-b76c-4966-be51-3753193a189b-2020-04-23 01:51:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VR/O79bejWWMQ9TaRdA6OC1bM0gn3kJnqom0Mc6SPXo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818218469)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423018469)\\/\",\"ClientRequestId\":\"4d6adac4-c8e8-42be-8739-1986a9bdf36b-2021-04-19 08:43:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bGx0M9mK/i5gc0Gtcyk45JcJdW1sNh+0ucd7has8VGA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29071,39 +27682,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "69556e42-b76c-4966-be51-3753193a189b-2020-04-23 01:51:57Z-Ps" + "96b1d492-4e27-477e-9215-5d83082191f0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" ], "x-ms-correlation-request-id": [ - "ef60d411-3ad8-4fc5-93c0-e0c973f51eee" + "bd2b5129-83ee-481e-b1d9-2c27214d64cd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015157Z:ef60d411-3ad8-4fc5-93c0-e0c973f51eee" + "CENTRALINDIA:20210419T084338Z:bd2b5129-83ee-481e-b1d9-2c27214d64cd" ], "Date": [ - "Thu, 23 Apr 2020 01:51:57 GMT" + "Mon, 19 Apr 2021 08:43:38 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -29112,29 +27720,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "936d08ae-14bb-4dd6-950a-f0ef8bd78552-2020-04-23 01:52:18Z-Ps" + "d4e81ed1-cd81-4dd7-992e-56dea64f397c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603138057)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207938057)\\/\",\"ClientRequestId\":\"936d08ae-14bb-4dd6-950a-f0ef8bd78552-2020-04-23 01:52:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ycAbls+FE6nKmMH5LJeFl4cXY3JXOYa3AJXUlMEAe98=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818238832)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423038832)\\/\",\"ClientRequestId\":\"88e1f4fc-910a-45de-95d1-8614d2c37012-2021-04-19 08:43:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KdYf/B3gcMYw7+tsN6lCxIbtCJ5EbvnOPLw065jKnIs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29145,38 +27753,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11978" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "936d08ae-14bb-4dd6-950a-f0ef8bd78552-2020-04-23 01:52:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d4e81ed1-cd81-4dd7-992e-56dea64f397c" ], "x-ms-correlation-request-id": [ - "c65d61d4-b999-48bc-a1ac-6d2ba5cac07e" + "90fa0ee6-871b-4997-9fa3-830fc28e4efd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015226Z:c65d61d4-b999-48bc-a1ac-6d2ba5cac07e" + "CENTRALINDIA:20210419T084400Z:90fa0ee6-871b-4997-9fa3-830fc28e4efd" ], "Date": [ - "Thu, 23 Apr 2020 01:52:25 GMT" + "Mon, 19 Apr 2021 08:43:59 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -29185,29 +27790,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f541af7c-cdb8-49ae-afcd-794c4126de70-2020-04-23 01:52:46Z-Ps" + "ec04b61f-4dd8-4d60-8444-2b339b6f34ec" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603166746)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207966746)\\/\",\"ClientRequestId\":\"f541af7c-cdb8-49ae-afcd-794c4126de70-2020-04-23 01:52:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jJMxQd9+qU5VP0/LRfKzu07F3vC/BL26Iu26yoNH0t0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818260572)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423060572)\\/\",\"ClientRequestId\":\"000fe315-d666-48ac-a8c9-c79825ab4445-2021-04-19 08:44:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5fhucMQgHG5YBfn7vHXakQ7mezbHQwi7xCWB2rRzVKI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29217,39 +27822,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f541af7c-cdb8-49ae-afcd-794c4126de70-2020-04-23 01:52:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "ec04b61f-4dd8-4d60-8444-2b339b6f34ec" ], "x-ms-correlation-request-id": [ - "b0414dc7-48ec-441b-a97a-7fd457fb1bfa" + "c3e78cea-d4e5-4836-a75e-bb1c1743b171" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015248Z:b0414dc7-48ec-441b-a97a-7fd457fb1bfa" + "CENTRALINDIA:20210419T084420Z:c3e78cea-d4e5-4836-a75e-bb1c1743b171" ], "Date": [ - "Thu, 23 Apr 2020 01:52:47 GMT" + "Mon, 19 Apr 2021 08:44:20 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -29258,29 +27860,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ceb6104d-a1fc-415a-888b-d0d2c45a6f60-2020-04-23 01:53:08Z-Ps" + "7b022547-b075-4ecc-9759-a4422c675ace" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603188307)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588207988307)\\/\",\"ClientRequestId\":\"ceb6104d-a1fc-415a-888b-d0d2c45a6f60-2020-04-23 01:53:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wNFuUJ5BXlPReGQUK87t+WHKcRfx7DQ0zx099E9XUwo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818280965)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423080965)\\/\",\"ClientRequestId\":\"97938c85-0ce6-4ef7-b0da-6d981b6c421c-2021-04-19 08:44:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Bv+uy2wIf238hJJqkBndYL90ta5XxGscLpZ1n2Iw/qo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29291,38 +27893,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11976" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ceb6104d-a1fc-415a-888b-d0d2c45a6f60-2020-04-23 01:53:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7b022547-b075-4ecc-9759-a4422c675ace" ], "x-ms-correlation-request-id": [ - "a71ea3a1-838e-4a26-955a-dd82240ba94f" + "91bb1279-316f-429a-8744-4248b500291d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015309Z:a71ea3a1-838e-4a26-955a-dd82240ba94f" + "CENTRALINDIA:20210419T084441Z:91bb1279-316f-429a-8744-4248b500291d" ], "Date": [ - "Thu, 23 Apr 2020 01:53:09 GMT" + "Mon, 19 Apr 2021 08:44:40 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -29331,29 +27930,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8f6ed2e-479c-4ee8-89ab-f95679856edc-2020-04-23 01:53:30Z-Ps" + "afffdc6e-3f05-4577-8aa1-406addb44244" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603210024)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588208010024)\\/\",\"ClientRequestId\":\"a8f6ed2e-479c-4ee8-89ab-f95679856edc-2020-04-23 01:53:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1gR8+rEorPlrbdY5d7WLwXN1da8KwFQ5HVIv0LGiNrg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818301346)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423101346)\\/\",\"ClientRequestId\":\"d2b6fddc-8e77-411b-8353-d1be358f68bb-2021-04-19 08:45:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kFeL26iJzlOjbmX4pvK8um/u04tdqKF+i5FLMW0WQ1o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29364,38 +27963,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11975" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a8f6ed2e-479c-4ee8-89ab-f95679856edc-2020-04-23 01:53:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "afffdc6e-3f05-4577-8aa1-406addb44244" ], "x-ms-correlation-request-id": [ - "c3ea3ed0-9876-4bdc-ba85-6e3dd325abee" + "fe594dbf-9294-43e0-a1c6-dcd3f3e7e3ff" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015331Z:c3ea3ed0-9876-4bdc-ba85-6e3dd325abee" + "CENTRALINDIA:20210419T084501Z:fe594dbf-9294-43e0-a1c6-dcd3f3e7e3ff" ], "Date": [ - "Thu, 23 Apr 2020 01:53:31 GMT" + "Mon, 19 Apr 2021 08:45:01 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -29404,29 +28000,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dea9abd4-a0ba-4fc9-9159-02df9bc0cdc8-2020-04-23 01:53:51Z-Ps" + "97ed3c31-6eb3-4649-8999-eac2cc68d52d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603231802)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588208031802)\\/\",\"ClientRequestId\":\"dea9abd4-a0ba-4fc9-9159-02df9bc0cdc8-2020-04-23 01:53:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wsemUdlqOtJdvW/RhHQ0YK9dsJusEd5yWrKM4VZNYpU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818321743)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423121743)\\/\",\"ClientRequestId\":\"b11e4ff7-3308-4089-8866-0403c9aa3355-2021-04-19 08:45:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Hx30Emuot7Nbiy6kXqUydBKKk/1EQnw6yx1cZP522ZA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29437,38 +28033,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11974" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "dea9abd4-a0ba-4fc9-9159-02df9bc0cdc8-2020-04-23 01:53:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "97ed3c31-6eb3-4649-8999-eac2cc68d52d" ], "x-ms-correlation-request-id": [ - "fcd4bcc9-4ab8-48e0-b022-3070638f9dc1" + "a422c195-98fc-416f-aaf0-645d9b901131" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015352Z:fcd4bcc9-4ab8-48e0-b022-3070638f9dc1" + "CENTRALINDIA:20210419T084522Z:a422c195-98fc-416f-aaf0-645d9b901131" ], "Date": [ - "Thu, 23 Apr 2020 01:53:52 GMT" + "Mon, 19 Apr 2021 08:45:21 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -29477,29 +28070,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6517d0be-f299-4642-9543-095921e394e3-2020-04-23 01:54:12Z-Ps" + "2d70e7d6-b88c-4c47-912e-366813476339" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603252968)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588208052968)\\/\",\"ClientRequestId\":\"6517d0be-f299-4642-9543-095921e394e3-2020-04-23 01:54:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ix5jyrcHgRHcdsNvk47zHt/sDMEBuRTek+ble6Uqbe0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818342113)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423142113)\\/\",\"ClientRequestId\":\"d42475c5-918e-435e-af12-62136bb8dbb6-2021-04-19 08:45:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VRPhnvqgqeeYbzc5TMb+7VlP4mf3a0st+M6QWhb5hBA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29509,39 +28102,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "6517d0be-f299-4642-9543-095921e394e3-2020-04-23 01:54:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "2d70e7d6-b88c-4c47-912e-366813476339" ], "x-ms-correlation-request-id": [ - "1e379c62-a522-425f-8022-50669061d3e9" + "83d601a3-be9b-4a2e-9407-e74fc3b1eabf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015413Z:1e379c62-a522-425f-8022-50669061d3e9" + "CENTRALINDIA:20210419T084542Z:83d601a3-be9b-4a2e-9407-e74fc3b1eabf" ], "Date": [ - "Thu, 23 Apr 2020 01:54:13 GMT" + "Mon, 19 Apr 2021 08:45:42 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -29550,29 +28140,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19ec6abd-c96e-4a39-8251-0c561153ecd1-2020-04-23 01:54:34Z-Ps" + "f9b2fd9f-dbd6-40ff-aa9e-9389ab084443" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603274120)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588208074120)\\/\",\"ClientRequestId\":\"19ec6abd-c96e-4a39-8251-0c561153ecd1-2020-04-23 01:54:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Q9FAxDsazv2/Xl2gs/OIZ89cIuUomhYJcvEoTKTao9Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818362487)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423162487)\\/\",\"ClientRequestId\":\"4035603e-fd56-4791-9820-b059ca8b9baa-2021-04-19 08:46:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"O1+berYH7ako/MBHTvcGxwXWGtWPxTH+TXG2J/axMYI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29583,38 +28173,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11972" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "19ec6abd-c96e-4a39-8251-0c561153ecd1-2020-04-23 01:54:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f9b2fd9f-dbd6-40ff-aa9e-9389ab084443" ], "x-ms-correlation-request-id": [ - "e3ad171d-1e4b-4990-9dd2-54a66f4841a3" + "613e2178-f4a5-4861-850c-0156ee65370d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015436Z:e3ad171d-1e4b-4990-9dd2-54a66f4841a3" + "CENTRALINDIA:20210419T084602Z:613e2178-f4a5-4861-850c-0156ee65370d" ], "Date": [ - "Thu, 23 Apr 2020 01:54:36 GMT" + "Mon, 19 Apr 2021 08:46:01 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -29623,29 +28210,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d471200d-1fe1-4d1b-a3a6-1cde221708ab-2020-04-23 01:54:56Z-Ps" + "5bc6026c-3622-4761-a198-4c0cb00aecb7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603296213)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588208096213)\\/\",\"ClientRequestId\":\"d471200d-1fe1-4d1b-a3a6-1cde221708ab-2020-04-23 01:54:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ktw0bR/X/9WOGVLKdz+CN+BNi/GLFgktlLchMsifZv4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818382878)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423182878)\\/\",\"ClientRequestId\":\"b9089505-6d4b-4307-97f0-140d394de172-2021-04-19 08:46:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"x4K5RsOAi3HXMUdVW2zv32cnbEDF3ChsQVT7cGcXPtg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29656,38 +28243,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11971" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d471200d-1fe1-4d1b-a3a6-1cde221708ab-2020-04-23 01:54:56Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5bc6026c-3622-4761-a198-4c0cb00aecb7" ], "x-ms-correlation-request-id": [ - "6676eb80-cf72-42dc-831c-2f9fd3655ef9" + "10e8e386-f0da-46ad-b763-867e38681a5b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015456Z:6676eb80-cf72-42dc-831c-2f9fd3655ef9" + "CENTRALINDIA:20210419T084623Z:10e8e386-f0da-46ad-b763-867e38681a5b" ], "Date": [ - "Thu, 23 Apr 2020 01:54:56 GMT" + "Mon, 19 Apr 2021 08:46:22 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -29696,29 +28280,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db329f35-6bc6-4c2c-813c-89aeff49ac9d-2020-04-23 01:55:16Z-Ps" + "c460557e-a815-4580-80e4-44cd472aa716" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603316879)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588208116879)\\/\",\"ClientRequestId\":\"db329f35-6bc6-4c2c-813c-89aeff49ac9d-2020-04-23 01:55:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ihY0ve28HFPsUdGQLQroN/o9WgWPWTyL9e44ISUnR0s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818403251)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423203251)\\/\",\"ClientRequestId\":\"5e477864-21cf-497f-b344-c225baabe1d9-2021-04-19 08:46:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CBV4V77Cdzst+jMTtyLcwfwS+r0kHBYP/Nng49KG8wk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29729,38 +28313,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11970" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "db329f35-6bc6-4c2c-813c-89aeff49ac9d-2020-04-23 01:55:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c460557e-a815-4580-80e4-44cd472aa716" ], "x-ms-correlation-request-id": [ - "0d2f26d5-0148-4b92-a043-a3c1361007c0" + "7798350f-305a-4c50-b08e-b9d9880b368c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015517Z:0d2f26d5-0148-4b92-a043-a3c1361007c0" + "CENTRALINDIA:20210419T084643Z:7798350f-305a-4c50-b08e-b9d9880b368c" ], "Date": [ - "Thu, 23 Apr 2020 01:55:16 GMT" + "Mon, 19 Apr 2021 08:46:43 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -29769,29 +28350,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3646560-bfc9-4cea-b8cd-1d87db2860e3-2020-04-23 01:55:37Z-Ps" + "49d1693e-9bbb-4d6c-99d7-bd8a1f9e07be" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603337473)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588208137473)\\/\",\"ClientRequestId\":\"f3646560-bfc9-4cea-b8cd-1d87db2860e3-2020-04-23 01:55:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RZYAqHZAUzYED/b53UgGDkJdV/S5JTDNaH2+w2hDGWA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818423632)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423223632)\\/\",\"ClientRequestId\":\"b72066de-8289-41d5-89f1-92a705bb2d26-2021-04-19 08:47:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jSgm+6bHAkvR4ortZwQrbH4y48BRnrpP10COG1q6uG4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29802,38 +28383,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11969" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f3646560-bfc9-4cea-b8cd-1d87db2860e3-2020-04-23 01:55:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "49d1693e-9bbb-4d6c-99d7-bd8a1f9e07be" ], "x-ms-correlation-request-id": [ - "2ca84692-83b7-4fc4-9587-7595e33717b5" + "50bc61d2-97bc-44f4-8588-88e2f05eb2ef" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015548Z:2ca84692-83b7-4fc4-9587-7595e33717b5" + "CENTRALINDIA:20210419T084703Z:50bc61d2-97bc-44f4-8588-88e2f05eb2ef" ], "Date": [ - "Thu, 23 Apr 2020 01:55:47 GMT" + "Mon, 19 Apr 2021 08:47:03 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -29842,29 +28420,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e13bfdb-b0cf-4a3b-a9b5-0dd7ff9c3f99-2020-04-23 01:56:08Z-Ps" + "9d3dd31b-136a-48a3-9353-88b4f3b69be4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603368480)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588208168480)\\/\",\"ClientRequestId\":\"7e13bfdb-b0cf-4a3b-a9b5-0dd7ff9c3f99-2020-04-23 01:56:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SQ+R3/iWxmD+BIKJuey7Gz5SCR52PoVz8ZielQ46xEk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818444016)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423244016)\\/\",\"ClientRequestId\":\"5101b31b-530b-4687-b79f-b6089ffb7288-2021-04-19 08:47:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JHb/496kG33BJup7rO4BG/s7WTpxo7u017QrTlXHl50=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29875,38 +28453,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11968" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7e13bfdb-b0cf-4a3b-a9b5-0dd7ff9c3f99-2020-04-23 01:56:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9d3dd31b-136a-48a3-9353-88b4f3b69be4" ], "x-ms-correlation-request-id": [ - "628bc278-d310-452c-919a-7a8e668386c9" + "2ca01c37-786d-46da-9d74-461a4810b7b3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015610Z:628bc278-d310-452c-919a-7a8e668386c9" + "CENTRALINDIA:20210419T084724Z:2ca01c37-786d-46da-9d74-461a4810b7b3" ], "Date": [ - "Thu, 23 Apr 2020 01:56:10 GMT" + "Mon, 19 Apr 2021 08:47:24 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -29915,29 +28490,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d634a6c8-ea9a-404a-a94c-1d3c3467a58b-2020-04-23 01:56:30Z-Ps" + "817bc696-3127-4f68-a2df-62b746265340" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603390745)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588208190745)\\/\",\"ClientRequestId\":\"d634a6c8-ea9a-404a-a94c-1d3c3467a58b-2020-04-23 01:56:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dZQk7XJmDQZ/JcVtA/BFTXPGPVeHw+JKdhKTpG74ia4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818464461)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423264461)\\/\",\"ClientRequestId\":\"2374ce61-2881-4286-b42a-2f47ecc7805f-2021-04-19 08:47:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uKaPEAFr7drFFTminkoiyd9WMl2OcgNwiZPS6+GxAYg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -29948,38 +28523,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11967" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d634a6c8-ea9a-404a-a94c-1d3c3467a58b-2020-04-23 01:56:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "817bc696-3127-4f68-a2df-62b746265340" ], "x-ms-correlation-request-id": [ - "ae4765e6-2a64-457a-aa58-1fae19169932" + "46b35376-78e8-4c01-9baf-462cf83361cb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015631Z:ae4765e6-2a64-457a-aa58-1fae19169932" + "CENTRALINDIA:20210419T084744Z:46b35376-78e8-4c01-9baf-462cf83361cb" ], "Date": [ - "Thu, 23 Apr 2020 01:56:31 GMT" + "Mon, 19 Apr 2021 08:47:44 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -29988,29 +28560,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e078547-c45f-4e50-b55b-6fd6d4616a01-2020-04-23 01:56:51Z-Ps" + "a2f221e5-c4fc-4030-baf3-6b4b0a6c9e12" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603411375)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588208211375)\\/\",\"ClientRequestId\":\"3e078547-c45f-4e50-b55b-6fd6d4616a01-2020-04-23 01:56:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MXjyaP73LbgWRT5AjHRw9Hu5sbxBfxC5UNu15ddbsMY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818484925)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423284925)\\/\",\"ClientRequestId\":\"1ed5dca6-31ba-471b-9b3c-87124ee628b2-2021-04-19 08:48:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7SA91olDIjEKVReSixmET1OGVQLFFjiOwUNI0cnqxCA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30021,38 +28593,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11966" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3e078547-c45f-4e50-b55b-6fd6d4616a01-2020-04-23 01:56:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a2f221e5-c4fc-4030-baf3-6b4b0a6c9e12" ], "x-ms-correlation-request-id": [ - "ddc26062-3649-4125-9255-d9ce67a8d9a2" + "f250e10e-3c4e-406b-bf0c-f859b3805ecc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015651Z:ddc26062-3649-4125-9255-d9ce67a8d9a2" + "CENTRALINDIA:20210419T084805Z:f250e10e-3c4e-406b-bf0c-f859b3805ecc" ], "Date": [ - "Thu, 23 Apr 2020 01:56:51 GMT" + "Mon, 19 Apr 2021 08:48:04 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -30061,29 +28630,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9c356e8-9f0c-4818-b598-b11bbab3c248-2020-04-23 01:57:12Z-Ps" + "c7ce8520-569c-4b78-b5ac-e9e4f3fb42e5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603432040)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588208232040)\\/\",\"ClientRequestId\":\"a9c356e8-9f0c-4818-b598-b11bbab3c248-2020-04-23 01:57:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vHEMW5HpOqBK4aB7X+7YdZjn60/2A50zSVGqBFPN8TM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818505376)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423305376)\\/\",\"ClientRequestId\":\"f8d16faf-3fcb-4e27-8bf1-543f92c5b022-2021-04-19 08:48:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EyOIAKstKG8xxk1u3dTY4zdAM3s4YPPuZAibqs5w8wc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30094,38 +28663,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11965" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a9c356e8-9f0c-4818-b598-b11bbab3c248-2020-04-23 01:57:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c7ce8520-569c-4b78-b5ac-e9e4f3fb42e5" ], "x-ms-correlation-request-id": [ - "f466aeab-96f9-4919-be7b-f914d7fd75d1" + "73515d1a-95fe-4a0e-a7b3-f8713868c34b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015712Z:f466aeab-96f9-4919-be7b-f914d7fd75d1" + "CENTRALINDIA:20210419T084825Z:73515d1a-95fe-4a0e-a7b3-f8713868c34b" ], "Date": [ - "Thu, 23 Apr 2020 01:57:11 GMT" + "Mon, 19 Apr 2021 08:48:25 GMT" ], "Content-Length": [ - "4560" + "4564" ], "Content-Type": [ "application/json" @@ -30134,29 +28700,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d8c505c8-ed2f-43f7-b051-75486717adaf-2020-04-23 01:57:32Z-Ps" + "5fff6e4a-2aab-4f5d-9d48-e68adbe81b5f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603452650)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588208252650)\\/\",\"ClientRequestId\":\"d8c505c8-ed2f-43f7-b051-75486717adaf-2020-04-23 01:57:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"u+6awqrbcvrMquJaD/xwL9Yg8nmVaNxfjfTULA1p5bk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818525764)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423325764)\\/\",\"ClientRequestId\":\"9ba7a5b2-b4c4-4067-a904-e7a198e65842-2021-04-19 08:48:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YbnBftGdZRCjRjJ1zrdU7ApW74BfsYPXxrySGOH4qcM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30166,39 +28732,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d8c505c8-ed2f-43f7-b051-75486717adaf-2020-04-23 01:57:32Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "5fff6e4a-2aab-4f5d-9d48-e68adbe81b5f" ], "x-ms-correlation-request-id": [ - "c7d680cb-9629-435a-9031-d0be2466ff1b" + "17a49add-0e2c-43e2-bb13-130658c0d8ee" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015733Z:c7d680cb-9629-435a-9031-d0be2466ff1b" + "CENTRALINDIA:20210419T084846Z:17a49add-0e2c-43e2-bb13-130658c0d8ee" ], "Date": [ - "Thu, 23 Apr 2020 01:57:32 GMT" + "Mon, 19 Apr 2021 08:48:45 GMT" ], "Content-Length": [ - "4588" + "4564" ], "Content-Type": [ "application/json" @@ -30207,29 +28770,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"CompletedWithInformation\",\r\n \"stateDescription\": \"CompletedWithInformation\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa50a03c-ed00-4358-a270-0f7981299ecc-2020-04-23 01:57:53Z-Ps" + "51c33853-3259-4e6d-a487-2b13e021b05f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603473237)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588208273237)\\/\",\"ClientRequestId\":\"fa50a03c-ed00-4358-a270-0f7981299ecc-2020-04-23 01:57:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XK3q2YmXJtWxzUI4kf/2Be3hdIEPJrarlfhbj/MJnfg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818546162)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423346162)\\/\",\"ClientRequestId\":\"6b697f8c-4857-4bba-a0a5-ec2c736c6b13-2021-04-19 08:49:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PybRJzPMkw8O4ifcax0PL/dwQeJ9uA2H3DM6a/hwKF8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30240,38 +28803,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11963" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "fa50a03c-ed00-4358-a270-0f7981299ecc-2020-04-23 01:57:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "51c33853-3259-4e6d-a487-2b13e021b05f" ], "x-ms-correlation-request-id": [ - "1084d80f-4331-4f2f-bae5-80d4d7e1e242" + "3c66c7a5-bb37-46c4-93b9-6c11867c3cb2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015754Z:1084d80f-4331-4f2f-bae5-80d4d7e1e242" + "CENTRALINDIA:20210419T084906Z:3c66c7a5-bb37-46c4-93b9-6c11867c3cb2" ], "Date": [ - "Thu, 23 Apr 2020 01:57:53 GMT" + "Mon, 19 Apr 2021 08:49:06 GMT" ], "Content-Length": [ - "4588" + "4564" ], "Content-Type": [ "application/json" @@ -30280,29 +28840,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"CompletedWithInformation\",\r\n \"stateDescription\": \"CompletedWithInformation\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d959bfe-cf6a-4ac7-8ec9-221c23fd2294-2020-04-23 01:58:15Z-Ps" + "d29ba86a-fa0f-42af-8eeb-8a108b22c9ba" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603495043)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588208295043)\\/\",\"ClientRequestId\":\"8d959bfe-cf6a-4ac7-8ec9-221c23fd2294-2020-04-23 01:58:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hed3VQoYUWYLQ7XY6kp5MiA4qNgDLBqcxyEueFlzysc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818566551)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423366551)\\/\",\"ClientRequestId\":\"d45ed64e-56ec-44ef-9d99-8f911ead058c-2021-04-19 08:49:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"C+1ooJQHm5+fkcZV7LUHJqoEBmWrZz9v7bqu/KylfoM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30313,38 +28873,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11962" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "8d959bfe-cf6a-4ac7-8ec9-221c23fd2294-2020-04-23 01:58:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d29ba86a-fa0f-42af-8eeb-8a108b22c9ba" ], "x-ms-correlation-request-id": [ - "ceaf18de-58e6-4442-bcb3-4e4820391f36" + "86f3595d-1ad0-4905-8e9b-5b6ef6988210" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015815Z:ceaf18de-58e6-4442-bcb3-4e4820391f36" + "CENTRALINDIA:20210419T084926Z:86f3595d-1ad0-4905-8e9b-5b6ef6988210" ], "Date": [ - "Thu, 23 Apr 2020 01:58:15 GMT" + "Mon, 19 Apr 2021 08:49:26 GMT" ], "Content-Length": [ - "4588" + "4564" ], "Content-Type": [ "application/json" @@ -30353,29 +28910,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"CompletedWithInformation\",\r\n \"stateDescription\": \"CompletedWithInformation\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkpvYnMvMTM1MjEzODctMTM4Zi00NGIwLTg1MTktNjNmMGU5MzY1NmJjP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uSm9icy82ZTRhY2NhYi1jYjJlLTRhM2MtYWNmNi1lM2FmZWVmOWM4NGQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c003198-bb7e-4efc-b322-74bcf4d3e051-2020-04-23 01:58:35Z-Ps" + "3357c6de-9298-41b3-a583-0fc30b7c2e03" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603515617)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588208315617)\\/\",\"ClientRequestId\":\"1c003198-bb7e-4efc-b322-74bcf4d3e051-2020-04-23 01:58:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ueke2wP5iOrNBYr8lSoLnrr/wqNmMaFxb3tfb4S6Xi8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818586941)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423386941)\\/\",\"ClientRequestId\":\"d553ec17-08d1-43dd-8b1f-68f00e9645c5-2021-04-19 08:49:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eG3ghBAsWjRUSvgLFVw6BGORjjH8BSPmNAzCcp2r2xk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30386,38 +28943,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11961" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1c003198-bb7e-4efc-b322-74bcf4d3e051-2020-04-23 01:58:35Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3357c6de-9298-41b3-a583-0fc30b7c2e03" ], "x-ms-correlation-request-id": [ - "460247e6-4569-4de8-91d3-ef21ee84aaa4" + "f250165d-8489-44f9-8361-32dcb8548617" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015836Z:460247e6-4569-4de8-91d3-ef21ee84aaa4" + "CENTRALINDIA:20210419T084947Z:f250165d-8489-44f9-8361-32dcb8548617" ], "Date": [ - "Thu, 23 Apr 2020 01:58:35 GMT" + "Mon, 19 Apr 2021 08:49:47 GMT" ], "Content-Length": [ - "5388" + "5368" ], "Content-Type": [ "application/json" @@ -30426,29 +28980,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"name\": \"13521387-138f-44b0-8519-63f0e93656bc\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"CompletedWithInformation\",\r\n \"stateDescription\": \"CompletedWithInformation\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2020-04-23T01:46:00.7961221Z\",\r\n \"endTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2020-04-23T01:46:01.0304868Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.232449Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.3887344Z\",\r\n \"endTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2020-04-23T01:46:05.6230757Z\",\r\n \"endTime\": \"2020-04-23T01:58:18.9881011Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm910\",\r\n \"startTime\": \"2020-04-23T01:46:05.576194Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm910\",\r\n \"state\": \"CompletedWithInformation\",\r\n \"stateDescription\": \"CompletedWithInformation\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/5823dc04-c425-42bc-a9cf-27f72fb75371\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"f5b3d9f1-a45d-5870-9495-17e3bea6c488\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [\r\n {\r\n \"serviceErrorDetails\": {\r\n \"code\": \"151083\",\r\n \"message\": \"Site recovery mobility service update completed with warnings.\",\r\n \"possibleCauses\": \"Site recovery mobility service requires a reboot to complete the upgrade.\",\r\n \"recommendedAction\": \"Restart the vm during the next planned maintenance window for the new fixes to take effect. Please refer https://aka.ms/a2a_mobility_agent_ugrade \",\r\n \"activityId\": \"fb3e9295-a987-4b93-8931-15c7cde51c09-2020-04-23 01:45:59Z-Ps ActivityId: 97314060-5283-42b8-9016-2ac781732743\"\r\n },\r\n \"providerErrorDetails\": {\r\n \"errorCode\": 0,\r\n \"errorMessage\": null,\r\n \"errorId\": \"149b856e-5f4b-46c0-a864-ca133badf41b\",\r\n \"possibleCauses\": \"\",\r\n \"recommendedAction\": \"\"\r\n },\r\n \"errorLevel\": \"Info\",\r\n \"creationTime\": \"2020-04-23T01:52:22.8548256Z\",\r\n \"taskId\": \"EnableDr\"\r\n }\r\n ],\r\n \"startTime\": \"2020-04-23T01:46:00.0325891Z\",\r\n \"endTime\": \"2020-04-23T01:58:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"targetObjectName\": \"a2avm910\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"b2c93663-5d7b-58ca-ae26-542095ee24f7\",\r\n \"primaryVmName\": \"a2avm910\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm910\",\r\n \"protectionProfileId\": \"78bd8246-5b44-5420-857b-3cfc547f546b\",\r\n \"primaryCloudId\": \"e92ce51d-c73d-53df-8be2-1539d785d5df\",\r\n \"primaryCloudName\": \"A2APrimaryContainer910\",\r\n \"recoveryCloudId\": \"30dddfb7-8782-5be7-8066-08a8f4db0e88\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer910\",\r\n \"primaryVmmId\": \"d01fb011-0435-5b1c-aaf5-b6215e4a397c\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"76227a37-7a3c-5ec3-b96d-7df77955447c\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"name\": \"6e4accab-cb2e-4a3c-acf6-e3afeef9c84d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\",\r\n \"scenarioName\": \"SwitchReplicationGroupProtection\",\r\n \"friendlyName\": \"Reprotect\",\r\n \"state\": \"CompletedWithInformation\",\r\n \"stateDescription\": \"CompletedWithInformation\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"name\": \"SwitchReplicationGroupProtectionPreflightTask\",\r\n \"startTime\": \"2021-04-19T08:37:31.3626614Z\",\r\n \"endTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisite check\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CommitFailoverTask\",\r\n \"name\": \"VmCommitFailover\",\r\n \"startTime\": \"2021-04-19T08:37:31.4976616Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Committing failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"DiscoverReplicaTask\",\r\n \"name\": \"DiscoverReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.5622921Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Discovering replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"GetSwitchProtectionRequirementsTask\",\r\n \"name\": \"GetSwitchProtectionRequirementsTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.6622899Z\",\r\n \"endTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Getting reprotection requirements\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ProtectReplicaTask\",\r\n \"name\": \"ProtectReplicaTask\",\r\n \"startTime\": \"2021-04-19T08:38:05.8022907Z\",\r\n \"endTime\": \"2021-04-19T08:49:46.3943723Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Reprotecting virtual machine (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"EnableDr\",\r\n \"name\": \"a2avm9100\",\r\n \"startTime\": \"2021-04-19T08:38:05.7722962Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm9100\",\r\n \"state\": \"CompletedWithInformation\",\r\n \"stateDescription\": \"CompletedWithInformation\",\r\n \"taskType\": \"JobTaskDetails\",\r\n \"customDetails\": {\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/246c1e19-4d9a-4bce-bd13-483e6f8c9897\",\r\n \"jobFriendlyName\": \"Enable replication\",\r\n \"targetObjectId\": \"b666603c-1be6-521c-8096-fa4cbe97946e\",\r\n \"targetObjectName\": \"a2avm9100\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"EnableDr\"\r\n },\r\n \"instanceType\": \"JobTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [\r\n {\r\n \"serviceErrorDetails\": {\r\n \"code\": \"151083\",\r\n \"message\": \"Site recovery mobility service update completed with warnings.\",\r\n \"possibleCauses\": \"Site recovery mobility service requires a reboot to complete the upgrade.\",\r\n \"recommendedAction\": \"Restart the vm during the next planned maintenance window for the new fixes to take effect. Please refer https://aka.ms/a2a_mobility_agent_ugrade \",\r\n \"activityId\": \"b36bbf17-21da-4090-ad44-095206816498 ActivityId: e78abde8-1a24-457b-a21b-69b221887d2c\"\r\n },\r\n \"providerErrorDetails\": {\r\n \"errorCode\": 0,\r\n \"errorMessage\": null,\r\n \"errorId\": \"6f2c9d6c-0318-41de-8da5-32989271b60f\",\r\n \"possibleCauses\": \"\",\r\n \"recommendedAction\": \"\"\r\n },\r\n \"errorLevel\": \"Info\",\r\n \"creationTime\": \"2021-04-19T08:45:21.3975292Z\",\r\n \"taskId\": \"EnableDr\"\r\n }\r\n ],\r\n \"startTime\": \"2021-04-19T08:37:30.7271869Z\",\r\n \"endTime\": \"2021-04-19T08:49:46Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"targetObjectName\": \"a2aVM9100\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"newReplicationProtectedItemId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"instanceType\": \"SwitchProtectionJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"e3e73fd4-61eb-5ad4-bc66-d04069302fa3\",\r\n \"primaryVmName\": \"a2aVM9100\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm9100\",\r\n \"protectionProfileId\": \"7f8e656b-821e-554d-b331-08c0a240e4ab\",\r\n \"primaryCloudId\": \"66443560-d9b9-5df4-ad90-0679f5198d3f\",\r\n \"primaryCloudName\": \"A2APrimaryContainer9100\",\r\n \"recoveryCloudId\": \"7597d4c7-6706-51fd-aa76-987401ae5135\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer9100\",\r\n \"primaryVmmId\": \"956ea896-506f-56fa-baf1-b6ce08dd3966\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b66fcb29-e052-5a8b-a29c-b452958dfb08\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDkxMC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWM5MTAvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjkxMC9yZXBsaWNhdGlvblByb3RlY3RlZEl0ZW1zL2EyYVZNOTEwP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0Umc5MTAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3Q5MTAwL3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzkxMDAvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjkxMDAvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTkxMDA/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35f3ac34-ec5d-4794-aad0-670ae639305c-2020-04-23 01:58:36Z-Ps" + "4186a2e8-ebd0-477e-8c45-67bef1604987" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1587603516179)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588208316179)\\/\",\"ClientRequestId\":\"35f3ac34-ec5d-4794-aad0-670ae639305c-2020-04-23 01:58:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xKmdQDiuEgIeX4RYrrPBFW3oaF+ZluEYtI76+MPfIr8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618818587461)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619423387461)\\/\",\"ClientRequestId\":\"b0690fea-a53c-419c-b358-895206769e0c-2021-04-19 08:49:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rwOFVLho3VA3ZUNMuSJ3m0aatXoodolZQhq/2WDeRik=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -30459,38 +29013,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11960" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "35f3ac34-ec5d-4794-aad0-670ae639305c-2020-04-23 01:58:36Z-Ps 4/23/2020 1:58:37 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "4186a2e8-ebd0-477e-8c45-67bef1604987 4/19/2021 8:49:47 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "35f3ac34-ec5d-4794-aad0-670ae639305c-2020-04-23 01:58:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4186a2e8-ebd0-477e-8c45-67bef1604987" ], "x-ms-correlation-request-id": [ - "21193d79-f57c-4540-a622-f8c460997722" + "47fa67ae-bc01-40af-b7ec-cb616a00a2e5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200423T015837Z:21193d79-f57c-4540-a622-f8c460997722" + "CENTRALINDIA:20210419T084947Z:47fa67ae-bc01-40af-b7ec-cb616a00a2e5" ], "Date": [ - "Thu, 23 Apr 2020 01:58:36 GMT" + "Mon, 19 Apr 2021 08:49:47 GMT" ], "Content-Length": [ - "7360" + "7802" ], "Content-Type": [ "application/json" @@ -30499,13 +29050,13 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationProtectionContainers/A2ARecoveryContainer910/replicationProtectedItems/a2aVM910\",\r\n \"name\": \"a2aVM910\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM910\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aRecoveryFabric910/replicationRecoveryServicesProviders/6e541d7f-a0ab-5346-afaf-a279641b6445\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2ARecoveryContainer910\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2APrimaryContainer910\",\r\n \"protectionState\": \"InitialReplicationInProgress\",\r\n \"protectionStateDescription\": \"Initial replication is in progress\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"DisableProtection\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Normal\",\r\n \"healthErrors\": [],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationPolicies/TestA2APolicy1910\",\r\n \"policyFriendlyName\": \"TestA2APolicy1910\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.compute/virtualmachines/a2avm910\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"westus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"73118479-4ab6-4b50-bafd-43f7a26aa976\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"6c98dc5c-a34d-4d57-b7a0-6298f4149fdf\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.compute/disks/a2avm910_osdisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/disks/a2avm910_osdisk_1_3657280baa164499b3706e011b4e84ef-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Compute/disks/a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG910/providers/Microsoft.Storage/storageAccounts/rlog910\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.0,\r\n \"diskState\": \"InitialReplicationPending\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef\",\r\n \"tfoDiskName\": \"a2aVM910_OsDisk_1_3657280baa164499b3706e011b4e84ef-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM910\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": null,\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"0d8f9cb1-ed4e-5aa6-af58-c6dbea1b0bd6\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg910/providers/microsoft.network/networkinterfaces/a2avm910\",\r\n \"vMSubnetName\": null,\r\n \"vMNetworkName\": null,\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/virtualNetworks/a2aVM910\",\r\n \"recoveryVMSubnetName\": \"a2aVM910\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": null,\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"NotSelected\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/publicIPAddresses/a2aVM910\",\r\n \"recoveryNetworkSecurityGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM910/providers/Microsoft.Network/networkSecurityGroups/a2aVM910\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoNicName\": null,\r\n \"tfoNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-04-23T01:56:54.5442777Z\",\r\n \"agentVersion\": \"9.32.5487.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"UnprotectedStatesBegin\",\r\n \"vmProtectionStateDescription\": \"Enabling protection\",\r\n \"lifecycleId\": null,\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": null,\r\n \"lastRpoCalculatedTime\": null,\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM910-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM910/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM910\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg910/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest910/replicationFabrics/a2aPrimaryFabric910/replicationProtectionContainers/A2APrimaryContainer910\",\r\n \"eventCorrelationId\": \"34200f09-3d1b-4a03-9c23-dbee2e0b6325\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationProtectionContainers/A2ARecoveryContainer9100/replicationProtectedItems/a2aVM9100\",\r\n \"name\": \"a2aVM9100\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM9100\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aRecoveryFabric9100/replicationRecoveryServicesProviders/e3bee1d8-a6e1-5a8f-ad49-dbc41103892f\",\r\n \"primaryFabricFriendlyName\": \"West Central US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2ARecoveryContainer9100\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2APrimaryContainer9100\",\r\n \"protectionState\": \"InitialReplicationInProgress\",\r\n \"protectionStateDescription\": \"Initial replication is in progress\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"DisableProtection\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Normal\",\r\n \"healthErrors\": [],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationPolicies/TestA2APolicy19100\",\r\n \"policyFriendlyName\": \"TestA2APolicy19100\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.compute/virtualmachines/a2avm9100\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"84e9446e-3056-42cd-a007-19008f7eb774\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"7312f3ff-6109-46da-85a5-af2fc9ff4227\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.compute/disks/a2avm9100_osdisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/disks/a2avm9100_osdisk_1_b9f4e6b8890c4133a5824e8184f856bd-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Compute/disks/a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG9100/providers/Microsoft.Storage/storageAccounts/rlog9100\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.0,\r\n \"diskState\": \"InitialReplicationPending\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd\",\r\n \"tfoDiskName\": \"a2aVM9100_OsDisk_1_b9f4e6b8890c4133a5824e8184f856bd-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"westcentralus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM9100\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": null,\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"e16674d7-efba-57d3-9688-77e2b6c158dd\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg9100/providers/microsoft.network/networkinterfaces/a2avm9100\",\r\n \"vMNetworkName\": null,\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/virtualNetworks/a2aVM9100\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": null,\r\n \"isPrimary\": true,\r\n \"subnetName\": null,\r\n \"staticIPAddress\": null,\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"a2aVM9100\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/publicIPAddresses/a2aVM9100\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"NotSelected\",\r\n \"recoveryNetworkSecurityGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM9100/providers/Microsoft.Network/networkSecurityGroups/a2aVM9100\",\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-19T08:46:19.0646716Z\",\r\n \"agentVersion\": \"9.42.5941.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"UnprotectedStatesBegin\",\r\n \"vmProtectionStateDescription\": \"Enabling protection\",\r\n \"lifecycleId\": null,\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": null,\r\n \"lastRpoCalculatedTime\": null,\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM9100-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2AVM9100/providers/Microsoft.Compute/proximityPlacementGroups/a2aVM9100\",\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg9100/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest9100/replicationFabrics/a2aPrimaryFabric9100/replicationProtectionContainers/A2APrimaryContainer9100\",\r\n \"eventCorrelationId\": \"29fe1176-837e-4829-8538-017b87e7a1ca\"\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { "SubscriptionId": "509099b2-9d2c-4636-b43e-bd5cafb6be69", - "NamingSuffix": "98e5c22a-510f-415c-ad39-dbb077c9fd25" + "NamingSuffix": "e9f1a9c1-2211-484a-b4ed-c74a3cb9a240" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2ATestNewContainer.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2ATestNewContainer.json index 5599865047fe..453e09291a5a 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2ATestNewContainer.json +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2ATestNewContainer.json @@ -1,40 +1,33 @@ { "Entries": [ { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourcegroups/A2APowershellTestRg33?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/A2APowershellTestRg33?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ], "x-ms-client-request-id": [ - "0a1d4795-cb90-4ece-af0d-15f69b6f0f2a" + "92bda6cc-a1d7-425f-b0d5-b29f4464cff2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33\",\r\n \"name\": \"A2APowershellTestRg33\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "195" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -43,13 +36,13 @@ "1198" ], "x-ms-request-id": [ - "ad2a8a89-677a-4ec6-afe5-d4736e2dc567" + "5af86701-53e5-4656-a34c-7812129b08a0" ], "x-ms-correlation-request-id": [ - "ad2a8a89-677a-4ec6-afe5-d4736e2dc567" + "5af86701-53e5-4656-a34c-7812129b08a0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T122925Z:ad2a8a89-677a-4ec6-afe5-d4736e2dc567" + "CENTRALUSEUAP:20210417T210136Z:5af86701-53e5-4656-a34c-7812129b08a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -57,50 +50,50 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Fri, 17 Aug 2018 12:29:25 GMT" + "Sat, 17 Apr 2021 21:01:36 GMT" + ], + "Content-Length": [ + "202" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33\",\r\n \"name\": \"A2APowershellTestRg33\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "91" - ], "x-ms-client-request-id": [ - "3d8a1900-8888-4432-9f63-231f550cf85b-2018-08-17 12:29:45Z-P" + "3607e700-1967-4b89-af97-c08ef12b942a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" - ] - }, - "ResponseBody": "{\r\n \"location\": \"eastus\",\r\n \"name\": \"A2APowershellTest33\",\r\n \"etag\": \"W/\\\"datetime'2018-08-17T12%3A29%3A52.6610709Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "384" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "98" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -109,64 +102,64 @@ "nosniff" ], "x-ms-request-id": [ - "b5f2dfc6-2781-4ba5-88c7-9943325d89c8" + "7f76c571-528d-4e52-a71b-e99750a6a41d" ], "x-ms-client-request-id": [ - "3d8a1900-8888-4432-9f63-231f550cf85b-2018-08-17 12:29:45Z-P" + "3607e700-1967-4b89-af97-c08ef12b942a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "209" ], "x-ms-correlation-request-id": [ - "b5f2dfc6-2781-4ba5-88c7-9943325d89c8" + "7f76c571-528d-4e52-a71b-e99750a6a41d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T122953Z:b5f2dfc6-2781-4ba5-88c7-9943325d89c8" - ], - "Cache-Control": [ - "no-cache" + "CENTRALUSEUAP:20210417T210200Z:7f76c571-528d-4e52-a71b-e99750a6a41d" ], "Date": [ - "Fri, 17 Aug 2018 12:29:53 GMT" + "Sat, 17 Apr 2021 21:02:00 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Content-Length": [ + "475" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest33\",\r\n \"etag\": \"W/\\\"datetime'2021-04-17T21%3A01%3A59.8266801Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3fb1a66-43ad-4afd-8ca1-06ac3b0c2721-2018-08-17 12:30:14Z-P" + "05f15342-4804-4fad-8623-4f4f0cbcbf21" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"A2APowershellTest33\",\r\n \"etag\": \"W/\\\"datetime'2018-08-17T12%3A29%3A52.6610709Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "396" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -175,64 +168,67 @@ "nosniff" ], "x-ms-request-id": [ - "7055d9da-ce28-487e-8275-b4de639c45db" + "548e4f6c-58eb-40af-87f4-5d5bd8d0a2a5" ], "x-ms-client-request-id": [ - "e3fb1a66-43ad-4afd-8ca1-06ac3b0c2721-2018-08-17 12:30:14Z-P" + "05f15342-4804-4fad-8623-4f4f0cbcbf21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "11999" ], "x-ms-correlation-request-id": [ - "7055d9da-ce28-487e-8275-b4de639c45db" + "548e4f6c-58eb-40af-87f4-5d5bd8d0a2a5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123015Z:7055d9da-ce28-487e-8275-b4de639c45db" - ], - "Cache-Control": [ - "no-cache" + "CENTRALUSEUAP:20210417T210220Z:548e4f6c-58eb-40af-87f4-5d5bd8d0a2a5" ], "Date": [ - "Fri, 17 Aug 2018 12:30:14 GMT" + "Sat, 17 Apr 2021 21:02:19 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Content-Length": [ + "475" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest33\",\r\n \"etag\": \"W/\\\"datetime'2021-04-17T21%3A01%3A59.8266801Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvZXh0ZW5kZWRJbmZvcm1hdGlvbi92YXVsdEV4dGVuZGVkSW5mbz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4aafe258-116d-4fa7-9c22-ac287e23711d" + "10a8bf73-d44d-46da-aeda-f0176da3deea" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "Agent-Authentication": [ + "" + ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"A2APowershellTest33\",\r\n \"etag\": \"W/\\\"datetime'2018-08-17T12%3A30%3A21.716593Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "395" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -241,67 +237,73 @@ "nosniff" ], "x-ms-request-id": [ - "ed064967-7b33-44eb-a581-63192840e469" + "ac5a949a-c2b1-43aa-88c9-092ff9e63ed1" ], "x-ms-client-request-id": [ - "4aafe258-116d-4fa7-9c22-ac287e23711d" + "10a8bf73-d44d-46da-aeda-f0176da3deea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-IIS/10.0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "11998" ], "x-ms-correlation-request-id": [ - "ed064967-7b33-44eb-a581-63192840e469" + "ac5a949a-c2b1-43aa-88c9-092ff9e63ed1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123022Z:ed064967-7b33-44eb-a581-63192840e469" - ], - "Cache-Control": [ - "no-cache" + "CENTRALUSEUAP:20210417T210220Z:ac5a949a-c2b1-43aa-88c9-092ff9e63ed1" ], "Date": [ - "Fri, 17 Aug 2018 12:30:21 GMT" + "Sat, 17 Apr 2021 21:02:20 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Content-Length": [ + "86" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"ErrorCode\": \"ResourceExtendedInfoNotFound\",\r\n \"Message\": {\r\n \"Language\": \"en-US\",\r\n \"Value\": \"\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvZXh0ZW5kZWRJbmZvcm1hdGlvbi92YXVsdEV4dGVuZGVkSW5mbz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvZXh0ZW5kZWRJbmZvcm1hdGlvbi92YXVsdEV4dGVuZGVkSW5mbz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"IQtgXLoQ+VN19aGIdMBhjw==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9ff8f16d-9e18-436b-8206-24696bb2b448-2018-08-17 12:30:16Z-Ps" + "10a8bf73-d44d-46da-aeda-f0176da3deea" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ "" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" - ] - }, - "ResponseBody": "{\r\n \"ErrorCode\": \"ResourceExtendedInfoNotFound\",\r\n \"Message\": {\r\n \"Language\": \"en-US\",\r\n \"Value\": \"\"\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "86" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "102" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -310,73 +312,64 @@ "nosniff" ], "x-ms-request-id": [ - "c39330dc-dc04-4b32-a10b-0131f74f4db9" + "ae091b17-ea9e-46cb-a744-424dca2130af" ], "x-ms-client-request-id": [ - "9ff8f16d-9e18-436b-8206-24696bb2b448-2018-08-17 12:30:16Z-Ps" + "10a8bf73-d44d-46da-aeda-f0176da3deea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-correlation-request-id": [ - "c39330dc-dc04-4b32-a10b-0131f74f4db9" + "ae091b17-ea9e-46cb-a744-424dca2130af" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123016Z:c39330dc-dc04-4b32-a10b-0131f74f4db9" - ], - "Cache-Control": [ - "no-cache" + "CENTRALUSEUAP:20210417T210221Z:ae091b17-ea9e-46cb-a744-424dca2130af" ], "Date": [ - "Fri, 17 Aug 2018 12:30:15 GMT" + "Sat, 17 Apr 2021 21:02:21 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Content-Length": [ + "410" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 404 + "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"0b899263-1a5f-42fe-a617-b1bafa7ec85c\",\r\n \"properties\": {\r\n \"integrityKey\": \"IQtgXLoQ+VN19aGIdMBhjw==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvZXh0ZW5kZWRJbmZvcm1hdGlvbi92YXVsdEV4dGVuZGVkSW5mbz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"QpjE9tW6qtTSUHfL7NBWmw==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "102" - ], "x-ms-client-request-id": [ - "1ce06d53-c975-4242-81b0-1b04689cd65f-2018-08-17 12:30:16Z-Ps" + "10a8bf73-d44d-46da-aeda-f0176da3deea" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], - "Agent-Authentication": [ - "" - ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"cfb6f8ed-deb8-43a1-bc0f-0396329117e3\",\r\n \"properties\": {\r\n \"integrityKey\": \"QpjE9tW6qtTSUHfL7NBWmw==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "410" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -385,1804 +378,1682 @@ "nosniff" ], "x-ms-request-id": [ - "5e75b389-a5e3-4fe9-9215-26a9dbd8feda" + "7c4699f8-e8d0-4bcb-bc5d-e2fc0d908fcd" ], "x-ms-client-request-id": [ - "1ce06d53-c975-4242-81b0-1b04689cd65f-2018-08-17 12:30:16Z-Ps" + "10a8bf73-d44d-46da-aeda-f0176da3deea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "x-ms-correlation-request-id": [ - "5e75b389-a5e3-4fe9-9215-26a9dbd8feda" + "7c4699f8-e8d0-4bcb-bc5d-e2fc0d908fcd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123022Z:5e75b389-a5e3-4fe9-9215-26a9dbd8feda" - ], - "Cache-Control": [ - "no-cache" + "CENTRALUSEUAP:20210417T210222Z:7c4699f8-e8d0-4bcb-bc5d-e2fc0d908fcd" ], "Date": [ - "Fri, 17 Aug 2018 12:30:21 GMT" + "Sat, 17 Apr 2021 21:02:21 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Content-Length": [ + "487" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest33\",\r\n \"etag\": \"W/\\\"datetime'2021-04-17T21%3A02%3A21.6373378Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33\",\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/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMzMz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMzMz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westus\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"EastUS\"\r\n }\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "119" - ], "x-ms-client-request-id": [ - "a7629308-0e3c-4d71-b6f8-5c5372dfbcde-2018-08-17 12:30:23Z-Ps" + "9f44be65-19e0-4284-a505-97a25076768d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505423355)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110223355)\\/\",\"ClientRequestId\":\"a7629308-0e3c-4d71-b6f8-5c5372dfbcde-2018-08-17 12:30:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Q8HFM+Da+tNkTZwprH/k5P+AwrGZ7S/8CMdmvjoy0IE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689742291)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294542291)\\/\",\"ClientRequestId\":\"9bc976b4-3d2c-4de4-91a4-521f7bd16d40-2021-04-17 21:02:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"B9p0RNW98le6V/T2hRDYFRTgIn4d+/iDKK2IncAgAqE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "119" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33/operationresults/3e0365be-51d1-4d84-a6fe-c461cd505304?api-version=2021-02-10" + ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066", - "a7629308-0e3c-4d71-b6f8-5c5372dfbcde-2018-08-17 12:30:23Z-Ps 8/17/2018 12:30:25 PM" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationOperationStatus/9701a54e-4723-416b-9e38-97fafbc2e066?api-version=2018-07-10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationOperationStatus/3e0365be-51d1-4d84-a6fe-c461cd505304?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a7629308-0e3c-4d71-b6f8-5c5372dfbcde-2018-08-17 12:30:23Z-Ps" + "9f44be65-19e0-4284-a505-97a25076768d" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "29df8604-a09b-4e20-a170-249ef751c33d" + "47c52fe7-b3d2-4df2-abdb-3f5ce4e20e82" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123025Z:29df8604-a09b-4e20-a170-249ef751c33d" - ], - "Cache-Control": [ - "no-cache" + "CENTRALUSEUAP:20210417T210224Z:47c52fe7-b3d2-4df2-abdb-3f5ce4e20e82" ], "Date": [ - "Fri, 17 Aug 2018 12:30:24 GMT" + "Sat, 17 Apr 2021 21:02:24 GMT" ], - "Location": [ - "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33/operationresults/9701a54e-4723-416b-9e38-97fafbc2e066?api-version=2018-07-10" + "Expires": [ + "-1" ], - "X-Powered-By": [ - "ASP.NET" + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzk3MDFhNTRlLTQ3MjMtNDE2Yi05ZTM4LTk3ZmFmYmMyZTA2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzNlMDM2NWJlLTUxZDEtNGQ4NC1hNmZlLWM0NjFjZDUwNTMwND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "588891bf-2d4b-4e22-bcd0-cecc15b860cf-2018-08-17 12:30:25Z-Ps" + "9f44be65-19e0-4284-a505-97a25076768d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505425661)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110225661)\\/\",\"ClientRequestId\":\"588891bf-2d4b-4e22-bcd0-cecc15b860cf-2018-08-17 12:30:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KVesd/aQQ2sNE5jbQf5FzZgTpxDtzPeUsu8DPjztBnY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689745502)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294545502)\\/\",\"ClientRequestId\":\"18b966ed-818f-4985-8461-f60ce1998038-2021-04-17 21:02:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bDgTCJmhD7B0UNRlZd6ptc/k3uRcG6UQG+nar2DCnJ0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066\",\r\n \"name\": \"9701a54e-4723-416b-9e38-97fafbc2e066\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a7629308-0e3c-4d71-b6f8-5c5372dfbcde-2018-08-17 12:30:23Z-Ps ActivityId: 29df8604-a09b-4e20-a170-249ef751c33d\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-17T12:30:25.4198872Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:30:24.8849696Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a8dced36-ba36-5840-91b1-5412bdd3c96d\",\r\n \"targetObjectName\": \"a2aPrimaryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"a8dced36-ba36-5840-91b1-5412bdd3c96d\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric33\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "588891bf-2d4b-4e22-bcd0-cecc15b860cf-2018-08-17 12:30:25Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "9f44be65-19e0-4284-a505-97a25076768d" ], "x-ms-correlation-request-id": [ - "03d79560-b34b-48a7-bd5a-3f4f125eeb4b" + "bbe9132f-bc31-4331-8474-364a70d10b68" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123026Z:03d79560-b34b-48a7-bd5a-3f4f125eeb4b" + "CENTRALUSEUAP:20210417T210225Z:bbe9132f-bc31-4331-8474-364a70d10b68" ], "Date": [ - "Fri, 17 Aug 2018 12:30:25 GMT" + "Sat, 17 Apr 2021 21:02:25 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304\",\r\n \"name\": \"3e0365be-51d1-4d84-a6fe-c461cd505304\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"9f44be65-19e0-4284-a505-97a25076768d ActivityId: 47c52fe7-b3d2-4df2-abdb-3f5ce4e20e82\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:02:25.0066088Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:02:24.4666289Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"dc155ffd-fdfc-52c9-8511-65ca522f6f98\",\r\n \"targetObjectName\": \"a2aPrimaryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"dc155ffd-fdfc-52c9-8511-65ca522f6f98\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric33\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzk3MDFhNTRlLTQ3MjMtNDE2Yi05ZTM4LTk3ZmFmYmMyZTA2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzNlMDM2NWJlLTUxZDEtNGQ4NC1hNmZlLWM0NjFjZDUwNTMwND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00c28817-27eb-4449-9262-193aaefcc044-2018-08-17 12:30:26Z-Ps" + "a388b39c-fe97-4a0f-95ab-a129604853a5" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505426693)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110226693)\\/\",\"ClientRequestId\":\"00c28817-27eb-4449-9262-193aaefcc044-2018-08-17 12:30:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2LSBxypTx+Uq5BCBdLOpfv3VHK0uW6bW9Gq3KvQpB2Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689745956)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294545956)\\/\",\"ClientRequestId\":\"baf908d8-a8ba-4c07-9e3e-58ba95c0c50f-2021-04-17 21:02:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3xaneRqCiPbmy1z4P1FOeV88QKUAHeVwfnj8Tra8qWM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066\",\r\n \"name\": \"9701a54e-4723-416b-9e38-97fafbc2e066\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a7629308-0e3c-4d71-b6f8-5c5372dfbcde-2018-08-17 12:30:23Z-Ps ActivityId: 29df8604-a09b-4e20-a170-249ef751c33d\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-17T12:30:25.4198872Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:30:24.8849696Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a8dced36-ba36-5840-91b1-5412bdd3c96d\",\r\n \"targetObjectName\": \"a2aPrimaryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"a8dced36-ba36-5840-91b1-5412bdd3c96d\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric33\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "00c28817-27eb-4449-9262-193aaefcc044-2018-08-17 12:30:26Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "a388b39c-fe97-4a0f-95ab-a129604853a5" ], "x-ms-correlation-request-id": [ - "d13d9bc8-a842-466f-bed3-51b56424986c" + "c64d6542-5584-4a6e-a172-eeabf98046ea" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123027Z:d13d9bc8-a842-466f-bed3-51b56424986c" + "CENTRALUSEUAP:20210417T210226Z:c64d6542-5584-4a6e-a172-eeabf98046ea" ], "Date": [ - "Fri, 17 Aug 2018 12:30:26 GMT" + "Sat, 17 Apr 2021 21:02:25 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304\",\r\n \"name\": \"3e0365be-51d1-4d84-a6fe-c461cd505304\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"9f44be65-19e0-4284-a505-97a25076768d ActivityId: 47c52fe7-b3d2-4df2-abdb-3f5ce4e20e82\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:02:25.0066088Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:02:24.4666289Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"dc155ffd-fdfc-52c9-8511-65ca522f6f98\",\r\n \"targetObjectName\": \"a2aPrimaryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"dc155ffd-fdfc-52c9-8511-65ca522f6f98\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric33\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzk3MDFhNTRlLTQ3MjMtNDE2Yi05ZTM4LTk3ZmFmYmMyZTA2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzNlMDM2NWJlLTUxZDEtNGQ4NC1hNmZlLWM0NjFjZDUwNTMwND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30bf6a29-fac4-4c5e-b202-6390e6b15bfe-2018-08-17 12:30:47Z-Ps" + "5a386c7c-5a43-4985-b3f4-ff091a320c7d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505447572)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110247572)\\/\",\"ClientRequestId\":\"30bf6a29-fac4-4c5e-b202-6390e6b15bfe-2018-08-17 12:30:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tIJ3lJS4OPa7Sjxa3gtkLHVHPPt2AwgCq+Pbz81UwWo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689766380)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294566380)\\/\",\"ClientRequestId\":\"3bbe6f5a-757c-4daf-aa49-5c7fca8bdb4c-2021-04-17 21:02:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ie7dGEyQLK7d/qUtIz4HyyXnmW/1oFvGFEEPVj5mSzk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066\",\r\n \"name\": \"9701a54e-4723-416b-9e38-97fafbc2e066\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a7629308-0e3c-4d71-b6f8-5c5372dfbcde-2018-08-17 12:30:23Z-Ps ActivityId: 29df8604-a09b-4e20-a170-249ef751c33d\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-17T12:30:25.4198872Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:30:24.8849696Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a8dced36-ba36-5840-91b1-5412bdd3c96d\",\r\n \"targetObjectName\": \"a2aPrimaryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"a8dced36-ba36-5840-91b1-5412bdd3c96d\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric33\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "30bf6a29-fac4-4c5e-b202-6390e6b15bfe-2018-08-17 12:30:47Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "5a386c7c-5a43-4985-b3f4-ff091a320c7d" ], "x-ms-correlation-request-id": [ - "cc059bd6-426b-4165-94ab-095e354537bc" + "f7234199-59c8-4388-b086-7fa46527b4c9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123048Z:cc059bd6-426b-4165-94ab-095e354537bc" + "CENTRALUSEUAP:20210417T210246Z:f7234199-59c8-4388-b086-7fa46527b4c9" ], "Date": [ - "Fri, 17 Aug 2018 12:30:47 GMT" + "Sat, 17 Apr 2021 21:02:46 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304\",\r\n \"name\": \"3e0365be-51d1-4d84-a6fe-c461cd505304\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"9f44be65-19e0-4284-a505-97a25076768d ActivityId: 47c52fe7-b3d2-4df2-abdb-3f5ce4e20e82\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:02:25.0066088Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:02:24.4666289Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"dc155ffd-fdfc-52c9-8511-65ca522f6f98\",\r\n \"targetObjectName\": \"a2aPrimaryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"dc155ffd-fdfc-52c9-8511-65ca522f6f98\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric33\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzk3MDFhNTRlLTQ3MjMtNDE2Yi05ZTM4LTk3ZmFmYmMyZTA2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzNlMDM2NWJlLTUxZDEtNGQ4NC1hNmZlLWM0NjFjZDUwNTMwND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9d8e912-966c-459d-8316-c41048ad83e2-2018-08-17 12:31:08Z-Ps" + "4cd24708-7679-42bb-83d9-e528109d60b0" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505468547)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110268547)\\/\",\"ClientRequestId\":\"f9d8e912-966c-459d-8316-c41048ad83e2-2018-08-17 12:31:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gQEEH42F11C9KY9tK5JzERBqBDByyrS/IMxNPUDr0Rc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689786747)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294586747)\\/\",\"ClientRequestId\":\"fec96962-aecd-4479-bb16-5f81b2a09e47-2021-04-17 21:03:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qZXs8Kfg5ZH9eBtHRn1mg8lI17YcwYU6HTeJDugca4k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066\",\r\n \"name\": \"9701a54e-4723-416b-9e38-97fafbc2e066\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a7629308-0e3c-4d71-b6f8-5c5372dfbcde-2018-08-17 12:30:23Z-Ps ActivityId: 29df8604-a09b-4e20-a170-249ef751c33d\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-17T12:30:25.4198872Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:30:24.8849696Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a8dced36-ba36-5840-91b1-5412bdd3c96d\",\r\n \"targetObjectName\": \"a2aPrimaryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"a8dced36-ba36-5840-91b1-5412bdd3c96d\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric33\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f9d8e912-966c-459d-8316-c41048ad83e2-2018-08-17 12:31:08Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "4cd24708-7679-42bb-83d9-e528109d60b0" ], "x-ms-correlation-request-id": [ - "b07eed50-6334-4300-a3c8-594bdce82416" + "5e30ed25-4b81-4e52-a926-0b804bb3b1cf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123110Z:b07eed50-6334-4300-a3c8-594bdce82416" + "CENTRALUSEUAP:20210417T210306Z:5e30ed25-4b81-4e52-a926-0b804bb3b1cf" ], "Date": [ - "Fri, 17 Aug 2018 12:31:09 GMT" + "Sat, 17 Apr 2021 21:03:06 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304\",\r\n \"name\": \"3e0365be-51d1-4d84-a6fe-c461cd505304\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"9f44be65-19e0-4284-a505-97a25076768d ActivityId: 47c52fe7-b3d2-4df2-abdb-3f5ce4e20e82\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:02:25.0066088Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:02:24.4666289Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"dc155ffd-fdfc-52c9-8511-65ca522f6f98\",\r\n \"targetObjectName\": \"a2aPrimaryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"dc155ffd-fdfc-52c9-8511-65ca522f6f98\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric33\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzk3MDFhNTRlLTQ3MjMtNDE2Yi05ZTM4LTk3ZmFmYmMyZTA2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzNlMDM2NWJlLTUxZDEtNGQ4NC1hNmZlLWM0NjFjZDUwNTMwND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dffa26f1-e948-4df3-9ccf-405a9d9d9b1b-2018-08-17 12:31:31Z-Ps" + "bb98da71-814e-481d-8cea-3933c7389061" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505491029)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110291029)\\/\",\"ClientRequestId\":\"dffa26f1-e948-4df3-9ccf-405a9d9d9b1b-2018-08-17 12:31:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TjdJC/U0duzoo/tPxYpt/Ys6XlRDTCBpBfJUELSDvFg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689807127)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294607127)\\/\",\"ClientRequestId\":\"4fdf4166-832f-4ad7-a550-20a76b1d953a-2021-04-17 21:03:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"alJFKu+iPxCT7ZuQK/yL5275zD/8LCSorw303n5oJJQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066\",\r\n \"name\": \"9701a54e-4723-416b-9e38-97fafbc2e066\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a7629308-0e3c-4d71-b6f8-5c5372dfbcde-2018-08-17 12:30:23Z-Ps ActivityId: 29df8604-a09b-4e20-a170-249ef751c33d\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-17T12:31:30.8746116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:30:24.8849696Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a8dced36-ba36-5840-91b1-5412bdd3c96d\",\r\n \"targetObjectName\": \"a2aPrimaryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"a8dced36-ba36-5840-91b1-5412bdd3c96d\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric33\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "dffa26f1-e948-4df3-9ccf-405a9d9d9b1b-2018-08-17 12:31:31Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "bb98da71-814e-481d-8cea-3933c7389061" ], "x-ms-correlation-request-id": [ - "3d3a68cf-12c3-469d-a5f3-f17736728407" + "444d53d7-6844-4752-9882-b465e76686d0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123131Z:3d3a68cf-12c3-469d-a5f3-f17736728407" + "CENTRALUSEUAP:20210417T210327Z:444d53d7-6844-4752-9882-b465e76686d0" ], "Date": [ - "Fri, 17 Aug 2018 12:31:31 GMT" + "Sat, 17 Apr 2021 21:03:26 GMT" + ], + "Content-Length": [ + "1315" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304\",\r\n \"name\": \"3e0365be-51d1-4d84-a6fe-c461cd505304\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"9f44be65-19e0-4284-a505-97a25076768d ActivityId: 47c52fe7-b3d2-4df2-abdb-3f5ce4e20e82\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:02:25.0066088Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:02:24.4666289Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"dc155ffd-fdfc-52c9-8511-65ca522f6f98\",\r\n \"targetObjectName\": \"a2aPrimaryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"dc155ffd-fdfc-52c9-8511-65ca522f6f98\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric33\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzk3MDFhNTRlLTQ3MjMtNDE2Yi05ZTM4LTk3ZmFmYmMyZTA2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzNlMDM2NWJlLTUxZDEtNGQ4NC1hNmZlLWM0NjFjZDUwNTMwND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1329e316-d222-4dbe-bb8f-dab4113ee4e2-2018-08-17 12:31:52Z-Ps" + "3b2a6ff6-26a6-4861-b555-3e9329c3f5ef" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505512064)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110312064)\\/\",\"ClientRequestId\":\"1329e316-d222-4dbe-bb8f-dab4113ee4e2-2018-08-17 12:31:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xv8TsiMinI/SORtZ8fwouZkQA8/x8GwFOISxBmt3jZ8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689827627)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294627627)\\/\",\"ClientRequestId\":\"4e346482-62f0-4d46-b845-aaf24a524dc0-2021-04-17 21:03:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VLs4kwbhhHhL3pA+8VbdV/UVtOxRxt2NV4nEqKlf3/Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066\",\r\n \"name\": \"9701a54e-4723-416b-9e38-97fafbc2e066\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a7629308-0e3c-4d71-b6f8-5c5372dfbcde-2018-08-17 12:30:23Z-Ps ActivityId: 29df8604-a09b-4e20-a170-249ef751c33d\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-17T12:31:30.8746116Z\",\r\n \"endTime\": \"2018-08-17T12:31:31.2478295Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:30:24.8849696Z\",\r\n \"endTime\": \"2018-08-17T12:31:31Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a8dced36-ba36-5840-91b1-5412bdd3c96d\",\r\n \"targetObjectName\": \"a2aPrimaryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"a8dced36-ba36-5840-91b1-5412bdd3c96d\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric33\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1377" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9701a54e-4723-416b-9e38-97fafbc2e066" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1329e316-d222-4dbe-bb8f-dab4113ee4e2-2018-08-17 12:31:52Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "3b2a6ff6-26a6-4861-b555-3e9329c3f5ef" ], "x-ms-correlation-request-id": [ - "4872b7f9-b75c-457a-8486-0d10947fc2e1" + "cda16d23-555f-4f91-a020-d164a1716fe9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123152Z:4872b7f9-b75c-457a-8486-0d10947fc2e1" + "CENTRALUSEUAP:20210417T210347Z:cda16d23-555f-4f91-a020-d164a1716fe9" ], "Date": [ - "Fri, 17 Aug 2018 12:31:52 GMT" + "Sat, 17 Apr 2021 21:03:47 GMT" + ], + "Content-Length": [ + "1352" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/3e0365be-51d1-4d84-a6fe-c461cd505304\",\r\n \"name\": \"3e0365be-51d1-4d84-a6fe-c461cd505304\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"9f44be65-19e0-4284-a505-97a25076768d ActivityId: 47c52fe7-b3d2-4df2-abdb-3f5ce4e20e82\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:03:30.473672Z\",\r\n \"endTime\": \"2021-04-17T21:03:30.6787446Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:02:24.4666289Z\",\r\n \"endTime\": \"2021-04-17T21:03:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"dc155ffd-fdfc-52c9-8511-65ca522f6f98\",\r\n \"targetObjectName\": \"a2aPrimaryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"dc155ffd-fdfc-52c9-8511-65ca522f6f98\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric33\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMzMz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMzMz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4838f2b0-67d3-4dbc-bd9f-f8916778ea47-2018-08-17 12:31:52Z-Ps" + "0929ece9-dd9b-4e88-87df-6e1db2a18e3c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505512853)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110312853)\\/\",\"ClientRequestId\":\"4838f2b0-67d3-4dbc-bd9f-f8916778ea47-2018-08-17 12:31:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"O2xQsaTtSA4Z2Pi0WTYH1tgMihbVKfsm2n3T1B4XL3M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689828050)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294628050)\\/\",\"ClientRequestId\":\"b2e70188-0c6f-47b0-b859-af2870fbec91-2021-04-17 21:03:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ttCV8A8cr/3tWS6Xc+nweH5FFGeMQ/UBOA8opBnCueU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric33\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33\",\r\n \"properties\": {\r\n \"friendlyName\": \"West US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"a8dced36-ba36-5840-91b1-5412bdd3c96d\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westus\",\r\n \"containerIds\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "668" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "4838f2b0-67d3-4dbc-bd9f-f8916778ea47-2018-08-17 12:31:52Z-Ps 8/17/2018 12:31:53 PM" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "0929ece9-dd9b-4e88-87df-6e1db2a18e3c 4/17/2021 9:03:48 PM" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "4838f2b0-67d3-4dbc-bd9f-f8916778ea47-2018-08-17 12:31:52Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "0929ece9-dd9b-4e88-87df-6e1db2a18e3c" ], "x-ms-correlation-request-id": [ - "d4376071-a1a8-4b01-8194-23f8a0c60466" + "fa5122d7-1c0a-4182-a2d0-0333f757a2c3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123153Z:d4376071-a1a8-4b01-8194-23f8a0c60466" + "CENTRALUSEUAP:20210417T210348Z:fa5122d7-1c0a-4182-a2d0-0333f757a2c3" ], "Date": [ - "Fri, 17 Aug 2018 12:31:53 GMT" + "Sat, 17 Apr 2021 21:03:48 GMT" + ], + "Content-Length": [ + "679" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric33\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"dc155ffd-fdfc-52c9-8511-65ca522f6f98\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMzMz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMzMz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "62e574f6-3934-4ede-ae0d-6e0e44a09254-2018-08-17 12:33:22Z-Ps" + "d107cd7f-dd31-4e87-9c05-56126b3956c2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505602288)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110402288)\\/\",\"ClientRequestId\":\"62e574f6-3934-4ede-ae0d-6e0e44a09254-2018-08-17 12:33:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dvz3qpyqaEM/cHcOs4WDEiqeD0+sQjpt5f5IJzPPxGY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689912154)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294712154)\\/\",\"ClientRequestId\":\"f106f5ae-b86e-46b0-80b0-315d3d7de6e2-2021-04-17 21:05:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"U+YWDCd6aDa0bhk7L9jfpoOp29ToiXlKrp4NuPNoR8s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric33\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33\",\r\n \"properties\": {\r\n \"friendlyName\": \"West US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"a8dced36-ba36-5840-91b1-5412bdd3c96d\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westus\",\r\n \"containerIds\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "668" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "62e574f6-3934-4ede-ae0d-6e0e44a09254-2018-08-17 12:33:22Z-Ps 8/17/2018 12:33:22 PM" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "d107cd7f-dd31-4e87-9c05-56126b3956c2 4/17/2021 9:05:12 PM" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "62e574f6-3934-4ede-ae0d-6e0e44a09254-2018-08-17 12:33:22Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "d107cd7f-dd31-4e87-9c05-56126b3956c2" ], "x-ms-correlation-request-id": [ - "8beab4a2-b62d-49ca-8055-e260fcbdd11b" + "519e18e3-5698-4069-ba2a-ca10748a1bb9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123322Z:8beab4a2-b62d-49ca-8055-e260fcbdd11b" + "CENTRALUSEUAP:20210417T210512Z:519e18e3-5698-4069-ba2a-ca10748a1bb9" ], "Date": [ - "Fri, 17 Aug 2018 12:33:22 GMT" + "Sat, 17 Apr 2021 21:05:12 GMT" + ], + "Content-Length": [ + "679" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric33\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"dc155ffd-fdfc-52c9-8511-65ca522f6f98\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aRecoveryFabric33?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25GYWJyaWNzL2EyYVJlY292ZXJ5RmFicmljMzM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aRecoveryFabric33?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25GYWJyaWNzL2EyYVJlY292ZXJ5RmFicmljMzM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"WestCentralUS\"\r\n }\r\n }\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "119" - ], "x-ms-client-request-id": [ - "b8241f72-d5df-4b90-bd5b-f8c64cea0175-2018-08-17 12:31:53Z-Ps" + "f60055fe-0cd0-43ba-8e76-2a422a8cf285" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505513895)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110313895)\\/\",\"ClientRequestId\":\"b8241f72-d5df-4b90-bd5b-f8c64cea0175-2018-08-17 12:31:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9sFgPYg8a/3GPQwPbxE11peVvZw+xdLRZdXXq1NbUdk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689828611)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294628611)\\/\",\"ClientRequestId\":\"85435d1f-b308-4c3c-997d-bd167ce428fe-2021-04-17 21:03:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mEEVpkca9AWFh/sCxsL9dPki/zDiiydD9Sd+aHdGKVQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "126" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aRecoveryFabric33/operationresults/b0356cea-b806-49ae-8f9a-71ef577690c4?api-version=2021-02-10" + ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66", - "b8241f72-d5df-4b90-bd5b-f8c64cea0175-2018-08-17 12:31:53Z-Ps 8/17/2018 12:31:55 PM" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationOperationStatus/9598a55c-12ea-4a0a-85da-702ef11b0a66?api-version=2018-07-10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationOperationStatus/b0356cea-b806-49ae-8f9a-71ef577690c4?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b8241f72-d5df-4b90-bd5b-f8c64cea0175-2018-08-17 12:31:53Z-Ps" + "f60055fe-0cd0-43ba-8e76-2a422a8cf285" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "70caf5c2-f47e-4284-9aa3-87ee23ba30f9" + "4473525b-a1f7-40dd-aaf9-ca5f0e072a49" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123155Z:70caf5c2-f47e-4284-9aa3-87ee23ba30f9" - ], - "Cache-Control": [ - "no-cache" + "CENTRALUSEUAP:20210417T210349Z:4473525b-a1f7-40dd-aaf9-ca5f0e072a49" ], "Date": [ - "Fri, 17 Aug 2018 12:31:55 GMT" + "Sat, 17 Apr 2021 21:03:48 GMT" ], - "Location": [ - "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aRecoveryFabric33/operationresults/9598a55c-12ea-4a0a-85da-702ef11b0a66?api-version=2018-07-10" + "Expires": [ + "-1" ], - "X-Powered-By": [ - "ASP.NET" + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzk1OThhNTVjLTEyZWEtNGEwYS04NWRhLTcwMmVmMTFiMGE2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzL2IwMzU2Y2VhLWI4MDYtNDlhZS04ZjlhLTcxZWY1Nzc2OTBjND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "784d0ea2-496b-4b68-a2b0-36038395b649-2018-08-17 12:31:55Z-Ps" + "f60055fe-0cd0-43ba-8e76-2a422a8cf285" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505515263)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110315263)\\/\",\"ClientRequestId\":\"784d0ea2-496b-4b68-a2b0-36038395b649-2018-08-17 12:31:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MUH06W8RmaCzoms7M2DhUKpopzZ9C3OqMpKjMQ12iq4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689829323)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294629323)\\/\",\"ClientRequestId\":\"d5788e9e-25ca-4694-8396-c7b0d79c6ec3-2021-04-17 21:03:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rL5nlS+Q5o2VCCirkghMg+IaqP2Xoc68w/1Pd/UoVeI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66\",\r\n \"name\": \"9598a55c-12ea-4a0a-85da-702ef11b0a66\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b8241f72-d5df-4b90-bd5b-f8c64cea0175-2018-08-17 12:31:53Z-Ps ActivityId: 70caf5c2-f47e-4284-9aa3-87ee23ba30f9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-17T12:31:55.399343Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:31:55.064379Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e550a6e-a2fd-5ece-8cec-916d9e8b9015\",\r\n \"targetObjectName\": \"a2aRecoveryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"5e550a6e-a2fd-5ece-8cec-916d9e8b9015\",\r\n \"PrimaryVmmName\": \"a2aRecoveryFabric33\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "784d0ea2-496b-4b68-a2b0-36038395b649-2018-08-17 12:31:55Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "f60055fe-0cd0-43ba-8e76-2a422a8cf285" ], "x-ms-correlation-request-id": [ - "0ec44912-2063-4777-87b2-e9c9f4a2ca87" + "17ee53f0-12ae-4fd9-bcf3-8f7dc7bddea8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123155Z:0ec44912-2063-4777-87b2-e9c9f4a2ca87" + "CENTRALUSEUAP:20210417T210349Z:17ee53f0-12ae-4fd9-bcf3-8f7dc7bddea8" ], "Date": [ - "Fri, 17 Aug 2018 12:31:55 GMT" + "Sat, 17 Apr 2021 21:03:49 GMT" + ], + "Content-Length": [ + "1316" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4\",\r\n \"name\": \"b0356cea-b806-49ae-8f9a-71ef577690c4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f60055fe-0cd0-43ba-8e76-2a422a8cf285 ActivityId: 4473525b-a1f7-40dd-aaf9-ca5f0e072a49\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:03:49.231887Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:03:48.9645739Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b0ff76a3-57db-5cde-beac-6be73ca5cf8c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b0ff76a3-57db-5cde-beac-6be73ca5cf8c\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric33\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzk1OThhNTVjLTEyZWEtNGEwYS04NWRhLTcwMmVmMTFiMGE2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzL2IwMzU2Y2VhLWI4MDYtNDlhZS04ZjlhLTcxZWY1Nzc2OTBjND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf1cfdee-3bf6-468c-8d36-b7d42e365074-2018-08-17 12:31:56Z-Ps" + "44935ff0-048e-485f-9e98-9bc1a04bd714" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505516057)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110316057)\\/\",\"ClientRequestId\":\"cf1cfdee-3bf6-468c-8d36-b7d42e365074-2018-08-17 12:31:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0c27MSWrAfIcDEbsGa2g35nUu6vBVnkZl4kiwqs6YII=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689829713)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294629713)\\/\",\"ClientRequestId\":\"73e9bc36-40c1-489b-8d5e-c655e634d3f4-2021-04-17 21:03:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OFNF8hJowjzjmrLpSqusP+febnXo9Ha1gfNAPE6GRJ0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66\",\r\n \"name\": \"9598a55c-12ea-4a0a-85da-702ef11b0a66\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b8241f72-d5df-4b90-bd5b-f8c64cea0175-2018-08-17 12:31:53Z-Ps ActivityId: 70caf5c2-f47e-4284-9aa3-87ee23ba30f9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-17T12:31:55.399343Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:31:55.064379Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e550a6e-a2fd-5ece-8cec-916d9e8b9015\",\r\n \"targetObjectName\": \"a2aRecoveryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"5e550a6e-a2fd-5ece-8cec-916d9e8b9015\",\r\n \"PrimaryVmmName\": \"a2aRecoveryFabric33\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "cf1cfdee-3bf6-468c-8d36-b7d42e365074-2018-08-17 12:31:56Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "44935ff0-048e-485f-9e98-9bc1a04bd714" ], "x-ms-correlation-request-id": [ - "501f7a6a-7809-4f01-a234-6f0811f0b43c" + "76372183-11e3-4acb-b682-cb08c6e443a7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123156Z:501f7a6a-7809-4f01-a234-6f0811f0b43c" + "CENTRALUSEUAP:20210417T210349Z:76372183-11e3-4acb-b682-cb08c6e443a7" ], "Date": [ - "Fri, 17 Aug 2018 12:31:56 GMT" + "Sat, 17 Apr 2021 21:03:49 GMT" + ], + "Content-Length": [ + "1316" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4\",\r\n \"name\": \"b0356cea-b806-49ae-8f9a-71ef577690c4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f60055fe-0cd0-43ba-8e76-2a422a8cf285 ActivityId: 4473525b-a1f7-40dd-aaf9-ca5f0e072a49\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:03:49.231887Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:03:48.9645739Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b0ff76a3-57db-5cde-beac-6be73ca5cf8c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b0ff76a3-57db-5cde-beac-6be73ca5cf8c\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric33\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzk1OThhNTVjLTEyZWEtNGEwYS04NWRhLTcwMmVmMTFiMGE2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzL2IwMzU2Y2VhLWI4MDYtNDlhZS04ZjlhLTcxZWY1Nzc2OTBjND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92c04ccc-5402-4e23-b9ca-32069008d2e5-2018-08-17 12:32:17Z-Ps" + "444869d9-bdb3-434f-ad64-7aaecbc13a7e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505537054)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110337054)\\/\",\"ClientRequestId\":\"92c04ccc-5402-4e23-b9ca-32069008d2e5-2018-08-17 12:32:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pkoHviXy3aZ9XaeVBmwcSp5NInyrDuieKo1xWTilClg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689850107)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294650107)\\/\",\"ClientRequestId\":\"8a72f6fe-e51f-4797-9368-b84fa4a998a4-2021-04-17 21:04:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"k3YlODaWhYQpOGaahe1Uhj+rHFYVYVx4mWT45SfPb1w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66\",\r\n \"name\": \"9598a55c-12ea-4a0a-85da-702ef11b0a66\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b8241f72-d5df-4b90-bd5b-f8c64cea0175-2018-08-17 12:31:53Z-Ps ActivityId: 70caf5c2-f47e-4284-9aa3-87ee23ba30f9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-17T12:31:55.399343Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:31:55.064379Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e550a6e-a2fd-5ece-8cec-916d9e8b9015\",\r\n \"targetObjectName\": \"a2aRecoveryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"5e550a6e-a2fd-5ece-8cec-916d9e8b9015\",\r\n \"PrimaryVmmName\": \"a2aRecoveryFabric33\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "92c04ccc-5402-4e23-b9ca-32069008d2e5-2018-08-17 12:32:17Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14946" + "444869d9-bdb3-434f-ad64-7aaecbc13a7e" ], "x-ms-correlation-request-id": [ - "8312f0c8-c80c-4186-b7f3-273fd058ce23" + "477f6314-61b8-4216-b25c-842855cfb543" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123217Z:8312f0c8-c80c-4186-b7f3-273fd058ce23" + "CENTRALUSEUAP:20210417T210410Z:477f6314-61b8-4216-b25c-842855cfb543" ], "Date": [ - "Fri, 17 Aug 2018 12:32:17 GMT" + "Sat, 17 Apr 2021 21:04:09 GMT" + ], + "Content-Length": [ + "1316" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4\",\r\n \"name\": \"b0356cea-b806-49ae-8f9a-71ef577690c4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f60055fe-0cd0-43ba-8e76-2a422a8cf285 ActivityId: 4473525b-a1f7-40dd-aaf9-ca5f0e072a49\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:03:49.231887Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:03:48.9645739Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b0ff76a3-57db-5cde-beac-6be73ca5cf8c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b0ff76a3-57db-5cde-beac-6be73ca5cf8c\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric33\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzk1OThhNTVjLTEyZWEtNGEwYS04NWRhLTcwMmVmMTFiMGE2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzL2IwMzU2Y2VhLWI4MDYtNDlhZS04ZjlhLTcxZWY1Nzc2OTBjND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69cdfe9b-bdb1-405b-84ee-e1bf51692db4-2018-08-17 12:32:38Z-Ps" + "a3b26a1f-dfb3-426d-b6d9-46c6ecc96745" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505558318)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110358318)\\/\",\"ClientRequestId\":\"69cdfe9b-bdb1-405b-84ee-e1bf51692db4-2018-08-17 12:32:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uBA02dRa98a2GKyyRvQqtWgz5I+n9Me5Am604nssMfY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689870500)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294670500)\\/\",\"ClientRequestId\":\"af8ebd62-8167-4285-8997-68b01f41a9c5-2021-04-17 21:04:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"i6JCxgw2vNAMusqLfVCYnnl4r7JT1WKz9QAlUU5RV4w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66\",\r\n \"name\": \"9598a55c-12ea-4a0a-85da-702ef11b0a66\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b8241f72-d5df-4b90-bd5b-f8c64cea0175-2018-08-17 12:31:53Z-Ps ActivityId: 70caf5c2-f47e-4284-9aa3-87ee23ba30f9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-17T12:31:55.399343Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:31:55.064379Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e550a6e-a2fd-5ece-8cec-916d9e8b9015\",\r\n \"targetObjectName\": \"a2aRecoveryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"5e550a6e-a2fd-5ece-8cec-916d9e8b9015\",\r\n \"PrimaryVmmName\": \"a2aRecoveryFabric33\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "69cdfe9b-bdb1-405b-84ee-e1bf51692db4-2018-08-17 12:32:38Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14945" + "a3b26a1f-dfb3-426d-b6d9-46c6ecc96745" ], "x-ms-correlation-request-id": [ - "6f422a24-987a-411c-a366-e935ebba0b25" + "203fa789-85b6-4f85-b0b2-5885a44b3adb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123238Z:6f422a24-987a-411c-a366-e935ebba0b25" + "CENTRALUSEUAP:20210417T210430Z:203fa789-85b6-4f85-b0b2-5885a44b3adb" ], "Date": [ - "Fri, 17 Aug 2018 12:32:38 GMT" + "Sat, 17 Apr 2021 21:04:30 GMT" + ], + "Content-Length": [ + "1316" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4\",\r\n \"name\": \"b0356cea-b806-49ae-8f9a-71ef577690c4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f60055fe-0cd0-43ba-8e76-2a422a8cf285 ActivityId: 4473525b-a1f7-40dd-aaf9-ca5f0e072a49\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:03:49.231887Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:03:48.9645739Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b0ff76a3-57db-5cde-beac-6be73ca5cf8c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b0ff76a3-57db-5cde-beac-6be73ca5cf8c\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric33\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzk1OThhNTVjLTEyZWEtNGEwYS04NWRhLTcwMmVmMTFiMGE2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzL2IwMzU2Y2VhLWI4MDYtNDlhZS04ZjlhLTcxZWY1Nzc2OTBjND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69bbfb1b-2406-4104-949d-0028d5ea8726-2018-08-17 12:32:59Z-Ps" + "9aa95fe0-2e05-4a17-afe8-a5e2c4eb348e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505579108)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110379108)\\/\",\"ClientRequestId\":\"69bbfb1b-2406-4104-949d-0028d5ea8726-2018-08-17 12:32:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fr1+pffcoCElYCdQ2ANnlI+6wQYN6hwz5XSLe7jaqms=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689890899)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294690899)\\/\",\"ClientRequestId\":\"4cdb24da-831e-47db-8528-a5082461e2df-2021-04-17 21:04:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NWwjO7L+2zxG7CX04163wNjVpmTbwCwmFcpzDCSr51w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66\",\r\n \"name\": \"9598a55c-12ea-4a0a-85da-702ef11b0a66\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b8241f72-d5df-4b90-bd5b-f8c64cea0175-2018-08-17 12:31:53Z-Ps ActivityId: 70caf5c2-f47e-4284-9aa3-87ee23ba30f9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-17T12:31:55.399343Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:31:55.064379Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e550a6e-a2fd-5ece-8cec-916d9e8b9015\",\r\n \"targetObjectName\": \"a2aRecoveryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"5e550a6e-a2fd-5ece-8cec-916d9e8b9015\",\r\n \"PrimaryVmmName\": \"a2aRecoveryFabric33\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "69bbfb1b-2406-4104-949d-0028d5ea8726-2018-08-17 12:32:59Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14943" + "9aa95fe0-2e05-4a17-afe8-a5e2c4eb348e" ], "x-ms-correlation-request-id": [ - "c7a7d27f-c05e-4fe4-83eb-e7d30fc051a3" + "3ca06d8c-bbfb-4bdd-8852-25514e9ea7ec" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123259Z:c7a7d27f-c05e-4fe4-83eb-e7d30fc051a3" + "CENTRALUSEUAP:20210417T210451Z:3ca06d8c-bbfb-4bdd-8852-25514e9ea7ec" ], "Date": [ - "Fri, 17 Aug 2018 12:32:58 GMT" + "Sat, 17 Apr 2021 21:04:50 GMT" + ], + "Content-Length": [ + "1316" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4\",\r\n \"name\": \"b0356cea-b806-49ae-8f9a-71ef577690c4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f60055fe-0cd0-43ba-8e76-2a422a8cf285 ActivityId: 4473525b-a1f7-40dd-aaf9-ca5f0e072a49\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:03:49.231887Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:03:48.9645739Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b0ff76a3-57db-5cde-beac-6be73ca5cf8c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b0ff76a3-57db-5cde-beac-6be73ca5cf8c\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric33\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzk1OThhNTVjLTEyZWEtNGEwYS04NWRhLTcwMmVmMTFiMGE2Nj9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzL2IwMzU2Y2VhLWI4MDYtNDlhZS04ZjlhLTcxZWY1Nzc2OTBjND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e2bf686-b173-4499-8811-01bba9d5b303-2018-08-17 12:33:20Z-Ps" + "75e5690d-6dcb-4021-96c3-356abf3f637e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505600190)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110400190)\\/\",\"ClientRequestId\":\"9e2bf686-b173-4499-8811-01bba9d5b303-2018-08-17 12:33:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gJmXcE00wYg8mdtYI+51r9BBeBldQU9rPph+WXmkRMI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689911285)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294711285)\\/\",\"ClientRequestId\":\"31736447-8398-40f4-9e07-830565600ae1-2021-04-17 21:05:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bVr8eojSPd6kvhZI/BuhnLwbziqvOG9a1XOREuHxC5c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66\",\r\n \"name\": \"9598a55c-12ea-4a0a-85da-702ef11b0a66\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b8241f72-d5df-4b90-bd5b-f8c64cea0175-2018-08-17 12:31:53Z-Ps ActivityId: 70caf5c2-f47e-4284-9aa3-87ee23ba30f9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-17T12:33:01.1434086Z\",\r\n \"endTime\": \"2018-08-17T12:33:01.3630029Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:31:55.064379Z\",\r\n \"endTime\": \"2018-08-17T12:33:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e550a6e-a2fd-5ece-8cec-916d9e8b9015\",\r\n \"targetObjectName\": \"a2aRecoveryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"5e550a6e-a2fd-5ece-8cec-916d9e8b9015\",\r\n \"PrimaryVmmName\": \"a2aRecoveryFabric33\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1378" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/9598a55c-12ea-4a0a-85da-702ef11b0a66" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9e2bf686-b173-4499-8811-01bba9d5b303-2018-08-17 12:33:20Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "75e5690d-6dcb-4021-96c3-356abf3f637e" ], "x-ms-correlation-request-id": [ - "676fb2a9-4868-4338-9bc3-83e06d1d27dc" + "c8a615a5-122f-4804-a4d9-0efdaf5ad20a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123320Z:676fb2a9-4868-4338-9bc3-83e06d1d27dc" + "CENTRALUSEUAP:20210417T210511Z:c8a615a5-122f-4804-a4d9-0efdaf5ad20a" ], "Date": [ - "Fri, 17 Aug 2018 12:33:20 GMT" + "Sat, 17 Apr 2021 21:05:11 GMT" + ], + "Content-Length": [ + "1355" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/b0356cea-b806-49ae-8f9a-71ef577690c4\",\r\n \"name\": \"b0356cea-b806-49ae-8f9a-71ef577690c4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f60055fe-0cd0-43ba-8e76-2a422a8cf285 ActivityId: 4473525b-a1f7-40dd-aaf9-ca5f0e072a49\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-17T21:04:55.0472977Z\",\r\n \"endTime\": \"2021-04-17T21:04:55.2423014Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:03:48.9645739Z\",\r\n \"endTime\": \"2021-04-17T21:04:55Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b0ff76a3-57db-5cde-beac-6be73ca5cf8c\",\r\n \"targetObjectName\": \"a2aRecoveryFabric33\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b0ff76a3-57db-5cde-beac-6be73ca5cf8c\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric33\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aRecoveryFabric33?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25GYWJyaWNzL2EyYVJlY292ZXJ5RmFicmljMzM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aRecoveryFabric33?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25GYWJyaWNzL2EyYVJlY292ZXJ5RmFicmljMzM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a11b67e6-1411-45e3-9b3e-7a0e2f6e2400-2018-08-17 12:33:21Z-Ps" + "990ac897-ebfe-4324-b544-e8babd39844e" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505601372)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110401372)\\/\",\"ClientRequestId\":\"a11b67e6-1411-45e3-9b3e-7a0e2f6e2400-2018-08-17 12:33:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/O7AAqpVFlVdusGjyIeu8mt3Q9oBOmhR9gbZZEEEfm0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689911721)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294711721)\\/\",\"ClientRequestId\":\"61f18f81-0e1b-4ea8-ac60-c9f9e0a61487-2021-04-17 21:05:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kE2Eaf/XoL5hAFLf5/yVRcMKIibm2679aKBviUyWaVg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric33\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aRecoveryFabric33\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"5e550a6e-a2fd-5ece-8cec-916d9e8b9015\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "670" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "a11b67e6-1411-45e3-9b3e-7a0e2f6e2400-2018-08-17 12:33:21Z-Ps 8/17/2018 12:33:21 PM" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "990ac897-ebfe-4324-b544-e8babd39844e 4/17/2021 9:05:11 PM" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a11b67e6-1411-45e3-9b3e-7a0e2f6e2400-2018-08-17 12:33:21Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "990ac897-ebfe-4324-b544-e8babd39844e" ], "x-ms-correlation-request-id": [ - "c45be46e-8b70-4534-ade6-762faeca9631" + "f6771acc-c5c4-4f0f-b648-9214477a1835" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123321Z:c45be46e-8b70-4534-ade6-762faeca9631" + "CENTRALUSEUAP:20210417T210511Z:f6771acc-c5c4-4f0f-b648-9214477a1835" ], "Date": [ - "Fri, 17 Aug 2018 12:33:21 GMT" + "Sat, 17 Apr 2021 21:05:11 GMT" + ], + "Content-Length": [ + "696" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric33\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aRecoveryFabric33\",\r\n \"properties\": {\r\n \"friendlyName\": \"West Central US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"b0ff76a3-57db-5cde-beac-6be73ca5cf8c\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westcentralus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aRecoveryFabric33?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25GYWJyaWNzL2EyYVJlY292ZXJ5RmFicmljMzM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aRecoveryFabric33?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25GYWJyaWNzL2EyYVJlY292ZXJ5RmFicmljMzM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e92b891-dc65-4400-8d31-d92bfc5cb9c6-2018-08-17 12:33:23Z-Ps" + "90a46fa4-1f70-49dd-b261-37a2b776a062" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505603324)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110403324)\\/\",\"ClientRequestId\":\"4e92b891-dc65-4400-8d31-d92bfc5cb9c6-2018-08-17 12:33:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rzEde4a1Lip4LZqRjfWr7Bcjvu4JlIGli32NsY7uLaw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689912601)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294712601)\\/\",\"ClientRequestId\":\"7eb6e1c8-a5f0-45ee-a25f-de5471ed3b16-2021-04-17 21:05:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8ZCAJCJaHdynMzSesWOo4O1E2mMJLi/UNqISVJZ3vV0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric33\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aRecoveryFabric33\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"5e550a6e-a2fd-5ece-8cec-916d9e8b9015\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "670" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "4e92b891-dc65-4400-8d31-d92bfc5cb9c6-2018-08-17 12:33:23Z-Ps 8/17/2018 12:33:23 PM" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "90a46fa4-1f70-49dd-b261-37a2b776a062 4/17/2021 9:05:12 PM" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "4e92b891-dc65-4400-8d31-d92bfc5cb9c6-2018-08-17 12:33:23Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "90a46fa4-1f70-49dd-b261-37a2b776a062" ], "x-ms-correlation-request-id": [ - "5f307453-4bdb-4ca7-8e0f-0efa1a9ffa86" + "66b05782-2d39-4dd7-a206-68a9ab187cef" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123323Z:5f307453-4bdb-4ca7-8e0f-0efa1a9ffa86" + "CENTRALUSEUAP:20210417T210512Z:66b05782-2d39-4dd7-a206-68a9ab187cef" ], "Date": [ - "Fri, 17 Aug 2018 12:33:23 GMT" + "Sat, 17 Apr 2021 21:05:12 GMT" + ], + "Content-Length": [ + "696" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric33\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aRecoveryFabric33\",\r\n \"properties\": {\r\n \"friendlyName\": \"West Central US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"b0ff76a3-57db-5cde-beac-6be73ca5cf8c\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westcentralus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33/replicationProtectionContainers/A2APrimaryContainer33?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMzMy9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzMz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33/replicationProtectionContainers/A2APrimaryContainer33?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMzMy9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzMz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {}\r\n}", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "24" - ], "x-ms-client-request-id": [ - "ec3128fd-755e-4604-acfe-e0f9471d059a-2018-08-17 12:33:24Z-Ps" + "380e5b24-f460-43f8-9341-e1a857a0bf32" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505604265)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110404265)\\/\",\"ClientRequestId\":\"ec3128fd-755e-4604-acfe-e0f9471d059a-2018-08-17 12:33:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OAXoe7tHwZbuQ11G8B7+tRCZ+PfP4QpMsLciWfXO0mI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689913020)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294713020)\\/\",\"ClientRequestId\":\"1810eb6f-9f67-4a5e-af92-56865c7b5227-2021-04-17 21:05:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"icabD40q8KImqx+BLQ4xQmyCS5DLdIG9vEiGX45LO5w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "24" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33/replicationProtectionContainers/A2APrimaryContainer33/operationresults/2089a21c-4899-4aab-8945-86e6d69587b2?api-version=2021-02-10" + ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/ffdd10b8-3677-4e37-9390-6e6bfb338488", - "ec3128fd-755e-4604-acfe-e0f9471d059a-2018-08-17 12:33:24Z-Ps 8/17/2018 12:33:25 PM" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/2089a21c-4899-4aab-8945-86e6d69587b2", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/2089a21c-4899-4aab-8945-86e6d69587b2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationOperationStatus/ffdd10b8-3677-4e37-9390-6e6bfb338488?api-version=2018-07-10" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationOperationStatus/2089a21c-4899-4aab-8945-86e6d69587b2?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ec3128fd-755e-4604-acfe-e0f9471d059a-2018-08-17 12:33:24Z-Ps" + "380e5b24-f460-43f8-9341-e1a857a0bf32" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "035b1a1e-62dc-4d0e-a8a3-908601e057e7" + "214e9975-62b5-4d36-b9ef-617ec951040d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123325Z:035b1a1e-62dc-4d0e-a8a3-908601e057e7" - ], - "Cache-Control": [ - "no-cache" + "CENTRALUSEUAP:20210417T210513Z:214e9975-62b5-4d36-b9ef-617ec951040d" ], "Date": [ - "Fri, 17 Aug 2018 12:33:25 GMT" + "Sat, 17 Apr 2021 21:05:13 GMT" ], - "Location": [ - "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33/replicationProtectionContainers/A2APrimaryContainer33/operationresults/ffdd10b8-3677-4e37-9390-6e6bfb338488?api-version=2018-07-10" + "Expires": [ + "-1" ], - "X-Powered-By": [ - "ASP.NET" + "Content-Length": [ + "0" ] }, + "ResponseBody": "", "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/ffdd10b8-3677-4e37-9390-6e6bfb338488?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzL2ZmZGQxMGI4LTM2NzctNGUzNy05MzkwLTZlNmJmYjMzODQ4OD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/2089a21c-4899-4aab-8945-86e6d69587b2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzIwODlhMjFjLTQ4OTktNGFhYi04OTQ1LTg2ZTZkNjk1ODdiMj9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81716488-cfe4-4d79-af41-57f313acdaf5-2018-08-17 12:33:25Z-Ps" + "380e5b24-f460-43f8-9341-e1a857a0bf32" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505605974)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110405974)\\/\",\"ClientRequestId\":\"81716488-cfe4-4d79-af41-57f313acdaf5-2018-08-17 12:33:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/nY1B2UQDn9FYGgTy9wapJSYdbzy0UeGxoFXuKCYbPw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689913746)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294713746)\\/\",\"ClientRequestId\":\"a216c98c-bb79-43c2-aa6f-37d01e31fb18-2021-04-17 21:05:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"A5vWlnDXFBFPJM0myIabFJMkVOBgeuVAR0s2U9lIrC4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/ffdd10b8-3677-4e37-9390-6e6bfb338488\",\r\n \"name\": \"ffdd10b8-3677-4e37-9390-6e6bfb338488\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ec3128fd-755e-4604-acfe-e0f9471d059a-2018-08-17 12:33:24Z-Ps ActivityId: 035b1a1e-62dc-4d0e-a8a3-908601e057e7\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2018-08-17T12:33:25.8105536Z\",\r\n \"endTime\": \"2018-08-17T12:33:25.8418116Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2018-08-17T12:33:25.8418116Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:33:25.6070078Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ec3e109d-9e0c-5a35-9d5f-1f892f14586f\",\r\n \"targetObjectName\": \"A2APrimaryContainer33\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"a8dced36-ba36-5840-91b1-5412bdd3c96d\",\r\n \"PrimaryVmmName\": \"West US\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1790" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/ffdd10b8-3677-4e37-9390-6e6bfb338488" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/2089a21c-4899-4aab-8945-86e6d69587b2" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "81716488-cfe4-4d79-af41-57f313acdaf5-2018-08-17 12:33:25Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "380e5b24-f460-43f8-9341-e1a857a0bf32" ], "x-ms-correlation-request-id": [ - "df7070de-fed5-4d02-b5ff-0489ab65c752" + "a83923d3-b3a4-4c69-8136-bdbbc7e56e0e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123326Z:df7070de-fed5-4d02-b5ff-0489ab65c752" + "CENTRALUSEUAP:20210417T210513Z:a83923d3-b3a4-4c69-8136-bdbbc7e56e0e" ], "Date": [ - "Fri, 17 Aug 2018 12:33:26 GMT" + "Sat, 17 Apr 2021 21:05:13 GMT" + ], + "Content-Length": [ + "1794" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/2089a21c-4899-4aab-8945-86e6d69587b2\",\r\n \"name\": \"2089a21c-4899-4aab-8945-86e6d69587b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"380e5b24-f460-43f8-9341-e1a857a0bf32 ActivityId: 214e9975-62b5-4d36-b9ef-617ec951040d\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-17T21:05:13.7630773Z\",\r\n \"endTime\": \"2021-04-17T21:05:13.803077Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-17T21:05:13.803077Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:05:13.366853Z\",\r\n \"endTime\": \"2021-04-17T21:05:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3e38e5c9-b044-5a2d-9c92-2ac401a1886c\",\r\n \"targetObjectName\": \"A2APrimaryContainer33\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"dc155ffd-fdfc-52c9-8511-65ca522f6f98\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/ffdd10b8-3677-4e37-9390-6e6bfb338488?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzL2ZmZGQxMGI4LTM2NzctNGUzNy05MzkwLTZlNmJmYjMzODQ4OD9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/2089a21c-4899-4aab-8945-86e6d69587b2?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25Kb2JzLzIwODlhMjFjLTQ4OTktNGFhYi04OTQ1LTg2ZTZkNjk1ODdiMj9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a005c31d-9616-4582-bafd-a9cb79218ab9-2018-08-17 12:33:26Z-Ps" + "8c873470-4da4-49ba-aa62-f835f5ea2455" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505606891)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110406891)\\/\",\"ClientRequestId\":\"a005c31d-9616-4582-bafd-a9cb79218ab9-2018-08-17 12:33:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZfLmbs+Vcyof+BWGdnaIzVAUiU2+c/10X0Lux8fTs4c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689914138)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294714138)\\/\",\"ClientRequestId\":\"b110d69a-07f5-4093-9b18-c5c4f308adc0-2021-04-17 21:05:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4iNmWT8YnLEF0MMU8fJUmJSwp8fNZfQcYJcuRHQ0tb4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/ffdd10b8-3677-4e37-9390-6e6bfb338488\",\r\n \"name\": \"ffdd10b8-3677-4e37-9390-6e6bfb338488\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ec3128fd-755e-4604-acfe-e0f9471d059a-2018-08-17 12:33:24Z-Ps ActivityId: 035b1a1e-62dc-4d0e-a8a3-908601e057e7\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2018-08-17T12:33:25.8105536Z\",\r\n \"endTime\": \"2018-08-17T12:33:25.8730614Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2018-08-17T12:33:25.8730614Z\",\r\n \"endTime\": \"2018-08-17T12:33:25.8730614Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-17T12:33:25.6070078Z\",\r\n \"endTime\": \"2018-08-17T12:33:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ec3e109d-9e0c-5a35-9d5f-1f892f14586f\",\r\n \"targetObjectName\": \"A2APrimaryContainer33\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"a8dced36-ba36-5840-91b1-5412bdd3c96d\",\r\n \"PrimaryVmmName\": \"West US\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1828" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/ffdd10b8-3677-4e37-9390-6e6bfb338488" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/2089a21c-4899-4aab-8945-86e6d69587b2" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a005c31d-9616-4582-bafd-a9cb79218ab9-2018-08-17 12:33:26Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "8c873470-4da4-49ba-aa62-f835f5ea2455" ], "x-ms-correlation-request-id": [ - "9d2d4578-0274-4e33-89a3-72317552a661" + "16f44b39-cb02-4cdf-b3b9-3405cc8df605" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123327Z:9d2d4578-0274-4e33-89a3-72317552a661" + "CENTRALUSEUAP:20210417T210514Z:16f44b39-cb02-4cdf-b3b9-3405cc8df605" ], "Date": [ - "Fri, 17 Aug 2018 12:33:27 GMT" + "Sat, 17 Apr 2021 21:05:13 GMT" + ], + "Content-Length": [ + "1803" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationJobs/2089a21c-4899-4aab-8945-86e6d69587b2\",\r\n \"name\": \"2089a21c-4899-4aab-8945-86e6d69587b2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"380e5b24-f460-43f8-9341-e1a857a0bf32 ActivityId: 214e9975-62b5-4d36-b9ef-617ec951040d\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-17T21:05:13.7630773Z\",\r\n \"endTime\": \"2021-04-17T21:05:13.8330773Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-17T21:05:13.8330773Z\",\r\n \"endTime\": \"2021-04-17T21:05:13.8330773Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-17T21:05:13.366853Z\",\r\n \"endTime\": \"2021-04-17T21:05:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3e38e5c9-b044-5a2d-9c92-2ac401a1886c\",\r\n \"targetObjectName\": \"A2APrimaryContainer33\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"dc155ffd-fdfc-52c9-8511-65ca522f6f98\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33/replicationProtectionContainers/A2APrimaryContainer33?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMzMy9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzMz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33/replicationProtectionContainers/A2APrimaryContainer33?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMzMy9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzMz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45d9e996-83a2-4dd9-977a-b51f4f6b5d24-2018-08-17 12:33:27Z-Ps" + "8217e139-81ee-4bb2-a788-39ee87708474" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505607857)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110407857)\\/\",\"ClientRequestId\":\"45d9e996-83a2-4dd9-977a-b51f4f6b5d24-2018-08-17 12:33:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"p9faDPcCLYo2uHJRkOlDBwfemYOMlZ0uAFK6SAlQzuI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689914522)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294714522)\\/\",\"ClientRequestId\":\"e6d68308-b1f2-4871-ac3d-f47ba593bf9c-2021-04-17 21:05:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4c/v/ZNEJFavUSQG2CriiKogKWDVVx8cANM4Pg/LRug=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33/replicationProtectionContainers/A2APrimaryContainer33\",\r\n \"name\": \"A2APrimaryContainer33\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"West US\",\r\n \"friendlyName\": \"A2APrimaryContainer33\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "574" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "45d9e996-83a2-4dd9-977a-b51f4f6b5d24-2018-08-17 12:33:27Z-Ps 8/17/2018 12:33:28 PM" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "8217e139-81ee-4bb2-a788-39ee87708474 4/17/2021 9:05:14 PM" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "45d9e996-83a2-4dd9-977a-b51f4f6b5d24-2018-08-17 12:33:27Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "8217e139-81ee-4bb2-a788-39ee87708474" ], "x-ms-correlation-request-id": [ - "03a928e4-05b8-4d77-b4a4-19a2984e360a" + "466aa9fb-42da-43cf-9206-7efb00788f24" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123328Z:03a928e4-05b8-4d77-b4a4-19a2984e360a" + "CENTRALUSEUAP:20210417T210514Z:466aa9fb-42da-43cf-9206-7efb00788f24" ], "Date": [ - "Fri, 17 Aug 2018 12:33:28 GMT" + "Sat, 17 Apr 2021 21:05:14 GMT" + ], + "Content-Length": [ + "574" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33/replicationProtectionContainers/A2APrimaryContainer33\",\r\n \"name\": \"A2APrimaryContainer33\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"East US\",\r\n \"friendlyName\": \"A2APrimaryContainer33\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33/replicationProtectionContainers/A2APrimaryContainer33/replicationProtectionContainerMappings?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMzMy9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzMy9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg33/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest33/replicationFabrics/a2aPrimaryFabric33/replicationProtectionContainers/A2APrimaryContainer33/replicationProtectionContainerMappings?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczMy9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MzMvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMzMy9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzMy9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a782081-452f-44cb-a79d-d91295417a80-2018-08-17 12:33:28Z-Ps" + "8217e139-81ee-4bb2-a788-39ee87708474" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534505608280)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535110408280)\\/\",\"ClientRequestId\":\"8a782081-452f-44cb-a79d-d91295417a80-2018-08-17 12:33:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rnrviZWCDlQ31a9hjRFy96TEynjSJqu+7YhXhASCSzw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618689914944)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619294714944)\\/\",\"ClientRequestId\":\"6e12acd4-d75c-409e-89a5-c2185c238f73-2021-04-17 21:05:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EsUwGPbA3dWo+GKHAO/HAp9j3um+vaMpHMypkd1IyjE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", "ResponseHeaders": { - "Content-Length": [ - "28" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "8a782081-452f-44cb-a79d-d91295417a80-2018-08-17 12:33:28Z-Ps 8/17/2018 12:33:28 PM" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "8217e139-81ee-4bb2-a788-39ee87708474 4/17/2021 9:05:15 PM" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "8a782081-452f-44cb-a79d-d91295417a80-2018-08-17 12:33:28Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "8217e139-81ee-4bb2-a788-39ee87708474" ], "x-ms-correlation-request-id": [ - "cbd519d6-a701-47b5-a8b7-8974a488780c" + "d8e7acbe-41aa-446e-a630-d0b2a59b799b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180817T123328Z:cbd519d6-a701-47b5-a8b7-8974a488780c" + "CENTRALUSEUAP:20210417T210515Z:d8e7acbe-41aa-446e-a630-d0b2a59b799b" ], "Date": [ - "Fri, 17 Aug 2018 12:33:28 GMT" + "Sat, 17 Apr 2021 21:05:14 GMT" + ], + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "7c943c1b-5122-4097-90c8-861411bdd574" + "SubscriptionId": "509099b2-9d2c-4636-b43e-bd5cafb6be69" } -} +} \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2AVMSSReplication.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2AVMSSReplication.json new file mode 100644 index 000000000000..9702a9a2bd1e --- /dev/null +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2AVMSSReplication.json @@ -0,0 +1,25826 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recRG1228?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL3JlY1JHMTIyOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0220fb20-d12b-43da-a2a0-3107c9d69f1b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "56b74629-c1ee-4315-ae3a-3648168305be" + ], + "x-ms-correlation-request-id": [ + "56b74629-c1ee-4315-ae3a-3648168305be" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195643Z:56b74629-c1ee-4315-ae3a-3648168305be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:56:42 GMT" + ], + "Content-Length": [ + "178" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228\",\r\n \"name\": \"recRG1228\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1228?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL0EyQVJlY292ZXJ5TmV0d29yazEyMjg/YXBpLXZlcnNpb249MjAyMC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a845567-0fc6-41da-9102-9afc3d064a58" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "7347f127-5111-40a3-b5fd-659d72e702b9" + ], + "x-ms-correlation-request-id": [ + "7347f127-5111-40a3-b5fd-659d72e702b9" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195705Z:7347f127-5111-40a3-b5fd-659d72e702b9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:57:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "237" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1228' under resource group 'recRG1228' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1228?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL0EyQVJlY292ZXJ5TmV0d29yazEyMjg/YXBpLXZlcnNpb249MjAyMC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a845567-0fc6-41da-9102-9afc3d064a58" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"e92dd2a8-b5f8-4c43-bf0c-8adf8b4ad7c8\"" + ], + "x-ms-request-id": [ + "5b0b6009-f913-4bd8-b143-3e37a79c00b5" + ], + "x-ms-correlation-request-id": [ + "70b89959-80c9-4bde-a8e6-78af92cc2358" + ], + "x-ms-arm-service-request-id": [ + "1a5663cc-0125-42b0-94bc-1c4d86af4bdb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195712Z:70b89959-80c9-4bde-a8e6-78af92cc2358" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:57:12 GMT" + ], + "Content-Length": [ + "1311" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1228\",\r\n \"etag\": \"W/\\\"e92dd2a8-b5f8-4c43-bf0c-8adf8b4ad7c8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"afaba2fc-df31-4d91-b891-2c2f36bd8ce8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1228/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"e92dd2a8-b5f8-4c43-bf0c-8adf8b4ad7c8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1228?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL0EyQVJlY292ZXJ5TmV0d29yazEyMjg/YXBpLXZlcnNpb249MjAyMC0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a845567-0fc6-41da-9102-9afc3d064a58" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"e92dd2a8-b5f8-4c43-bf0c-8adf8b4ad7c8\"" + ], + "x-ms-request-id": [ + "217138e3-d060-4be5-b9e7-f5e7b0d2372f" + ], + "x-ms-correlation-request-id": [ + "ce998051-8c56-45fc-8e4b-a29dcd4b7769" + ], + "x-ms-arm-service-request-id": [ + "e2a6f536-feb2-4935-80c7-d03a6070c7a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195713Z:ce998051-8c56-45fc-8e4b-a29dcd4b7769" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:57:12 GMT" + ], + "Content-Length": [ + "1311" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1228\",\r\n \"etag\": \"W/\\\"e92dd2a8-b5f8-4c43-bf0c-8adf8b4ad7c8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"afaba2fc-df31-4d91-b891-2c2f36bd8ce8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1228/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"e92dd2a8-b5f8-4c43-bf0c-8adf8b4ad7c8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1228?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL0EyQVJlY292ZXJ5TmV0d29yazEyMjg/YXBpLXZlcnNpb249MjAyMC0xMS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"frontendSubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"WestCentralUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a845567-0fc6-41da-9102-9afc3d064a58" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "692" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "5a260a49-55af-4c42-9e83-3f4ed5b0f46e" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westcentralus/operations/5a260a49-55af-4c42-9e83-3f4ed5b0f46e?api-version=2020-11-01" + ], + "x-ms-correlation-request-id": [ + "6806b7b2-3d3f-4a4d-b3f7-2b86b73ea4b0" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "7e81beb3-098a-4328-9f5b-dad51a765200" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195708Z:6806b7b2-3d3f-4a4d-b3f7-2b86b73ea4b0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:57:08 GMT" + ], + "Content-Length": [ + "1309" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1228\",\r\n \"etag\": \"W/\\\"faa8e91a-9984-4dbd-94b8-209960dc5fd3\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"afaba2fc-df31-4d91-b891-2c2f36bd8ce8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1228/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"faa8e91a-9984-4dbd-94b8-209960dc5fd3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westcentralus/operations/5a260a49-55af-4c42-9e83-3f4ed5b0f46e?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzVhMjYwYTQ5LTU1YWYtNGM0Mi05ZTgzLTNmNGVkNWIwZjQ2ZT9hcGktdmVyc2lvbj0yMDIwLTExLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a845567-0fc6-41da-9102-9afc3d064a58" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5ee00ac8-b932-48f6-9485-743b308bf8a2" + ], + "x-ms-correlation-request-id": [ + "9469a27e-0c55-4204-aca5-09c241867962" + ], + "x-ms-arm-service-request-id": [ + "704cbe83-a31c-4369-a475-89b868b26712" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195712Z:9469a27e-0c55-4204-aca5-09c241867962" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:57:12 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-asr?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVTY2FsZVNldHMvdm1zcy1hc3I/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"singlePlacementGroup\": false,\r\n \"platformFaultDomainCount\": 1\r\n },\r\n \"location\": \"WestCentralUS\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "295a74d4-b358-4904-9e44-76ac508fd41b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "146" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateVMScaleSet3Min;59,Microsoft.Compute/CreateVMScaleSet30Min;299" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2f1f1a9c-8229-4955-a91e-14edf5baa811" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "d02be0e0-c440-4440-a66e-e24d7cdfa8ba" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195716Z:d02be0e0-c440-4440-a66e-e24d7cdfa8ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:57:15 GMT" + ], + "Content-Length": [ + "601" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmss-asr\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-asr\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": false,\r\n \"orchestrationMode\": \"Flexible\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"d569d36c-700a-414a-889b-8958d03d3128\",\r\n \"platformFaultDomainCount\": 1\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1-asr?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVTY2FsZVNldHMvdm1zczEtYXNyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"singlePlacementGroup\": false,\r\n \"platformFaultDomainCount\": 1\r\n },\r\n \"location\": \"WestCentralUS\",\r\n \"tags\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eee1924b-9d73-480a-8492-2c60fd5b2ce9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "146" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/CreateVMScaleSet3Min;58,Microsoft.Compute/CreateVMScaleSet30Min;298" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "9d72dd83-e9b7-4347-87f2-a3d12b95f8fb" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "8ed7c786-5ff6-4f86-ad98-417096468af9" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195717Z:8ed7c786-5ff6-4f86-ad98-417096468af9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:57:16 GMT" + ], + "Content-Length": [ + "603" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vmss1-asr\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1-asr\",\r\n \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": false,\r\n \"orchestrationMode\": \"Flexible\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"uniqueId\": \"893223ab-aeea-48c1-a137-a1950394d929\",\r\n \"platformFaultDomainCount\": 1\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM1228?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNMTIyOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "777f3651-bebb-4fa7-abab-144465e47047" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "10ed9b6f-8575-487f-98c3-02cdfd8bfe53" + ], + "x-ms-correlation-request-id": [ + "10ed9b6f-8575-487f-98c3-02cdfd8bfe53" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195717Z:10ed9b6f-8575-487f-98c3-02cdfd8bfe53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:57:17 GMT" + ], + "Content-Length": [ + "171" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228\",\r\n \"name\": \"a2aVM1228\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Storage/storageAccounts/cache1228?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL2NhY2hlMTIyOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "75f60cb2-c9c0-4aa0-9fd0-0a3a61c70042" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "98" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/8cb6c3db-2725-45d8-b2b9-874c60b789bf?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "8cb6c3db-2725-45d8-b2b9-874c60b789bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "c8501374-1263-4aeb-9ccd-7f54bcfa10c5" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195741Z:c8501374-1263-4aeb-9ccd-7f54bcfa10c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:57:41 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/8cb6c3db-2725-45d8-b2b9-874c60b789bf?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy84Y2I2YzNkYi0yNzI1LTQ1ZDgtYjJiOS04NzRjNjBiNzg5YmY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/8cb6c3db-2725-45d8-b2b9-874c60b789bf?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "34b3cdcd-462c-432e-82cf-f4aed0c4c768" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "c62db59b-a35f-49bb-8af6-8763b04555f7" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195759Z:c62db59b-a35f-49bb-8af6-8763b04555f7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:57:58 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/8cb6c3db-2725-45d8-b2b9-874c60b789bf?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy84Y2I2YzNkYi0yNzI1LTQ1ZDgtYjJiOS04NzRjNjBiNzg5YmY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d5a20cb0-7a2a-4235-baa1-179001809dce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "5028c0b7-ff01-42a2-8c33-93883d776926" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195802Z:5028c0b7-ff01-42a2-8c33-93883d776926" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:02 GMT" + ], + "Content-Length": [ + "1034" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Storage/storageAccounts/cache1228\",\r\n \"name\": \"cache1228\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-18T19:57:40.2827852Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-18T19:57:40.2827852Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-04-18T19:57:40.1577466Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cache1228.blob.core.windows.net/\",\r\n \"queue\": \"https://cache1228.queue.core.windows.net/\",\r\n \"table\": \"https://cache1228.table.core.windows.net/\",\r\n \"file\": \"https://cache1228.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Storage/storageAccounts/rlog1228?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3Jsb2cxMjI4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"WestCentralUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "652f9ea6-f28c-42f0-b0a4-88d0d310448e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "105" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/997e926d-f30f-40ef-891d-3366d52638b5?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "997e926d-f30f-40ef-891d-3366d52638b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "c7d6a841-bace-444e-ad4d-7f88bb8baa63" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195805Z:c7d6a841-bace-444e-ad4d-7f88bb8baa63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:05 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/997e926d-f30f-40ef-891d-3366d52638b5?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvOTk3ZTkyNmQtZjMwZi00MGVmLTg5MWQtMzM2NmQ1MjYzOGI1P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c47736cc-cbc8-4eb7-b0f3-eceb064a84f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "1099a2f8-99ff-4420-8f30-7148873e548f" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195823Z:1099a2f8-99ff-4420-8f30-7148873e548f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:22 GMT" + ], + "Content-Length": [ + "1042" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Storage/storageAccounts/rlog1228\",\r\n \"name\": \"rlog1228\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-18T19:58:04.1102501Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-18T19:58:04.1102501Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-04-18T19:58:04.0320846Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://rlog1228.blob.core.windows.net/\",\r\n \"queue\": \"https://rlog1228.queue.core.windows.net/\",\r\n \"table\": \"https://rlog1228.table.core.windows.net/\",\r\n \"file\": \"https://rlog1228.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Compute/images/RHEL?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvaW1hZ2VzL1JIRUw/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "2396a618-ece2-4eb6-ad9c-51425a5d609d" + ], + "x-ms-correlation-request-id": [ + "2396a618-ece2-4eb6-ad9c-51425a5d609d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195824Z:2396a618-ece2-4eb6-ad9c-51425a5d609d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "210" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/images/RHEL' under resource group 'a2aVM1228' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "81550935-266a-47d0-94a5-07d64c7b40dd" + ], + "x-ms-correlation-request-id": [ + "81550935-266a-47d0-94a5-07d64c7b40dd" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195824Z:81550935-266a-47d0-94a5-07d64c7b40dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "59552" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n },\r\n {\r\n \"applicationId\": \"579d9c9d-4c83-4efc-8124-7eba65ed3356\",\r\n \"roleDefinitionId\": \"8c99c4ce-d744-4597-a2f0-0a0044d67560\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotEvictionRates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotPriceHistory\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/sharedGalleries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"diskAccesses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roles\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/csoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsVersions\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsFamilies\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/publicIPAddresses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups/capacityReservations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Compute/virtualMachines/a2aVM1228?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2EyYVZNMTIyOD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "83f676ae-0bab-498a-9314-288992d2be84" + ], + "x-ms-correlation-request-id": [ + "83f676ae-0bab-498a-9314-288992d2be84" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195825Z:83f676ae-0bab-498a-9314-288992d2be84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "224" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/a2aVM1228' under resource group 'a2aVM1228' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Compute/virtualMachines/a2aVM1228?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2EyYVZNMTIyOD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31982" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "69fdd907-666e-49e4-9971-63b9b00ba1ab" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11736" + ], + "x-ms-correlation-request-id": [ + "7e022b05-780b-46be-8a9c-bff042485f07" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195958Z:7e022b05-780b-46be-8a9c-bff042485f07" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:59:58 GMT" + ], + "Content-Length": [ + "1906" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Compute/virtualMachines/a2aVM1228\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"d28d3969-ce2c-4f13-b202-c3ece8c1a7cf\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Compute/disks/a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM1228\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkInterfaces/a2aVM1228\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Compute/virtualMachines/a2aVM1228?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2EyYVZNMTIyOD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3c6e4e98-07ae-43d7-80b5-7fc47846e5d5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31981" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c4516796-71d9-48ed-9328-fd8f3367e37f" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11735" + ], + "x-ms-correlation-request-id": [ + "f93d46e0-ad06-4829-b2ad-c3281606d13e" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195959Z:f93d46e0-ad06-4829-b2ad-c3281606d13e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:59:58 GMT" + ], + "Content-Length": [ + "1906" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Compute/virtualMachines/a2aVM1228\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"d28d3969-ce2c-4f13-b202-c3ece8c1a7cf\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Compute/disks/a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM1228\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkInterfaces/a2aVM1228\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM1228?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNMTIyOD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "5715ee9f-3323-4fa3-a6b3-3413676a6ae5" + ], + "x-ms-correlation-request-id": [ + "5715ee9f-3323-4fa3-a6b3-3413676a6ae5" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195826Z:5715ee9f-3323-4fa3-a6b3-3413676a6ae5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "171" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228\",\r\n \"name\": \"a2aVM1228\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkInterfaces/a2aVM1228?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYTJhVk0xMjI4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "41967d01-64c1-4358-81cb-62023d5c1355" + ], + "x-ms-correlation-request-id": [ + "41967d01-64c1-4358-81cb-62023d5c1355" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195827Z:41967d01-64c1-4358-81cb-62023d5c1355" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "226" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/a2aVM1228' under resource group 'a2aVM1228' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkInterfaces/a2aVM1228?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYTJhVk0xMjI4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"00f06c8b-1717-420a-9bee-030e50202c77\"" + ], + "x-ms-request-id": [ + "a7a3f43c-d125-490c-b72f-03ad273203b8" + ], + "x-ms-correlation-request-id": [ + "c2d762e2-be93-4f7e-8b70-04a98d6b556e" + ], + "x-ms-arm-service-request-id": [ + "b9e193dc-e47c-404d-8e1e-a9922a196dff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11740" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195835Z:c2d762e2-be93-4f7e-8b70-04a98d6b556e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:34 GMT" + ], + "Content-Length": [ + "1927" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkInterfaces/a2aVM1228\",\r\n \"etag\": \"W/\\\"00f06c8b-1717-420a-9bee-030e50202c77\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0ff3b770-16f6-4830-baee-267559229963\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkInterfaces/a2aVM1228/ipConfigurations/a2aVM1228\",\r\n \"etag\": \"W/\\\"00f06c8b-1717-420a-9bee-030e50202c77\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/publicIPAddresses/a2aVM1228\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/virtualNetworks/a2aVM1228/subnets/a2aVM1228\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"p0klehfrbfxendor11leegijrg.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/virtualNetworks/a2aVM1228?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2EyYVZNMTIyOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "0a64c6bd-ae2c-416f-b716-36c57b194df0" + ], + "x-ms-correlation-request-id": [ + "0a64c6bd-ae2c-416f-b716-36c57b194df0" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195827Z:0a64c6bd-ae2c-416f-b716-36c57b194df0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "224" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/a2aVM1228' under resource group 'a2aVM1228' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/virtualNetworks/a2aVM1228?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2EyYVZNMTIyOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"fc299c79-f019-4f1a-97e3-0707924900c8\"" + ], + "x-ms-request-id": [ + "6ef33700-4871-499b-a14c-8e3280f6df08" + ], + "x-ms-correlation-request-id": [ + "6af97848-2766-4ba2-8e6f-de562dbaa8b7" + ], + "x-ms-arm-service-request-id": [ + "ffd4011f-194d-45d0-a36a-f78f237b288c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11741" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195834Z:6af97848-2766-4ba2-8e6f-de562dbaa8b7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:33 GMT" + ], + "Content-Length": [ + "1081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/virtualNetworks/a2aVM1228\",\r\n \"etag\": \"W/\\\"fc299c79-f019-4f1a-97e3-0707924900c8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1cb2947e-09b1-466e-8dd1-ded64219098e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/virtualNetworks/a2aVM1228/subnets/a2aVM1228\",\r\n \"etag\": \"W/\\\"fc299c79-f019-4f1a-97e3-0707924900c8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2EyYVZNMTIyOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "2c86a65d-6181-418d-afca-9fd5b855b6af" + ], + "x-ms-correlation-request-id": [ + "2c86a65d-6181-418d-afca-9fd5b855b6af" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195828Z:2c86a65d-6181-418d-afca-9fd5b855b6af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "230" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/a2aVM1228' under resource group 'a2aVM1228' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2EyYVZNMTIyOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"44435356-a41a-45c6-a463-69272631d633\"" + ], + "x-ms-request-id": [ + "7f2e42fe-9bfa-4692-91f1-4e8c1703a024" + ], + "x-ms-correlation-request-id": [ + "a0272e3d-87a7-4f64-b83e-8ddfdfe43e10" + ], + "x-ms-arm-service-request-id": [ + "2aaaf831-b72e-4674-93ef-28155a7b1362" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195833Z:a0272e3d-87a7-4f64-b83e-8ddfdfe43e10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:33 GMT" + ], + "Content-Length": [ + "7407" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228\",\r\n \"etag\": \"W/\\\"44435356-a41a-45c6-a463-69272631d633\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c25739ed-0ca1-4c25-bed6-537b951db7b4\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM122822\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228/securityRules/a2aVM122822\",\r\n \"etag\": \"W/\\\"44435356-a41a-45c6-a463-69272631d633\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"44435356-a41a-45c6-a463-69272631d633\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"44435356-a41a-45c6-a463-69272631d633\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"44435356-a41a-45c6-a463-69272631d633\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"44435356-a41a-45c6-a463-69272631d633\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"44435356-a41a-45c6-a463-69272631d633\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"44435356-a41a-45c6-a463-69272631d633\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/publicIPAddresses/a2aVM1228?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYTJhVk0xMjI4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "5e0d033f-79bf-4616-a6b7-cf7b4d56c38d" + ], + "x-ms-correlation-request-id": [ + "5e0d033f-79bf-4616-a6b7-cf7b4d56c38d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195828Z:5e0d033f-79bf-4616-a6b7-cf7b4d56c38d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "226" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/a2aVM1228' under resource group 'a2aVM1228' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/publicIPAddresses/a2aVM1228?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYTJhVk0xMjI4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"024433a5-9f29-4567-8ea2-94b3f358f24d\"" + ], + "x-ms-request-id": [ + "6c46f6a1-b9ca-4542-9e69-e96390260ad2" + ], + "x-ms-correlation-request-id": [ + "1d34af77-f23a-4f6d-b34c-56a8e3e32ece" + ], + "x-ms-arm-service-request-id": [ + "cb3f1c99-35c3-45e4-9d65-0a16be62747f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195832Z:1d34af77-f23a-4f6d-b34c-56a8e3e32ece" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:31 GMT" + ], + "Content-Length": [ + "758" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/publicIPAddresses/a2aVM1228\",\r\n \"etag\": \"W/\\\"024433a5-9f29-4567-8ea2-94b3f358f24d\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fd86aa18-84d2-4e7b-a2cf-bbe2fae429b5\",\r\n \"ipAddress\": \"13.68.242.89\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain1228\",\r\n \"fqdn\": \"domain1228.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya1NlY3VyaXR5R3JvdXBzL2EyYVZNMTIyOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"a2aVM122822\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "452" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "0c6934cc-4248-420c-9aff-8ef41a25df01" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/0c6934cc-4248-420c-9aff-8ef41a25df01?api-version=2017-10-01" + ], + "x-ms-correlation-request-id": [ + "f78fa52a-cc24-4679-a8ca-668db1a42abe" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "e643f1ff-acbf-4e2a-aade-5d13a9c71377" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195830Z:f78fa52a-cc24-4679-a8ca-668db1a42abe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:29 GMT" + ], + "Content-Length": [ + "7399" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228\",\r\n \"etag\": \"W/\\\"c1c11ee7-d097-49db-81ef-9603cb3b5a1e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c25739ed-0ca1-4c25-bed6-537b951db7b4\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM122822\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228/securityRules/a2aVM122822\",\r\n \"etag\": \"W/\\\"c1c11ee7-d097-49db-81ef-9603cb3b5a1e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"c1c11ee7-d097-49db-81ef-9603cb3b5a1e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"c1c11ee7-d097-49db-81ef-9603cb3b5a1e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"c1c11ee7-d097-49db-81ef-9603cb3b5a1e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"c1c11ee7-d097-49db-81ef-9603cb3b5a1e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"c1c11ee7-d097-49db-81ef-9603cb3b5a1e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"c1c11ee7-d097-49db-81ef-9603cb3b5a1e\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/publicIPAddresses/a2aVM1228?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvYTJhVk0xMjI4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain1228\"\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "203" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "9fed059f-d9b0-4134-83ec-fcf757990ef8" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/9fed059f-d9b0-4134-83ec-fcf757990ef8?api-version=2017-10-01" + ], + "x-ms-correlation-request-id": [ + "35fa303b-2344-4818-a86c-f00d131f5b28" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "099c2f9a-6ce7-44ed-9b05-f1a886ec3609" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195830Z:35fa303b-2344-4818-a86c-f00d131f5b28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:30 GMT" + ], + "Content-Length": [ + "723" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/publicIPAddresses/a2aVM1228\",\r\n \"etag\": \"W/\\\"ee8f37c9-1f82-4a53-808d-6cc5e0c41bd8\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"fd86aa18-84d2-4e7b-a2cf-bbe2fae429b5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain1228\",\r\n \"fqdn\": \"domain1228.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/virtualNetworks/a2aVM1228?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbE5ldHdvcmtzL2EyYVZNMTIyOD9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"name\": \"a2aVM1228\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "301" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "8f438a9d-66b1-4093-8fd2-f6d580466fb0" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/8f438a9d-66b1-4093-8fd2-f6d580466fb0?api-version=2017-10-01" + ], + "x-ms-correlation-request-id": [ + "8a4aabf1-df5e-43f3-9e0d-dafc4df44839" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "85c4ae72-9b64-40fb-a845-113705f4b696" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195830Z:8a4aabf1-df5e-43f3-9e0d-dafc4df44839" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:29 GMT" + ], + "Content-Length": [ + "1079" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/virtualNetworks/a2aVM1228\",\r\n \"etag\": \"W/\\\"9d9b9bfa-95d9-4e30-ad75-114f9fc166bc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1cb2947e-09b1-466e-8dd1-ded64219098e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/virtualNetworks/a2aVM1228/subnets/a2aVM1228\",\r\n \"etag\": \"W/\\\"9d9b9bfa-95d9-4e30-ad75-114f9fc166bc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/9fed059f-d9b0-4134-83ec-fcf757990ef8?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOWZlZDA1OWYtZDliMC00MTM0LTgzZWMtZmNmNzU3OTkwZWY4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e0b8452f-9630-40cc-8cd9-1c841cc126c5" + ], + "x-ms-correlation-request-id": [ + "d8c8743b-c94a-47d6-be33-d16a9582e132" + ], + "x-ms-arm-service-request-id": [ + "a4190d24-ae81-452d-8e91-fb5f1f2ccc96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195831Z:d8c8743b-c94a-47d6-be33-d16a9582e132" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:30 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/0c6934cc-4248-420c-9aff-8ef41a25df01?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMGM2OTM0Y2MtNDI0OC00MjBjLTlhZmYtOGVmNDFhMjVkZjAxP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a2193eb8-0a97-443f-8269-f6530e76220c" + ], + "x-ms-correlation-request-id": [ + "d1c59a1f-6ed0-434d-a2df-b05d5b75b86b" + ], + "x-ms-arm-service-request-id": [ + "c36fc83a-fed5-476d-a8de-9f52ef1e49d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195833Z:d1c59a1f-6ed0-434d-a2df-b05d5b75b86b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:33 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/8f438a9d-66b1-4093-8fd2-f6d580466fb0?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOGY0MzhhOWQtNjZiMS00MDkzLThmZDItZjZkNTgwNDY2ZmIwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "06537b29-2b57-47ad-b11a-2eca98a7a787" + ], + "x-ms-correlation-request-id": [ + "df19bd62-9b52-4cd7-8715-d09096db696f" + ], + "x-ms-arm-service-request-id": [ + "9da44b2b-6a59-4c77-b750-09922eed335b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11742" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195833Z:df19bd62-9b52-4cd7-8715-d09096db696f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:33 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkInterfaces/a2aVM1228?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvYTJhVk0xMjI4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/virtualNetworks/a2aVM1228/subnets/a2aVM1228\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/publicIPAddresses/a2aVM1228\"\r\n }\r\n },\r\n \"name\": \"a2aVM1228\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "811" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c40da453-57fc-4a07-864a-4cfea9485343" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/c40da453-57fc-4a07-864a-4cfea9485343?api-version=2017-10-01" + ], + "x-ms-correlation-request-id": [ + "52a74c45-c100-4fba-ba09-a4feb7b9db3a" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "b68d419f-8d3b-4087-aa57-5ca2cddd9146" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195835Z:52a74c45-c100-4fba-ba09-a4feb7b9db3a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:34 GMT" + ], + "Content-Length": [ + "1927" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkInterfaces/a2aVM1228\",\r\n \"etag\": \"W/\\\"00f06c8b-1717-420a-9bee-030e50202c77\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"0ff3b770-16f6-4830-baee-267559229963\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkInterfaces/a2aVM1228/ipConfigurations/a2aVM1228\",\r\n \"etag\": \"W/\\\"00f06c8b-1717-420a-9bee-030e50202c77\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/publicIPAddresses/a2aVM1228\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/virtualNetworks/a2aVM1228/subnets/a2aVM1228\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"p0klehfrbfxendor11leegijrg.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkSecurityGroups/a2aVM1228\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Compute/virtualMachines/a2aVM1228?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2EyYVZNMTIyOD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM1228\",\r\n \"adminUsername\": \"adminUser\",\r\n \"adminPassword\": \"System.Security.SecureString\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkInterfaces/a2aVM1228\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "737" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/997ba0dd-0dc2-41a9-9bfa-1ebe179fe2a5?api-version=2020-12-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "997ba0dd-0dc2-41a9-9bfa-1ebe179fe2a5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "d0c53b7f-067e-4865-90c3-419769702cdc" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195837Z:d0c53b7f-067e-4865-90c3-419769702cdc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:37 GMT" + ], + "Content-Length": [ + "1650" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Compute/virtualMachines/a2aVM1228\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"d28d3969-ce2c-4f13-b202-c3ece8c1a7cf\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM1228\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkInterfaces/a2aVM1228\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/997ba0dd-0dc2-41a9-9bfa-1ebe179fe2a5?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTk3YmEwZGQtMGRjMi00MWE5LTliZmEtMWViZTE3OWZlMmE1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "35" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29995" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "897b4c87-54f6-4554-9326-785f63da9668" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11739" + ], + "x-ms-correlation-request-id": [ + "512643ea-1209-41ab-8669-4601ddc2dcdb" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195847Z:512643ea-1209-41ab-8669-4601ddc2dcdb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:58:46 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-04-19T01:28:36.8017362+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"997ba0dd-0dc2-41a9-9bfa-1ebe179fe2a5\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/997ba0dd-0dc2-41a9-9bfa-1ebe179fe2a5?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTk3YmEwZGQtMGRjMi00MWE5LTliZmEtMWViZTE3OWZlMmE1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29994" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "82deeb0c-dfa7-4efe-a5c2-7e4c663d9c1a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11738" + ], + "x-ms-correlation-request-id": [ + "0ac97243-13ce-4627-8b48-a8afbe5c86de" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195923Z:0ac97243-13ce-4627-8b48-a8afbe5c86de" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:59:23 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-04-19T01:28:36.8017362+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"997ba0dd-0dc2-41a9-9bfa-1ebe179fe2a5\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/997ba0dd-0dc2-41a9-9bfa-1ebe179fe2a5?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTk3YmEwZGQtMGRjMi00MWE5LTliZmEtMWViZTE3OWZlMmE1P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c5e75a1f-6926-449e-a9f8-e880144d8dab" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29992" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "cb9b3927-d4ca-42f2-865f-42252637bc3c" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11737" + ], + "x-ms-correlation-request-id": [ + "db8a83f4-9c79-49ad-9ce2-41de5391cf0e" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T195958Z:db8a83f4-9c79-49ad-9ce2-41de5391cf0e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 19:59:57 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-04-19T01:28:36.8017362+05:30\",\r\n \"endTime\": \"2021-04-19T01:29:35.2392711+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"997ba0dd-0dc2-41a9-9bfa-1ebe179fe2a5\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/A2APowershellTestRg1228?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "054661aa-cb9d-401f-a9ce-86c006e2869f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-request-id": [ + "9da76408-6027-4b47-9eeb-07aeaa20f211" + ], + "x-ms-correlation-request-id": [ + "9da76408-6027-4b47-9eeb-07aeaa20f211" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200000Z:9da76408-6027-4b47-9eeb-07aeaa20f211" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 20:00:00 GMT" + ], + "Content-Length": [ + "206" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228\",\r\n \"name\": \"A2APowershellTestRg1228\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"WestCentralUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b6dc23f-26df-47b8-ab9e-be5671c93be9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "98" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8fd9a0f9-0783-4fda-96d3-b5b71d2dbb8c" + ], + "x-ms-client-request-id": [ + "7b6dc23f-26df-47b8-ab9e-be5671c93be9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "209" + ], + "x-ms-correlation-request-id": [ + "8fd9a0f9-0783-4fda-96d3-b5b71d2dbb8c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200024Z:8fd9a0f9-0783-4fda-96d3-b5b71d2dbb8c" + ], + "Date": [ + "Sun, 18 Apr 2021 20:00:23 GMT" + ], + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest1228\",\r\n \"etag\": \"W/\\\"datetime'2021-04-18T20%3A00%3A24.0231485Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e1bdce2-14cb-4a86-9d34-84f4d297df17" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7af3dd51-8a0e-404a-abef-d1bb38eb3e30" + ], + "x-ms-client-request-id": [ + "1e1bdce2-14cb-4a86-9d34-84f4d297df17" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "7af3dd51-8a0e-404a-abef-d1bb38eb3e30" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200044Z:7af3dd51-8a0e-404a-abef-d1bb38eb3e30" + ], + "Date": [ + "Sun, 18 Apr 2021 20:00:44 GMT" + ], + "Content-Length": [ + "481" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest1228\",\r\n \"etag\": \"W/\\\"datetime'2021-04-18T20%3A00%3A24.0231485Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L2V4dGVuZGVkSW5mb3JtYXRpb24vdmF1bHRFeHRlbmRlZEluZm8/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a681871-05ff-4f0e-a3e2-885369ee6d63" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "217bbc93-0525-46da-be19-8bc64f6ae100" + ], + "x-ms-client-request-id": [ + "3a681871-05ff-4f0e-a3e2-885369ee6d63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "217bbc93-0525-46da-be19-8bc64f6ae100" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200045Z:217bbc93-0525-46da-be19-8bc64f6ae100" + ], + "Date": [ + "Sun, 18 Apr 2021 20:00:44 GMT" + ], + "Content-Length": [ + "86" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"ErrorCode\": \"ResourceExtendedInfoNotFound\",\r\n \"Message\": {\r\n \"Language\": \"en-US\",\r\n \"Value\": \"\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L2V4dGVuZGVkSW5mb3JtYXRpb24vdmF1bHRFeHRlbmRlZEluZm8/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"TJUWmBSXt0ri/bDOrBQl5g==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a681871-05ff-4f0e-a3e2-885369ee6d63" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "388c8fb4-16d9-415d-8027-de9363bc4fe0" + ], + "x-ms-client-request-id": [ + "3a681871-05ff-4f0e-a3e2-885369ee6d63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "388c8fb4-16d9-415d-8027-de9363bc4fe0" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200045Z:388c8fb4-16d9-415d-8027-de9363bc4fe0" + ], + "Date": [ + "Sun, 18 Apr 2021 20:00:45 GMT" + ], + "Content-Length": [ + "414" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"2cececfa-a748-4c4b-b3f3-1130849b36d1\",\r\n \"properties\": {\r\n \"integrityKey\": \"TJUWmBSXt0ri/bDOrBQl5g==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a681871-05ff-4f0e-a3e2-885369ee6d63" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9d7a5516-0ffc-463a-8124-e00e6d002408" + ], + "x-ms-client-request-id": [ + "3a681871-05ff-4f0e-a3e2-885369ee6d63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "9d7a5516-0ffc-463a-8124-e00e6d002408" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200046Z:9d7a5516-0ffc-463a-8124-e00e6d002408" + ], + "Date": [ + "Sun, 18 Apr 2021 20:00:45 GMT" + ], + "Content-Length": [ + "493" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest1228\",\r\n \"etag\": \"W/\\\"datetime'2021-04-18T20%3A00%3A45.7654644Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228\",\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/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTIyOD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"EastUS\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6beb82f9-550d-4ab3-889b-c6d2438537fb" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772446428)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377246428)\\/\",\"ClientRequestId\":\"bb221b86-2a16-45b8-a431-b86f81d9e88d-2021-04-18 20:00:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PjUF9H/4YqO38FKFb8IVYNk5Q/+/q/HyY6JK7b/DLdk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "119" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/operationresults/5a803002-a7dd-4dfe-a18b-b3c36db6c441?api-version=2021-02-10" + ], + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationOperationStatus/5a803002-a7dd-4dfe-a18b-b3c36db6c441?api-version=2021-02-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "6beb82f9-550d-4ab3-889b-c6d2438537fb" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "38d22240-87fc-4148-b2c2-6c815d332724" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200048Z:38d22240-87fc-4148-b2c2-6c815d332724" + ], + "Date": [ + "Sun, 18 Apr 2021 20:00:47 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy81YTgwMzAwMi1hN2RkLTRkZmUtYTE4Yi1iM2MzNmRiNmM0NDE/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6beb82f9-550d-4ab3-889b-c6d2438537fb" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772448712)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377248712)\\/\",\"ClientRequestId\":\"a4905b87-7f4c-4f85-9f19-5ff51724057b-2021-04-18 20:00:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"j+8BYmvsGwHawDlWV/J8+kgGV/FsT7bNvWEMuoEJ/Vo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "6beb82f9-550d-4ab3-889b-c6d2438537fb" + ], + "x-ms-correlation-request-id": [ + "91545e82-f074-42b9-b05a-272422e5a114" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200048Z:91545e82-f074-42b9-b05a-272422e5a114" + ], + "Date": [ + "Sun, 18 Apr 2021 20:00:48 GMT" + ], + "Content-Length": [ + "1323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"6beb82f9-550d-4ab3-889b-c6d2438537fb ActivityId: 38d22240-87fc-4148-b2c2-6c815d332724\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T20:00:48.3383764Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric1228\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy81YTgwMzAwMi1hN2RkLTRkZmUtYTE4Yi1iM2MzNmRiNmM0NDE/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09ec764d-6bad-408d-8a36-f20759da3f87" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772449174)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377249174)\\/\",\"ClientRequestId\":\"14e5f0d1-3279-429e-a4f1-22a232b7bdc8-2021-04-18 20:00:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KFJ5QhPxPo1gvoYO8NKJ7570KhRm0pfCwj3+hXJ4Q0c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "09ec764d-6bad-408d-8a36-f20759da3f87" + ], + "x-ms-correlation-request-id": [ + "6cbea419-48ca-4a05-bc3e-5a39d85ea924" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200049Z:6cbea419-48ca-4a05-bc3e-5a39d85ea924" + ], + "Date": [ + "Sun, 18 Apr 2021 20:00:48 GMT" + ], + "Content-Length": [ + "1323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"6beb82f9-550d-4ab3-889b-c6d2438537fb ActivityId: 38d22240-87fc-4148-b2c2-6c815d332724\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T20:00:48.3383764Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric1228\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy81YTgwMzAwMi1hN2RkLTRkZmUtYTE4Yi1iM2MzNmRiNmM0NDE/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29d9b9a4-81a4-4754-82b8-ba74c9eed37a" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772469579)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377269579)\\/\",\"ClientRequestId\":\"2b9a8869-91d4-4d03-a248-8f3d24852ffa-2021-04-18 20:01:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yhJc3i93e05JwrLkMQ4dops58xRLDnPotxFmAbdGCqs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "29d9b9a4-81a4-4754-82b8-ba74c9eed37a" + ], + "x-ms-correlation-request-id": [ + "91ee8b3b-cede-47d7-aa59-af5d7aaae9d3" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200109Z:91ee8b3b-cede-47d7-aa59-af5d7aaae9d3" + ], + "Date": [ + "Sun, 18 Apr 2021 20:01:09 GMT" + ], + "Content-Length": [ + "1323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"6beb82f9-550d-4ab3-889b-c6d2438537fb ActivityId: 38d22240-87fc-4148-b2c2-6c815d332724\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T20:00:48.3383764Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric1228\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy81YTgwMzAwMi1hN2RkLTRkZmUtYTE4Yi1iM2MzNmRiNmM0NDE/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d55e22df-8396-45c5-837c-afea64f96f4e" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772490091)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377290091)\\/\",\"ClientRequestId\":\"968f4830-7e18-4697-8d54-4c505a59e007-2021-04-18 20:01:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"O53Jf7c5eXSY8Ny8CpAdUV4Ti/TGpDU/V1Xqrt0PQ9E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d55e22df-8396-45c5-837c-afea64f96f4e" + ], + "x-ms-correlation-request-id": [ + "b2cbb36c-2f4b-4102-8da9-41ad3a3f5074" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200130Z:b2cbb36c-2f4b-4102-8da9-41ad3a3f5074" + ], + "Date": [ + "Sun, 18 Apr 2021 20:01:30 GMT" + ], + "Content-Length": [ + "1323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"6beb82f9-550d-4ab3-889b-c6d2438537fb ActivityId: 38d22240-87fc-4148-b2c2-6c815d332724\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T20:00:48.3383764Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric1228\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy81YTgwMzAwMi1hN2RkLTRkZmUtYTE4Yi1iM2MzNmRiNmM0NDE/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3fee5597-f244-4ab7-a18d-b3e98a9adf53" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772510509)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377310509)\\/\",\"ClientRequestId\":\"f63bdc0f-9312-4c44-93fc-dec7ae14f79f-2021-04-18 20:01:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uRDfdr1JKQbLL81s5HYrzhLknGbWikmMmjZmC+MtJ24=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "3fee5597-f244-4ab7-a18d-b3e98a9adf53" + ], + "x-ms-correlation-request-id": [ + "a043dc62-48ca-46cf-ab7f-8e0fd1cd3dbc" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200150Z:a043dc62-48ca-46cf-ab7f-8e0fd1cd3dbc" + ], + "Date": [ + "Sun, 18 Apr 2021 20:01:49 GMT" + ], + "Content-Length": [ + "1323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"6beb82f9-550d-4ab3-889b-c6d2438537fb ActivityId: 38d22240-87fc-4148-b2c2-6c815d332724\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T20:01:38.4238138Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric1228\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy81YTgwMzAwMi1hN2RkLTRkZmUtYTE4Yi1iM2MzNmRiNmM0NDE/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e197fd8-1c99-48fc-a013-62aa60f5ec22" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772530894)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377330894)\\/\",\"ClientRequestId\":\"2859bddd-0191-4c83-888e-fcda3c61d360-2021-04-18 20:02:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"78y1r6sXg6AM+f6XCFV+Snt590x0TD80bPIcD8Mvo04=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "1e197fd8-1c99-48fc-a013-62aa60f5ec22" + ], + "x-ms-correlation-request-id": [ + "d16c6624-60f5-40b8-b8f7-7d4c380f56e7" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200211Z:d16c6624-60f5-40b8-b8f7-7d4c380f56e7" + ], + "Date": [ + "Sun, 18 Apr 2021 20:02:11 GMT" + ], + "Content-Length": [ + "1323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"6beb82f9-550d-4ab3-889b-c6d2438537fb ActivityId: 38d22240-87fc-4148-b2c2-6c815d332724\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T20:01:38.4238138Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric1228\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy81YTgwMzAwMi1hN2RkLTRkZmUtYTE4Yi1iM2MzNmRiNmM0NDE/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b41f1032-5bf1-4974-9fa8-313b0d253a52" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772551576)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377351576)\\/\",\"ClientRequestId\":\"8b685eac-baa2-4f1b-9628-43dce1911880-2021-04-18 20:02:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iwqLu6LWFDvQ2RvUTIkK6jv1uj8xiuOwW5PCXWx2mVc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b41f1032-5bf1-4974-9fa8-313b0d253a52" + ], + "x-ms-correlation-request-id": [ + "2c0d5242-046a-4eb9-b191-54daab8a8a00" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200231Z:2c0d5242-046a-4eb9-b191-54daab8a8a00" + ], + "Date": [ + "Sun, 18 Apr 2021 20:02:30 GMT" + ], + "Content-Length": [ + "1323" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"6beb82f9-550d-4ab3-889b-c6d2438537fb ActivityId: 38d22240-87fc-4148-b2c2-6c815d332724\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T20:01:38.4238138Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric1228\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy81YTgwMzAwMi1hN2RkLTRkZmUtYTE4Yi1iM2MzNmRiNmM0NDE/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e8501a39-a9ee-4dcf-a45d-598cf365aaa5" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772571981)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377371981)\\/\",\"ClientRequestId\":\"78c13e2d-60bd-4d04-a9bd-4a88509c10bf-2021-04-18 20:02:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OROszJIHwtYkQC0B5JqhtJeLXuVMZm8tZ4sm9CIMPz8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e8501a39-a9ee-4dcf-a45d-598cf365aaa5" + ], + "x-ms-correlation-request-id": [ + "d6774d1d-4adc-42a4-bf32-714b8513c83b" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200252Z:d6774d1d-4adc-42a4-bf32-714b8513c83b" + ], + "Date": [ + "Sun, 18 Apr 2021 20:02:52 GMT" + ], + "Content-Length": [ + "1361" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"6beb82f9-550d-4ab3-889b-c6d2438537fb ActivityId: 38d22240-87fc-4148-b2c2-6c815d332724\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T20:01:38.4238138Z\",\r\n \"endTime\": \"2021-04-18T20:02:44.5143535Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric1228\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTIyOD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "75be44bb-b0af-44d3-ad49-a91d4844a701" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772572378)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377372378)\\/\",\"ClientRequestId\":\"61c46f75-21c1-4916-bd9d-86d5ee1b02ec-2021-04-18 20:02:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"j3L7BP5g1Ubq/yjm2pjeKE4l6X1wOkbOZNU8xRNcyqU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "75be44bb-b0af-44d3-ad49-a91d4844a701 4/18/2021 8:02:52 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "75be44bb-b0af-44d3-ad49-a91d4844a701" + ], + "x-ms-correlation-request-id": [ + "3fb85c0f-f2be-44a3-b51c-2ed2510bb722" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200252Z:3fb85c0f-f2be-44a3-b51c-2ed2510bb722" + ], + "Date": [ + "Sun, 18 Apr 2021 20:02:52 GMT" + ], + "Content-Length": [ + "687" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric1228\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTIyOD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c051400f-9251-478c-8ce0-ff796862f0a4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772656690)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377456690)\\/\",\"ClientRequestId\":\"1e2b950b-ff03-4c44-b14d-025f38212413-2021-04-18 20:04:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UlZH6yRlyPlYdOgt00zJGMPrD11gVenfTnnLTAQE9GA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "c051400f-9251-478c-8ce0-ff796862f0a4 4/18/2021 8:04:16 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c051400f-9251-478c-8ce0-ff796862f0a4" + ], + "x-ms-correlation-request-id": [ + "658ef5e3-c9e7-4bf0-a3f9-bab001c0f437" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200416Z:658ef5e3-c9e7-4bf0-a3f9-bab001c0f437" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:16 GMT" + ], + "Content-Length": [ + "687" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric1228\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzEyMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"WestCentralUS\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8beaa01-5dde-4bd4-baee-dca50cc5a294" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772572933)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377372933)\\/\",\"ClientRequestId\":\"b04f9fa9-ff3c-4843-8450-c0db895a219a-2021-04-18 20:02:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"40veVr7lUEwFASuvl6nUXFc1ALkhrxCMlAXdGP+Er3k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "126" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228/operationresults/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55?api-version=2021-02-10" + ], + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationOperationStatus/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55?api-version=2021-02-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d8beaa01-5dde-4bd4-baee-dca50cc5a294" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "d94eeb97-deb2-4697-baf7-de33dbb81e83" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200253Z:d94eeb97-deb2-4697-baf7-de33dbb81e83" + ], + "Date": [ + "Sun, 18 Apr 2021 20:02:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8xNDFjMjU2Ny0xZjFkLTRlM2MtYjdmMS0zNDFjZGMzYjBlNTU/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8beaa01-5dde-4bd4-baee-dca50cc5a294" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772573711)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377373711)\\/\",\"ClientRequestId\":\"dbfc3c11-24ff-413f-8a7e-76062dcb48ef-2021-04-18 20:02:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UM4/EQ+vbOZey3PjOIUqbf89Oz3b69eLpDzx7YML2Ag=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d8beaa01-5dde-4bd4-baee-dca50cc5a294" + ], + "x-ms-correlation-request-id": [ + "dc3b4771-27b9-46dc-8a6c-da4a91859020" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200253Z:dc3b4771-27b9-46dc-8a6c-da4a91859020" + ], + "Date": [ + "Sun, 18 Apr 2021 20:02:53 GMT" + ], + "Content-Length": [ + "1325" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d8beaa01-5dde-4bd4-baee-dca50cc5a294 ActivityId: d94eeb97-deb2-4697-baf7-de33dbb81e83\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T20:02:53.8634509Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric1228\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8xNDFjMjU2Ny0xZjFkLTRlM2MtYjdmMS0zNDFjZGMzYjBlNTU/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "347539c0-146d-4a46-b547-ec03ffaa8532" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772574078)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377374078)\\/\",\"ClientRequestId\":\"4cc34328-5ec3-4efb-bc28-cdfb0a2c8838-2021-04-18 20:02:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cA1n5eXPYvwPF19LMsAFk+XsHtThCVO1khNw864tyCI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "347539c0-146d-4a46-b547-ec03ffaa8532" + ], + "x-ms-correlation-request-id": [ + "334e9060-d358-4590-ace2-c161f0112216" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200254Z:334e9060-d358-4590-ace2-c161f0112216" + ], + "Date": [ + "Sun, 18 Apr 2021 20:02:53 GMT" + ], + "Content-Length": [ + "1325" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d8beaa01-5dde-4bd4-baee-dca50cc5a294 ActivityId: d94eeb97-deb2-4697-baf7-de33dbb81e83\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T20:02:53.8634509Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric1228\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8xNDFjMjU2Ny0xZjFkLTRlM2MtYjdmMS0zNDFjZGMzYjBlNTU/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5f89a97-cea0-4484-8222-865f5d9bf667" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772594447)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377394447)\\/\",\"ClientRequestId\":\"eaebb2e8-6a93-45d3-88e6-fa5a3e78858c-2021-04-18 20:03:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"A40YDSjoGuApvW2jqD5Xpm3Ut7oXnWqRBHIkdWfZhcI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e5f89a97-cea0-4484-8222-865f5d9bf667" + ], + "x-ms-correlation-request-id": [ + "4d6d3202-a2aa-426a-8859-29878bb9b834" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200314Z:4d6d3202-a2aa-426a-8859-29878bb9b834" + ], + "Date": [ + "Sun, 18 Apr 2021 20:03:14 GMT" + ], + "Content-Length": [ + "1325" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d8beaa01-5dde-4bd4-baee-dca50cc5a294 ActivityId: d94eeb97-deb2-4697-baf7-de33dbb81e83\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T20:02:53.8634509Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric1228\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8xNDFjMjU2Ny0xZjFkLTRlM2MtYjdmMS0zNDFjZGMzYjBlNTU/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4ac36f16-e78b-413e-a053-1e388e5ee85a" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772614844)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377414844)\\/\",\"ClientRequestId\":\"f9134e6a-9091-472b-863f-dd3b1bf3ba5c-2021-04-18 20:03:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OXUd7nsaJLaYagquNOMg6hm2WjCiQMxmbY+nu1Xw+MI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "4ac36f16-e78b-413e-a053-1e388e5ee85a" + ], + "x-ms-correlation-request-id": [ + "2794945f-3d96-4e70-a4ed-3db589d94898" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200335Z:2794945f-3d96-4e70-a4ed-3db589d94898" + ], + "Date": [ + "Sun, 18 Apr 2021 20:03:35 GMT" + ], + "Content-Length": [ + "1325" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d8beaa01-5dde-4bd4-baee-dca50cc5a294 ActivityId: d94eeb97-deb2-4697-baf7-de33dbb81e83\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T20:02:53.8634509Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric1228\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8xNDFjMjU2Ny0xZjFkLTRlM2MtYjdmMS0zNDFjZGMzYjBlNTU/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c93662c9-4a88-4a47-ab8e-2f169d1d8ced" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772635233)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377435233)\\/\",\"ClientRequestId\":\"f940fa5e-8109-4bd3-b187-d1a6847c657a-2021-04-18 20:03:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Q6fuLdTcjg1THuC0NizR7FnYghHLfQGZYqwj4k/e0Wc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c93662c9-4a88-4a47-ab8e-2f169d1d8ced" + ], + "x-ms-correlation-request-id": [ + "dbc958a3-a7c6-4d94-b779-264f470da32e" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200355Z:dbc958a3-a7c6-4d94-b779-264f470da32e" + ], + "Date": [ + "Sun, 18 Apr 2021 20:03:55 GMT" + ], + "Content-Length": [ + "1325" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d8beaa01-5dde-4bd4-baee-dca50cc5a294 ActivityId: d94eeb97-deb2-4697-baf7-de33dbb81e83\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T20:02:53.8634509Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric1228\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8xNDFjMjU2Ny0xZjFkLTRlM2MtYjdmMS0zNDFjZGMzYjBlNTU/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5785ff25-ab7c-4e84-bfb2-26279f50d268" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772655615)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377455615)\\/\",\"ClientRequestId\":\"9cb01a76-743e-4fad-9efc-d1bc6ee70dc4-2021-04-18 20:04:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JJumdONFmJ+rVLPf2Eun+GuGGzwdJYgN4xOi8RXTCKU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "5785ff25-ab7c-4e84-bfb2-26279f50d268" + ], + "x-ms-correlation-request-id": [ + "0f8b2f03-5da8-4bdc-9227-4c3e22de8b31" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200415Z:0f8b2f03-5da8-4bdc-9227-4c3e22de8b31" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:15 GMT" + ], + "Content-Length": [ + "1362" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d8beaa01-5dde-4bd4-baee-dca50cc5a294 ActivityId: d94eeb97-deb2-4697-baf7-de33dbb81e83\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T20:04:00.8638594Z\",\r\n \"endTime\": \"2021-04-18T20:04:01.058984Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric1228\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzEyMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1b0467f2-3b70-4185-a9ea-ecfe192f9995" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772656064)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377456064)\\/\",\"ClientRequestId\":\"a820eed8-473f-4b9a-9814-9c632e5784ac-2021-04-18 20:04:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"u01Bv6rFc4zXWZ0aOr1OXkYty54yrKq1csFZIa6R0ek=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "1b0467f2-3b70-4185-a9ea-ecfe192f9995 4/18/2021 8:04:16 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "1b0467f2-3b70-4185-a9ea-ecfe192f9995" + ], + "x-ms-correlation-request-id": [ + "7ee8681d-6da5-417b-b709-3ed750ef11ff" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200416Z:7ee8681d-6da5-417b-b709-3ed750ef11ff" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:15 GMT" + ], + "Content-Length": [ + "704" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric1228\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228\",\r\n \"properties\": {\r\n \"friendlyName\": \"West Central US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westcentralus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzEyMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "103845b8-263d-49b8-8a7c-4caa1f362496" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772657108)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377457108)\\/\",\"ClientRequestId\":\"b9e9f01b-bd0d-423b-a9b1-de3baf3f2d97-2021-04-18 20:04:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PTJ2waqyGQnt8D7/3tE8rSEz+P0EICcQAqBFlm4z1IA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "103845b8-263d-49b8-8a7c-4caa1f362496 4/18/2021 8:04:17 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "103845b8-263d-49b8-8a7c-4caa1f362496" + ], + "x-ms-correlation-request-id": [ + "820ab86b-b905-472a-a43d-16033f6c789f" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200417Z:820ab86b-b905-472a-a43d-16033f6c789f" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:16 GMT" + ], + "Content-Length": [ + "704" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric1228\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228\",\r\n \"properties\": {\r\n \"friendlyName\": \"West Central US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westcentralus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTIyOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMjI4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be5a4bf7-2d7f-45aa-8594-b8208d505a6c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772657539)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377457539)\\/\",\"ClientRequestId\":\"5efd6fc1-684b-41f9-b1d1-56a92719952f-2021-04-18 20:04:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kunYIdzORkibY11PkRm8HN+DvpmOemhq5hJIhkIT22Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228/operationresults/70de6da6-4ae9-4dc0-b67d-af9055a03323?api-version=2021-02-10" + ], + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationOperationStatus/70de6da6-4ae9-4dc0-b67d-af9055a03323?api-version=2021-02-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "be5a4bf7-2d7f-45aa-8594-b8208d505a6c" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "5d30279e-da6c-4b84-a08c-1315af67d871" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200418Z:5d30279e-da6c-4b84-a08c-1315af67d871" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:18 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy83MGRlNmRhNi00YWU5LTRkYzAtYjY3ZC1hZjkwNTVhMDMzMjM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be5a4bf7-2d7f-45aa-8594-b8208d505a6c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772658241)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377458241)\\/\",\"ClientRequestId\":\"345f4e60-7664-4029-be43-d91984933ad0-2021-04-18 20:04:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Q15+w4v5JYSw13OaKkSWjfA8mJJqZylEtgOZPEnhLHQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "be5a4bf7-2d7f-45aa-8594-b8208d505a6c" + ], + "x-ms-correlation-request-id": [ + "f1ced1b4-cecd-4aeb-bd9b-4b038c69da6a" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200418Z:f1ced1b4-cecd-4aeb-bd9b-4b038c69da6a" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:18 GMT" + ], + "Content-Length": [ + "1810" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"be5a4bf7-2d7f-45aa-8594-b8208d505a6c ActivityId: 5d30279e-da6c-4b84-a08c-1315af67d871\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-18T20:04:18.1123801Z\",\r\n \"endTime\": \"2021-04-18T20:04:18.1723837Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-18T20:04:18.1723837Z\",\r\n \"endTime\": \"2021-04-18T20:04:18.1723837Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy83MGRlNmRhNi00YWU5LTRkYzAtYjY3ZC1hZjkwNTVhMDMzMjM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a3a1e570-40b1-47f7-834b-cd017cbb1240" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772658641)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377458641)\\/\",\"ClientRequestId\":\"55387c20-ec27-4db5-9598-84fba1d3fda7-2021-04-18 20:04:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FYvJHZ4qqMQCeF4NzNPE0z4l3XqWKR4vWw9MER6ZzNY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "a3a1e570-40b1-47f7-834b-cd017cbb1240" + ], + "x-ms-correlation-request-id": [ + "e59d266f-c47e-4dc5-997c-be8ff435d258" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200418Z:e59d266f-c47e-4dc5-997c-be8ff435d258" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:18 GMT" + ], + "Content-Length": [ + "1810" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"be5a4bf7-2d7f-45aa-8594-b8208d505a6c ActivityId: 5d30279e-da6c-4b84-a08c-1315af67d871\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-18T20:04:18.1123801Z\",\r\n \"endTime\": \"2021-04-18T20:04:18.1723837Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-18T20:04:18.1723837Z\",\r\n \"endTime\": \"2021-04-18T20:04:18.1723837Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTIyOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMjI4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a116f5d6-f392-4686-bf81-22efa7a18cef" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772659031)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377459031)\\/\",\"ClientRequestId\":\"3773e6fe-e6a8-4962-b552-42ad925ed8f7-2021-04-18 20:04:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"O4m5XhL/avEEOWRqc4npj88CPi15gmSnIRutgH758ZA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a116f5d6-f392-4686-bf81-22efa7a18cef 4/18/2021 8:04:19 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "a116f5d6-f392-4686-bf81-22efa7a18cef" + ], + "x-ms-correlation-request-id": [ + "4712e099-a780-4917-b0da-2fbece769112" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200419Z:4712e099-a780-4917-b0da-2fbece769112" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:19 GMT" + ], + "Content-Length": [ + "586" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228\",\r\n \"name\": \"A2APrimaryContainer1228\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"East US\",\r\n \"friendlyName\": \"A2APrimaryContainer1228\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228/replicationProtectionContainerMappings?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTIyOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMjI4L3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a116f5d6-f392-4686-bf81-22efa7a18cef" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772659464)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377459464)\\/\",\"ClientRequestId\":\"c029ce82-aaf8-4da1-b0b5-43d76480462f-2021-04-18 20:04:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CBl0MOhlwEFAAWTCvS8cwCiO1nE95aGBYQaiIOJ0CAQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a116f5d6-f392-4686-bf81-22efa7a18cef 4/18/2021 8:04:19 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "a116f5d6-f392-4686-bf81-22efa7a18cef" + ], + "x-ms-correlation-request-id": [ + "aa63bbcb-008c-45af-ac9f-279a5b50a729" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200419Z:aa63bbcb-008c-45af-ac9f-279a5b50a729" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:19 GMT" + ], + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228/replicationProtectionContainers/A2ARecoveryContainer1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzEyMjgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjEyMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a5ace1c-c4c4-41ec-8c33-ce2b2f82a50e" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772659911)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377459911)\\/\",\"ClientRequestId\":\"26091bd6-090e-479c-b24a-1e78bc553178-2021-04-18 20:04:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bfAxbXbkrmcBSbWJImgAVvtvCb88N86Rj03c/AFhNlM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "24" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228/replicationProtectionContainers/A2ARecoveryContainer1228/operationresults/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7?api-version=2021-02-10" + ], + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationOperationStatus/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7?api-version=2021-02-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "6a5ace1c-c4c4-41ec-8c33-ce2b2f82a50e" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" + ], + "x-ms-correlation-request-id": [ + "d8e04c89-b6df-44ed-b8e2-8b809f4e46f6" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200420Z:d8e04c89-b6df-44ed-b8e2-8b809f4e46f6" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy82OTU2MmRhNy0xMmM2LTRmN2MtYmI4YS03ZjNiNjZiY2Q3YTc/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a5ace1c-c4c4-41ec-8c33-ce2b2f82a50e" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772660502)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377460502)\\/\",\"ClientRequestId\":\"87a8eefc-12b8-47f9-9398-ead230c02726-2021-04-18 20:04:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4H6xvAdCE9mCdotX3zivt0WQSRUFi6w/nH4qVPOuGUM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "6a5ace1c-c4c4-41ec-8c33-ce2b2f82a50e" + ], + "x-ms-correlation-request-id": [ + "bed4993e-6e21-48c5-a669-1afdef532e68" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200420Z:bed4993e-6e21-48c5-a669-1afdef532e68" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:20 GMT" + ], + "Content-Length": [ + "1815" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"6a5ace1c-c4c4-41ec-8c33-ce2b2f82a50e ActivityId: d8e04c89-b6df-44ed-b8e2-8b809f4e46f6\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-18T20:04:20.424003Z\",\r\n \"endTime\": \"2021-04-18T20:04:20.499054Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-18T20:04:20.499054Z\",\r\n \"endTime\": \"2021-04-18T20:04:20.499054Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy82OTU2MmRhNy0xMmM2LTRmN2MtYmI4YS03ZjNiNjZiY2Q3YTc/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da52d0bb-875e-4866-82d5-4168b07cb59e" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772660913)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377460913)\\/\",\"ClientRequestId\":\"7f89f840-e10e-4c0f-8486-5a5cc8804280-2021-04-18 20:04:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hd+HGHWItIJ+TsKcyj6RgSj5P5Y0bqlIRo4BnzRFVao=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "da52d0bb-875e-4866-82d5-4168b07cb59e" + ], + "x-ms-correlation-request-id": [ + "8dd471ef-f9a1-48f0-a8f9-02e485251e6d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200421Z:8dd471ef-f9a1-48f0-a8f9-02e485251e6d" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:20 GMT" + ], + "Content-Length": [ + "1815" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"6a5ace1c-c4c4-41ec-8c33-ce2b2f82a50e ActivityId: d8e04c89-b6df-44ed-b8e2-8b809f4e46f6\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-18T20:04:20.424003Z\",\r\n \"endTime\": \"2021-04-18T20:04:20.499054Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-18T20:04:20.499054Z\",\r\n \"endTime\": \"2021-04-18T20:04:20.499054Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228/replicationProtectionContainers/A2ARecoveryContainer1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzEyMjgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjEyMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0744e2c4-85f8-4f7c-b420-2685277296c2" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772661335)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377461335)\\/\",\"ClientRequestId\":\"97ccc532-a434-452f-aa6c-322f0422dad7-2021-04-18 20:04:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GNlJIqK7UITXbq4ZnhgiysokpFblIzUw4DqW01h8DEU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0744e2c4-85f8-4f7c-b420-2685277296c2 4/18/2021 8:04:21 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "0744e2c4-85f8-4f7c-b420-2685277296c2" + ], + "x-ms-correlation-request-id": [ + "ca0be100-b316-482c-b894-06ac20b15472" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200421Z:ca0be100-b316-482c-b894-06ac20b15472" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:21 GMT" + ], + "Content-Length": [ + "598" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228/replicationProtectionContainers/A2ARecoveryContainer1228\",\r\n \"name\": \"A2ARecoveryContainer1228\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"West Central US\",\r\n \"friendlyName\": \"A2ARecoveryContainer1228\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228/replicationProtectionContainers/A2ARecoveryContainer1228/replicationProtectionContainerMappings?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzEyMjgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjEyMjgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0744e2c4-85f8-4f7c-b420-2685277296c2" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772661726)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377461726)\\/\",\"ClientRequestId\":\"6a740f4b-7f39-4024-9ce6-98c14f7c7b6f-2021-04-18 20:04:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1yhiYWG3SKgYkoL9qgKPRifzgoBayPdnddN1Sv2iTWo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0744e2c4-85f8-4f7c-b420-2685277296c2 4/18/2021 8:04:21 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "0744e2c4-85f8-4f7c-b420-2685277296c2" + ], + "x-ms-correlation-request-id": [ + "94a79bbc-041a-4940-9fe3-aff097e3cab6" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200421Z:94a79bbc-041a-4940-9fe3-aff097e3cab6" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:21 GMT" + ], + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationPolicies/TestA2APolicy11228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uUG9saWNpZXMvVGVzdEEyQVBvbGljeTExMjI4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointHistory\": 720,\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enable\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21ca365-a19f-4022-a1cf-393112272e06" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772662128)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377462128)\\/\",\"ClientRequestId\":\"d4fdbbc8-3ab5-4874-820b-35f9f7ce33c8-2021-04-18 20:04:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"h+qZZ1lNl9nNrnRlzeT+U4jO4oufxmMhiwXbzxG4kMs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "262" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationPolicies/TestA2APolicy11228/operationresults/aa638c32-a668-4bda-8fa3-fcd320ed4cd5?api-version=2021-02-10" + ], + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "b21ca365-a19f-4022-a1cf-393112272e06 4/18/2021 8:04:22 PM" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationOperationStatus/aa638c32-a668-4bda-8fa3-fcd320ed4cd5?api-version=2021-02-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b21ca365-a19f-4022-a1cf-393112272e06" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1193" + ], + "x-ms-correlation-request-id": [ + "ff1f9032-f0ae-4662-93f7-116e3d789f17" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200422Z:ff1f9032-f0ae-4662-93f7-116e3d789f17" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy9hYTYzOGMzMi1hNjY4LTRiZGEtOGZhMy1mY2QzMjBlZDRjZDU/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b21ca365-a19f-4022-a1cf-393112272e06" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772662770)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377462770)\\/\",\"ClientRequestId\":\"1e03d9b1-4f33-4c0d-a550-2754b1948d8e-2021-04-18 20:04:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"so2NgWSia4b828UDby7YPrNK7KBMx/ap3I3LVqVefc4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b21ca365-a19f-4022-a1cf-393112272e06" + ], + "x-ms-correlation-request-id": [ + "fc1aae81-38b7-4eb1-9fef-5cbc53fcb4f0" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200423Z:fc1aae81-38b7-4eb1-9fef-5cbc53fcb4f0" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:22 GMT" + ], + "Content-Length": [ + "1690" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b21ca365-a19f-4022-a1cf-393112272e06 ActivityId: ff1f9032-f0ae-4662-93f7-116e3d789f17\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2021-04-18T20:04:22.9275517Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy9hYTYzOGMzMi1hNjY4LTRiZGEtOGZhMy1mY2QzMjBlZDRjZDU/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6709368b-e978-4a4a-99c2-de4ce0f455a0" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772663164)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377463164)\\/\",\"ClientRequestId\":\"b24b3fed-1329-4402-a1ac-3c3831c7cd3f-2021-04-18 20:04:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Xq5ZqqOJcmWcm+wlXFeRPyEplzKw9fKqhCGrt4q0EsE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "6709368b-e978-4a4a-99c2-de4ce0f455a0" + ], + "x-ms-correlation-request-id": [ + "612d40c4-f03d-41f9-872f-c606754cb8cd" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200423Z:612d40c4-f03d-41f9-872f-c606754cb8cd" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:22 GMT" + ], + "Content-Length": [ + "1736" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b21ca365-a19f-4022-a1cf-393112272e06 ActivityId: ff1f9032-f0ae-4662-93f7-116e3d789f17\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2021-04-18T20:04:23.0125557Z\",\r\n \"endTime\": \"2021-04-18T20:04:23.0926121Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2021-04-18T20:04:23.0926121Z\",\r\n \"endTime\": \"2021-04-18T20:04:23.0926121Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationPolicies/TestA2APolicy11228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uUG9saWNpZXMvVGVzdEEyQVBvbGljeTExMjI4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dbb038be-152d-467c-8e17-3072b18890d8" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772663550)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377463550)\\/\",\"ClientRequestId\":\"86c85948-f605-4edd-b9a9-0d2d370e9692-2021-04-18 20:04:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"N+cf2gAUDnJgMukkC/FA1hdJfxSa/kbD6WrqnSFonCI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "dbb038be-152d-467c-8e17-3072b18890d8 4/18/2021 8:04:23 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "dbb038be-152d-467c-8e17-3072b18890d8" + ], + "x-ms-correlation-request-id": [ + "4eb17a10-0290-461b-bd53-a8dc85b40f9c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200424Z:4eb17a10-0290-461b-bd53-a8dc85b40f9c" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:24 GMT" + ], + "Content-Length": [ + "562" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationPolicies/TestA2APolicy11228\",\r\n \"name\": \"TestA2APolicy11228\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestA2APolicy11228\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationPolicies/TestA2APolicy11228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uUG9saWNpZXMvVGVzdEEyQVBvbGljeTExMjI4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17c9f78e-48d2-4604-9150-5696dafc95e3" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772895648)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377695648)\\/\",\"ClientRequestId\":\"1790f553-125b-4860-a72d-99fd981424e6-2021-04-18 20:08:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FaUblasqAJ0oKuyfeM9xMEbCkBH0ROhNpz+hJV3pYEE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "17c9f78e-48d2-4604-9150-5696dafc95e3 4/18/2021 8:08:15 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "17c9f78e-48d2-4604-9150-5696dafc95e3" + ], + "x-ms-correlation-request-id": [ + "0ed4f820-90e5-4e18-aa94-5a6dd3005dc3" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200815Z:0ed4f820-90e5-4e18-aa94-5a6dd3005dc3" + ], + "Date": [ + "Sun, 18 Apr 2021 20:08:15 GMT" + ], + "Content-Length": [ + "562" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationPolicies/TestA2APolicy11228\",\r\n \"name\": \"TestA2APolicy11228\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestA2APolicy11228\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228/replicationProtectionContainerMappings/A2APCM1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTIyOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMjI4L3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzL0EyQVBDTTEyMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228/replicationProtectionContainers/A2ARecoveryContainer1228\",\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationPolicies/TestA2APolicy11228\",\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"ReplicationProviderSpecificContainerMappingInput\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ad48a04-d948-46d2-a6ef-fcafdec342ce" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772664463)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377464463)\\/\",\"ClientRequestId\":\"0dcbb51a-cd97-48ad-a0af-2960506345f3-2021-04-18 20:04:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SJ+QnwiqIPrMHeODy1vI21qe6j9QS46koEF43OgEN9E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "651" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228/replicationProtectionContainerMappings/A2APCM1228/operationresults/3dbc4dd0-652a-41d4-a226-4ec204f9a80f?api-version=2021-02-10" + ], + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationOperationStatus/3dbc4dd0-652a-41d4-a226-4ec204f9a80f?api-version=2021-02-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "2ad48a04-d948-46d2-a6ef-fcafdec342ce" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1192" + ], + "x-ms-correlation-request-id": [ + "c8eafb46-1e87-4e8a-8706-e1aa55311c61" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200425Z:c8eafb46-1e87-4e8a-8706-e1aa55311c61" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8zZGJjNGRkMC02NTJhLTQxZDQtYTIyNi00ZWMyMDRmOWE4MGY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ad48a04-d948-46d2-a6ef-fcafdec342ce" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772665165)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377465165)\\/\",\"ClientRequestId\":\"a9aa1d7e-ffcd-4b68-a59b-0a5c7b0d1f80-2021-04-18 20:04:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EfqcBwlQD0pb2auDS9kYZZndx0PqMN4c5x531jL5EpM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "2ad48a04-d948-46d2-a6ef-fcafdec342ce" + ], + "x-ms-correlation-request-id": [ + "ea3fce6c-fd2b-4bfb-9585-e88707957161" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200425Z:ea3fce6c-fd2b-4bfb-9585-e88707957161" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:25 GMT" + ], + "Content-Length": [ + "2898" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"2ad48a04-d948-46d2-a6ef-fcafdec342ce ActivityId: c8eafb46-1e87-4e8a-8706-e1aa55311c61\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:04:25.1226288Z\",\r\n \"endTime\": \"2021-04-18T20:04:25.2426343Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T20:04:25.2426343Z\",\r\n \"endTime\": \"2021-04-18T20:04:25.2776356Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T20:04:25.2776356Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8zZGJjNGRkMC02NTJhLTQxZDQtYTIyNi00ZWMyMDRmOWE4MGY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f0bbc98d-a577-4d4f-b0f8-a1651ef48e9d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772665569)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377465569)\\/\",\"ClientRequestId\":\"2d069f62-cf2a-4d2d-8904-087efc82d5db-2021-04-18 20:04:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"O/gRbIBH/79M3K6hWC4boE+onKOsB6kzXKHL5ZhjA58=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "f0bbc98d-a577-4d4f-b0f8-a1651ef48e9d" + ], + "x-ms-correlation-request-id": [ + "f618ee5a-f607-4c39-8f28-2919759775e8" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200425Z:f618ee5a-f607-4c39-8f28-2919759775e8" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:25 GMT" + ], + "Content-Length": [ + "2898" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"2ad48a04-d948-46d2-a6ef-fcafdec342ce ActivityId: c8eafb46-1e87-4e8a-8706-e1aa55311c61\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:04:25.1226288Z\",\r\n \"endTime\": \"2021-04-18T20:04:25.2426343Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T20:04:25.2426343Z\",\r\n \"endTime\": \"2021-04-18T20:04:25.2776356Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T20:04:25.2776356Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8zZGJjNGRkMC02NTJhLTQxZDQtYTIyNi00ZWMyMDRmOWE4MGY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71128e7f-b19b-4f0e-aa80-7504ff18719b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772685980)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377485980)\\/\",\"ClientRequestId\":\"bad7ad8b-4e23-4bca-b0b4-affb3432746c-2021-04-18 20:04:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8WwmJRBj98uY4GD++6fXxfDsXTIjW22JV+Ta1FqMoP4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "71128e7f-b19b-4f0e-aa80-7504ff18719b" + ], + "x-ms-correlation-request-id": [ + "6aafd88d-52e0-4a6d-b706-61bdaa0bf64e" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200446Z:6aafd88d-52e0-4a6d-b706-61bdaa0bf64e" + ], + "Date": [ + "Sun, 18 Apr 2021 20:04:45 GMT" + ], + "Content-Length": [ + "2898" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"2ad48a04-d948-46d2-a6ef-fcafdec342ce ActivityId: c8eafb46-1e87-4e8a-8706-e1aa55311c61\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:04:25.1226288Z\",\r\n \"endTime\": \"2021-04-18T20:04:25.2426343Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T20:04:25.2426343Z\",\r\n \"endTime\": \"2021-04-18T20:04:25.2776356Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T20:04:25.2776356Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8zZGJjNGRkMC02NTJhLTQxZDQtYTIyNi00ZWMyMDRmOWE4MGY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "34d5fef2-a495-49a8-b8cf-e569c5ddc95d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772706400)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377506400)\\/\",\"ClientRequestId\":\"1733218f-151a-4dba-81eb-aac2ef83dc4e-2021-04-18 20:05:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5rM7zF5SrBr1/r0g/eAUQsMF4ZxnWNa+x6XTxjINFlo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "34d5fef2-a495-49a8-b8cf-e569c5ddc95d" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-correlation-request-id": [ + "ef4d1a4d-3e3b-4093-87cd-b23cb5a1bcac" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200506Z:ef4d1a4d-3e3b-4093-87cd-b23cb5a1bcac" + ], + "Date": [ + "Sun, 18 Apr 2021 20:05:06 GMT" + ], + "Content-Length": [ + "2898" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"2ad48a04-d948-46d2-a6ef-fcafdec342ce ActivityId: c8eafb46-1e87-4e8a-8706-e1aa55311c61\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:04:25.1226288Z\",\r\n \"endTime\": \"2021-04-18T20:04:25.2426343Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T20:04:25.2426343Z\",\r\n \"endTime\": \"2021-04-18T20:04:25.2776356Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T20:04:25.2776356Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8zZGJjNGRkMC02NTJhLTQxZDQtYTIyNi00ZWMyMDRmOWE4MGY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b10a3e01-33e6-4527-bf0e-d7d09f384f85" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772726862)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377526862)\\/\",\"ClientRequestId\":\"2249548c-f0b4-4c7d-be59-17fc508308d5-2021-04-18 20:05:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UrWIeALJZ9h84wBZIcS2Iv3qWjBaiPDb+zetLcLVvrI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b10a3e01-33e6-4527-bf0e-d7d09f384f85" + ], + "x-ms-correlation-request-id": [ + "de502cb9-354c-4ed2-b8f0-adeb9cb7c3f9" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200527Z:de502cb9-354c-4ed2-b8f0-adeb9cb7c3f9" + ], + "Date": [ + "Sun, 18 Apr 2021 20:05:27 GMT" + ], + "Content-Length": [ + "2898" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"2ad48a04-d948-46d2-a6ef-fcafdec342ce ActivityId: c8eafb46-1e87-4e8a-8706-e1aa55311c61\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:04:25.1226288Z\",\r\n \"endTime\": \"2021-04-18T20:04:25.2426343Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T20:04:25.2426343Z\",\r\n \"endTime\": \"2021-04-18T20:04:25.2776356Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T20:04:25.2776356Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8zZGJjNGRkMC02NTJhLTQxZDQtYTIyNi00ZWMyMDRmOWE4MGY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da06a996-66d0-4e6e-bfa4-80fc325658c0" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772747511)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377547511)\\/\",\"ClientRequestId\":\"28b35fdc-69f9-4c4d-bc36-f191ec193c0a-2021-04-18 20:05:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rJnSdShONSIFiwdh+SO3ALUSfKNkzp+hZ3eAYdYa6SY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "da06a996-66d0-4e6e-bfa4-80fc325658c0" + ], + "x-ms-correlation-request-id": [ + "33d13c6c-f7b8-4231-8223-88fbd5b3a8f8" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200547Z:33d13c6c-f7b8-4231-8223-88fbd5b3a8f8" + ], + "Date": [ + "Sun, 18 Apr 2021 20:05:47 GMT" + ], + "Content-Length": [ + "2941" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"2ad48a04-d948-46d2-a6ef-fcafdec342ce ActivityId: c8eafb46-1e87-4e8a-8706-e1aa55311c61\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:04:25.1226288Z\",\r\n \"endTime\": \"2021-04-18T20:04:25.2426343Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T20:04:25.2426343Z\",\r\n \"endTime\": \"2021-04-18T20:05:30.7100517Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T20:05:30.7100517Z\",\r\n \"endTime\": \"2021-04-18T20:05:30.830058Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"2021-04-18T20:05:30.830058Z\",\r\n \"endTime\": \"2021-04-18T20:05:30.830058Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228/replicationProtectionContainerMappings/A2APCM1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTIyOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMjI4L3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzL0EyQVBDTTEyMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "93ed765e-b132-4543-be0b-281c518b958f" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772747895)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377547895)\\/\",\"ClientRequestId\":\"e500307c-cb21-4852-823f-9453272bd961-2021-04-18 20:05:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iNiOvkEHbQDebgAjPNF6OG9qMphqlUjBbYmzjDpjGiw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "93ed765e-b132-4543-be0b-281c518b958f 4/18/2021 8:05:48 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "93ed765e-b132-4543-be0b-281c518b958f" + ], + "x-ms-correlation-request-id": [ + "e3a87255-c23a-4501-839c-74134879a9a7" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200548Z:e3a87255-c23a-4501-839c-74134879a9a7" + ], + "Date": [ + "Sun, 18 Apr 2021 20:05:47 GMT" + ], + "Content-Length": [ + "1448" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228/replicationProtectionContainerMappings/A2APCM1228\",\r\n \"name\": \"A2APCM1228\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228/replicationProtectionContainers/A2ARecoveryContainer1228\",\r\n \"targetProtectionContainerFriendlyName\": \"A2ARecoveryContainer1228\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"agentAutoUpdateStatus\": \"Disabled\",\r\n \"automationAccountArmId\": null,\r\n \"scheduleName\": null,\r\n \"jobScheduleName\": null\r\n },\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationPolicies/TestA2APolicy11228\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"A2APrimaryContainer1228\",\r\n \"sourceFabricFriendlyName\": \"East US\",\r\n \"targetFabricFriendlyName\": \"West Central US\",\r\n \"policyFriendlyName\": \"TestA2APolicy11228\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ANetworkMapping1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTIyOC9yZXBsaWNhdGlvbk5ldHdvcmtzL2F6dXJlTmV0d29yay9yZXBsaWNhdGlvbk5ldHdvcmtNYXBwaW5ncy9BMkFOZXR3b3JrTWFwcGluZzEyMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"recoveryFabricName\": \"a2aRecoveryFabric1228\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1228\",\r\n \"fabricSpecificDetails\": {\r\n \"instanceType\": \"AzureToAzure\",\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/virtualNetworks/a2aVM1228\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "054cd502-3cb1-4fa1-bf76-7e529c1b4b9d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772748359)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377548359)\\/\",\"ClientRequestId\":\"4f1aab50-8034-40f4-a750-3a74bcddf397-2021-04-18 20:05:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YHR3fJrYLYn9reCZ6MNyOhaDgMZ1SZErYvcEm57RCaU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "491" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ANetworkMapping1228/operationresults/6234b1aa-7f7e-46b5-b710-0175ecd3ada4?api-version=2021-02-10" + ], + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "054cd502-3cb1-4fa1-bf76-7e529c1b4b9d 4/18/2021 8:05:48 PM" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationOperationStatus/6234b1aa-7f7e-46b5-b710-0175ecd3ada4?api-version=2021-02-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "054cd502-3cb1-4fa1-bf76-7e529c1b4b9d" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "d4ed13ba-73a4-42c8-874d-e30af1c8fc7d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200548Z:d4ed13ba-73a4-42c8-874d-e30af1c8fc7d" + ], + "Date": [ + "Sun, 18 Apr 2021 20:05:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy82MjM0YjFhYS03ZjdlLTQ2YjUtYjcxMC0wMTc1ZWNkM2FkYTQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "054cd502-3cb1-4fa1-bf76-7e529c1b4b9d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772748970)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377548970)\\/\",\"ClientRequestId\":\"c4dcdcda-ff95-4fa4-af37-03df6d729234-2021-04-18 20:05:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HhxURj6nH/t80bE+psPwE648Mlyn2amrOPDPFR6nYpQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "054cd502-3cb1-4fa1-bf76-7e529c1b4b9d" + ], + "x-ms-correlation-request-id": [ + "55a0a9eb-a396-4f59-b601-21f246e7592a" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200549Z:55a0a9eb-a396-4f59-b601-21f246e7592a" + ], + "Date": [ + "Sun, 18 Apr 2021 20:05:48 GMT" + ], + "Content-Length": [ + "2190" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"054cd502-3cb1-4fa1-bf76-7e529c1b4b9d ActivityId: d4ed13ba-73a4-42c8-874d-e30af1c8fc7d\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"93eecb73-3cf5-4cc4-9936-41319006e62f\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-18T20:05:48.9345588Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"50c7d1be-412d-4cc8-a57c-25a626c8a05f\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1228/providers/microsoft.network/virtualnetworks/a2avm1228\",\r\n \"primaryNetworkName\": \"a2avm1228\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1228/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy82MjM0YjFhYS03ZjdlLTQ2YjUtYjcxMC0wMTc1ZWNkM2FkYTQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0aa41ee7-3404-43cc-b997-5814db7f1868" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772749336)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377549336)\\/\",\"ClientRequestId\":\"6aad7243-79d0-4eff-a348-b1514ed649a9-2021-04-18 20:05:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sRvdNNHYu1wvm4J5GznzS3HM8hbvrfcLnpk2sQsD74E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "0aa41ee7-3404-43cc-b997-5814db7f1868" + ], + "x-ms-correlation-request-id": [ + "2138fef8-7bcc-43ab-a29b-bec3f46a0495" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200549Z:2138fef8-7bcc-43ab-a29b-bec3f46a0495" + ], + "Date": [ + "Sun, 18 Apr 2021 20:05:48 GMT" + ], + "Content-Length": [ + "2190" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"054cd502-3cb1-4fa1-bf76-7e529c1b4b9d ActivityId: d4ed13ba-73a4-42c8-874d-e30af1c8fc7d\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"93eecb73-3cf5-4cc4-9936-41319006e62f\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-18T20:05:48.9345588Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"50c7d1be-412d-4cc8-a57c-25a626c8a05f\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1228/providers/microsoft.network/virtualnetworks/a2avm1228\",\r\n \"primaryNetworkName\": \"a2avm1228\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1228/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy82MjM0YjFhYS03ZjdlLTQ2YjUtYjcxMC0wMTc1ZWNkM2FkYTQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f5c64c1-e87e-4d74-a3f2-446808816438" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772769688)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377569688)\\/\",\"ClientRequestId\":\"d14187cb-5344-4c33-bab6-eef140ada119-2021-04-18 20:06:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wLiop+yJBgPqe1YI3oQzYF4CxYRS2NvBdHabRfUTtu4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "5f5c64c1-e87e-4d74-a3f2-446808816438" + ], + "x-ms-correlation-request-id": [ + "ba5340f0-98f0-422a-9ef6-68660d3e2e18" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200609Z:ba5340f0-98f0-422a-9ef6-68660d3e2e18" + ], + "Date": [ + "Sun, 18 Apr 2021 20:06:09 GMT" + ], + "Content-Length": [ + "2212" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"054cd502-3cb1-4fa1-bf76-7e529c1b4b9d ActivityId: d4ed13ba-73a4-42c8-874d-e30af1c8fc7d\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"93eecb73-3cf5-4cc4-9936-41319006e62f\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-18T20:05:48.9345588Z\",\r\n \"endTime\": \"2021-04-18T20:05:50.3302575Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"50c7d1be-412d-4cc8-a57c-25a626c8a05f\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1228/providers/microsoft.network/virtualnetworks/a2avm1228\",\r\n \"primaryNetworkName\": \"a2avm1228\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1228/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228/replicationProtectionContainers/A2ARecoveryContainer1228/replicationProtectionContainerMappings/A2ARCM1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzEyMjgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjEyMjgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUkNNMTIyOD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228\",\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationPolicies/TestA2APolicy11228\",\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"ReplicationProviderSpecificContainerMappingInput\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "430cde6d-5291-4eb3-a6e1-c75dbd8ecfc6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772770037)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377570037)\\/\",\"ClientRequestId\":\"680400a7-27a0-49d8-bba6-848cc46d8faa-2021-04-18 20:06:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"h6GLkBbw9OfOhboujge/HlzoeGQK3h7DnnoFuMfb9CM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "649" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228/replicationProtectionContainers/A2ARecoveryContainer1228/replicationProtectionContainerMappings/A2ARCM1228/operationresults/44f8c98f-fd8c-46ec-9c39-99aeac20f83c?api-version=2021-02-10" + ], + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationOperationStatus/44f8c98f-fd8c-46ec-9c39-99aeac20f83c?api-version=2021-02-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "430cde6d-5291-4eb3-a6e1-c75dbd8ecfc6" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "71a5965d-fa65-42ec-ab11-5d872cdf1996" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200610Z:71a5965d-fa65-42ec-ab11-5d872cdf1996" + ], + "Date": [ + "Sun, 18 Apr 2021 20:06:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80NGY4Yzk4Zi1mZDhjLTQ2ZWMtOWMzOS05OWFlYWMyMGY4M2M/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "430cde6d-5291-4eb3-a6e1-c75dbd8ecfc6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772770768)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377570768)\\/\",\"ClientRequestId\":\"cbbbfbf9-a069-4f26-a0cb-0c931010022f-2021-04-18 20:06:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VE286k2QLG+sNEUgbVwdO5zYa2FB4WlnnHkYhusIZ/M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "430cde6d-5291-4eb3-a6e1-c75dbd8ecfc6" + ], + "x-ms-correlation-request-id": [ + "5895a2b1-c57c-4a78-b49a-15caf7cb949f" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200610Z:5895a2b1-c57c-4a78-b49a-15caf7cb949f" + ], + "Date": [ + "Sun, 18 Apr 2021 20:06:10 GMT" + ], + "Content-Length": [ + "2865" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"430cde6d-5291-4eb3-a6e1-c75dbd8ecfc6 ActivityId: 71a5965d-fa65-42ec-ab11-5d872cdf1996\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:06:10.9213189Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"recoveryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer1228\",\r\n \"primaryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80NGY4Yzk4Zi1mZDhjLTQ2ZWMtOWMzOS05OWFlYWMyMGY4M2M/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3aa422a1-75e2-4f3b-8a2e-7c388c9eceb5" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772771124)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377571124)\\/\",\"ClientRequestId\":\"d556bf59-82fe-4637-a26e-312114b2a69b-2021-04-18 20:06:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7STIY6KGWyCxdmya0Z9W8u52bPN/RVCgWqTFWF0NZxM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "3aa422a1-75e2-4f3b-8a2e-7c388c9eceb5" + ], + "x-ms-correlation-request-id": [ + "af676a76-935f-417a-b148-68ef03a7d9e3" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200611Z:af676a76-935f-417a-b148-68ef03a7d9e3" + ], + "Date": [ + "Sun, 18 Apr 2021 20:06:10 GMT" + ], + "Content-Length": [ + "2881" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"430cde6d-5291-4eb3-a6e1-c75dbd8ecfc6 ActivityId: 71a5965d-fa65-42ec-ab11-5d872cdf1996\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:06:11.1913295Z\",\r\n \"endTime\": \"2021-04-18T20:06:11.2663435Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T20:06:11.2663435Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"recoveryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer1228\",\r\n \"primaryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80NGY4Yzk4Zi1mZDhjLTQ2ZWMtOWMzOS05OWFlYWMyMGY4M2M/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1a35872-8cf4-4aea-992e-dbe98d104826" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772791505)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377591505)\\/\",\"ClientRequestId\":\"2a3a0809-1a79-401b-86c8-d746efe205b8-2021-04-18 20:06:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AoUlCb2EJRufjSWoLSdq/zjEHOBdfQphZ7GuiFaSnQM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b1a35872-8cf4-4aea-992e-dbe98d104826" + ], + "x-ms-correlation-request-id": [ + "865dca7a-af6a-435f-b7c4-1c1d1171b3f4" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200631Z:865dca7a-af6a-435f-b7c4-1c1d1171b3f4" + ], + "Date": [ + "Sun, 18 Apr 2021 20:06:31 GMT" + ], + "Content-Length": [ + "2897" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"430cde6d-5291-4eb3-a6e1-c75dbd8ecfc6 ActivityId: 71a5965d-fa65-42ec-ab11-5d872cdf1996\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:06:11.1913295Z\",\r\n \"endTime\": \"2021-04-18T20:06:11.3263242Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T20:06:11.3263242Z\",\r\n \"endTime\": \"2021-04-18T20:06:11.5013252Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T20:06:11.5013252Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"recoveryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer1228\",\r\n \"primaryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80NGY4Yzk4Zi1mZDhjLTQ2ZWMtOWMzOS05OWFlYWMyMGY4M2M/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d17f8c39-1561-4a80-b87e-83843fd37796" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772811871)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377611871)\\/\",\"ClientRequestId\":\"d4872cc7-0c37-4fd7-bf8e-4f5f11940314-2021-04-18 20:06:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"C/vRA/+5WVxL/lyjvISaJ68LoGHQ3SscK1VB7Q+yWII=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d17f8c39-1561-4a80-b87e-83843fd37796" + ], + "x-ms-correlation-request-id": [ + "fbd8b690-969d-40f1-b083-2faa12432a11" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200652Z:fbd8b690-969d-40f1-b083-2faa12432a11" + ], + "Date": [ + "Sun, 18 Apr 2021 20:06:51 GMT" + ], + "Content-Length": [ + "2897" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"430cde6d-5291-4eb3-a6e1-c75dbd8ecfc6 ActivityId: 71a5965d-fa65-42ec-ab11-5d872cdf1996\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:06:11.1913295Z\",\r\n \"endTime\": \"2021-04-18T20:06:11.3263242Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T20:06:11.3263242Z\",\r\n \"endTime\": \"2021-04-18T20:06:11.5013252Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T20:06:11.5013252Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"recoveryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer1228\",\r\n \"primaryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80NGY4Yzk4Zi1mZDhjLTQ2ZWMtOWMzOS05OWFlYWMyMGY4M2M/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b60c2bc9-a3c2-4551-8c12-bacc16a58b56" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772832244)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377632244)\\/\",\"ClientRequestId\":\"0c7c2636-ef41-435a-a946-8dcb29fa47ac-2021-04-18 20:07:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"e1wnlm/LumZgoKR5G6Pk6fsnncSD1HqLg7Xj/pFMU7c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b60c2bc9-a3c2-4551-8c12-bacc16a58b56" + ], + "x-ms-correlation-request-id": [ + "ad4f00c9-c98d-4837-8c0d-4894ee91e4eb" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200712Z:ad4f00c9-c98d-4837-8c0d-4894ee91e4eb" + ], + "Date": [ + "Sun, 18 Apr 2021 20:07:11 GMT" + ], + "Content-Length": [ + "2897" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"430cde6d-5291-4eb3-a6e1-c75dbd8ecfc6 ActivityId: 71a5965d-fa65-42ec-ab11-5d872cdf1996\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:06:11.1913295Z\",\r\n \"endTime\": \"2021-04-18T20:06:11.3263242Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T20:06:11.3263242Z\",\r\n \"endTime\": \"2021-04-18T20:06:11.5013252Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T20:06:11.5013252Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"recoveryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer1228\",\r\n \"primaryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80NGY4Yzk4Zi1mZDhjLTQ2ZWMtOWMzOS05OWFlYWMyMGY4M2M/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "165f709c-c4fb-462d-a968-36a66ab6c321" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772852665)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377652665)\\/\",\"ClientRequestId\":\"caaacf81-d647-4c98-8923-a76fb20afdba-2021-04-18 20:07:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lU70f3NBM8avGgOS1CQLnjgXvKBX3+IcJj6Vot9jvBg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "165f709c-c4fb-462d-a968-36a66ab6c321" + ], + "x-ms-correlation-request-id": [ + "e69b80c3-ff19-41e0-9ff5-7d7ef324611f" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200732Z:e69b80c3-ff19-41e0-9ff5-7d7ef324611f" + ], + "Date": [ + "Sun, 18 Apr 2021 20:07:32 GMT" + ], + "Content-Length": [ + "2897" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"430cde6d-5291-4eb3-a6e1-c75dbd8ecfc6 ActivityId: 71a5965d-fa65-42ec-ab11-5d872cdf1996\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:06:11.1913295Z\",\r\n \"endTime\": \"2021-04-18T20:06:11.3263242Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T20:06:11.3263242Z\",\r\n \"endTime\": \"2021-04-18T20:06:11.5013252Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T20:06:11.5013252Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"recoveryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer1228\",\r\n \"primaryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80NGY4Yzk4Zi1mZDhjLTQ2ZWMtOWMzOS05OWFlYWMyMGY4M2M/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4bdf5df0-ba03-4bec-955b-6ddcfd45165c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772873038)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377673038)\\/\",\"ClientRequestId\":\"08051142-c679-43b4-b8ca-944d61a77deb-2021-04-18 20:07:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xJyLj6UECDkX29fE1pzeLJcIWIEj5OTLgPgasypdtsA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "4bdf5df0-ba03-4bec-955b-6ddcfd45165c" + ], + "x-ms-correlation-request-id": [ + "a4c2d112-87e3-4686-aff3-e189ee0ce51c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200753Z:a4c2d112-87e3-4686-aff3-e189ee0ce51c" + ], + "Date": [ + "Sun, 18 Apr 2021 20:07:52 GMT" + ], + "Content-Length": [ + "2941" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"430cde6d-5291-4eb3-a6e1-c75dbd8ecfc6 ActivityId: 71a5965d-fa65-42ec-ab11-5d872cdf1996\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:06:11.1913295Z\",\r\n \"endTime\": \"2021-04-18T20:06:11.3263242Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T20:06:11.3263242Z\",\r\n \"endTime\": \"2021-04-18T20:07:43.301921Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T20:07:43.301921Z\",\r\n \"endTime\": \"2021-04-18T20:07:43.4019224Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"2021-04-18T20:07:43.4019224Z\",\r\n \"endTime\": \"2021-04-18T20:07:43.4019224Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"primaryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"recoveryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"recoveryCloudName\": \"A2APrimaryContainer1228\",\r\n \"primaryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228/replicationProtectionContainers/A2ARecoveryContainer1228/replicationProtectionContainerMappings/A2ARCM1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzEyMjgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjEyMjgvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUkNNMTIyOD9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7e0234a-d101-47ed-9004-5202220ef6e2" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772873404)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377673404)\\/\",\"ClientRequestId\":\"4a640ebe-b268-4cc7-b64f-1c206959c619-2021-04-18 20:07:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WlF+t0icratmi5ej9G4mTpkLQaJHVSB6qGF3fGf2ajc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "a7e0234a-d101-47ed-9004-5202220ef6e2 4/18/2021 8:07:53 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "a7e0234a-d101-47ed-9004-5202220ef6e2" + ], + "x-ms-correlation-request-id": [ + "64b8d8e8-4137-45ab-ae7b-7983af346cee" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200753Z:64b8d8e8-4137-45ab-ae7b-7983af346cee" + ], + "Date": [ + "Sun, 18 Apr 2021 20:07:52 GMT" + ], + "Content-Length": [ + "1448" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228/replicationProtectionContainers/A2ARecoveryContainer1228/replicationProtectionContainerMappings/A2ARCM1228\",\r\n \"name\": \"A2ARCM1228\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228\",\r\n \"targetProtectionContainerFriendlyName\": \"A2APrimaryContainer1228\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"agentAutoUpdateStatus\": \"Disabled\",\r\n \"automationAccountArmId\": null,\r\n \"scheduleName\": null,\r\n \"jobScheduleName\": null\r\n },\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationPolicies/TestA2APolicy11228\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"A2ARecoveryContainer1228\",\r\n \"sourceFabricFriendlyName\": \"West Central US\",\r\n \"targetFabricFriendlyName\": \"East US\",\r\n \"policyFriendlyName\": \"TestA2APolicy11228\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ARecoveryNetworkMapping1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFSZWNvdmVyeUZhYnJpYzEyMjgvcmVwbGljYXRpb25OZXR3b3Jrcy9henVyZU5ldHdvcmsvcmVwbGljYXRpb25OZXR3b3JrTWFwcGluZ3MvQTJBUmVjb3ZlcnlOZXR3b3JrTWFwcGluZzEyMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"recoveryFabricName\": \"a2aPrimaryFabric1228\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/virtualNetworks/a2aVM1228\",\r\n \"fabricSpecificDetails\": {\r\n \"instanceType\": \"AzureToAzure\",\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork1228\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "11879d47-a54a-46cf-b985-b215af1f21ca" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772873838)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377673838)\\/\",\"ClientRequestId\":\"349a66ae-80c5-4bfd-8b77-8d758666b569-2021-04-18 20:07:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"quk5ZWFAn2Df/bsv73xn7Zn8XmvFKc7iMOMnaLh4PMM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "490" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ARecoveryNetworkMapping1228/operationresults/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8?api-version=2021-02-10" + ], + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "11879d47-a54a-46cf-b985-b215af1f21ca 4/18/2021 8:07:54 PM" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationOperationStatus/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8?api-version=2021-02-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "11879d47-a54a-46cf-b985-b215af1f21ca" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "5f55596c-d43b-4dd6-bc07-c2248c34990e" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200754Z:5f55596c-d43b-4dd6-bc07-c2248c34990e" + ], + "Date": [ + "Sun, 18 Apr 2021 20:07:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8xY2RhMjBlMS05NDVjLTRlYmYtYWI2Yy1kMzFiNjc2MWRkYzg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "11879d47-a54a-46cf-b985-b215af1f21ca" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772874474)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377674474)\\/\",\"ClientRequestId\":\"f713b730-01cf-4084-9e47-d2d2034e8480-2021-04-18 20:07:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hCNQ84HhF0TyytoUzKRIx9XLIfqd/yD6jT9qtXsNjXY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "11879d47-a54a-46cf-b985-b215af1f21ca" + ], + "x-ms-correlation-request-id": [ + "4061e5c2-4ecb-4ee1-a496-0dd8213d9906" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200754Z:4061e5c2-4ecb-4ee1-a496-0dd8213d9906" + ], + "Date": [ + "Sun, 18 Apr 2021 20:07:53 GMT" + ], + "Content-Length": [ + "2263" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"11879d47-a54a-46cf-b985-b215af1f21ca ActivityId: 5f55596c-d43b-4dd6-bc07-c2248c34990e\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"af682c51-25b5-4007-865d-2fe87f5d70af\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-18T20:07:54.5070561Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"0092b4ed-6f7b-4ea5-9eed-c438023ada3c\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1228/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1228\",\r\n \"primaryNetworkName\": \"a2arecoverynetwork1228\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1228/providers/microsoft.network/virtualnetworks/a2avm1228\",\r\n \"recoveryNetworkName\": \"a2avm1228\",\r\n \"primaryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8xY2RhMjBlMS05NDVjLTRlYmYtYWI2Yy1kMzFiNjc2MWRkYzg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "13739b52-06cd-4959-b130-9c854d680ddf" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772874862)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377674862)\\/\",\"ClientRequestId\":\"03e4f913-1c45-47b8-bbeb-48f215102aab-2021-04-18 20:07:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JCLJ1xhpaXz106V8TxSQ5yyjwS3S4mORBcF1SbGy4SY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "13739b52-06cd-4959-b130-9c854d680ddf" + ], + "x-ms-correlation-request-id": [ + "db89da45-5494-4b00-a20a-8fcb3ea4988d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200755Z:db89da45-5494-4b00-a20a-8fcb3ea4988d" + ], + "Date": [ + "Sun, 18 Apr 2021 20:07:55 GMT" + ], + "Content-Length": [ + "2263" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"11879d47-a54a-46cf-b985-b215af1f21ca ActivityId: 5f55596c-d43b-4dd6-bc07-c2248c34990e\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"af682c51-25b5-4007-865d-2fe87f5d70af\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-18T20:07:54.5070561Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"0092b4ed-6f7b-4ea5-9eed-c438023ada3c\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1228/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1228\",\r\n \"primaryNetworkName\": \"a2arecoverynetwork1228\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1228/providers/microsoft.network/virtualnetworks/a2avm1228\",\r\n \"recoveryNetworkName\": \"a2avm1228\",\r\n \"primaryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8xY2RhMjBlMS05NDVjLTRlYmYtYWI2Yy1kMzFiNjc2MWRkYzg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98d57385-b097-4205-a343-65b6aaf6deb6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772895224)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377695224)\\/\",\"ClientRequestId\":\"88e316f2-52e2-4f43-9af7-979d6b491d6e-2021-04-18 20:08:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iWDWZtvjXP+bC0BZnWMz1ApS5di9rKONVR8Zi+IvpL8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "98d57385-b097-4205-a343-65b6aaf6deb6" + ], + "x-ms-correlation-request-id": [ + "bd474119-4373-40c2-807c-cb442f77411d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200815Z:bd474119-4373-40c2-807c-cb442f77411d" + ], + "Date": [ + "Sun, 18 Apr 2021 20:08:15 GMT" + ], + "Content-Length": [ + "2284" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"11879d47-a54a-46cf-b985-b215af1f21ca ActivityId: 5f55596c-d43b-4dd6-bc07-c2248c34990e\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"af682c51-25b5-4007-865d-2fe87f5d70af\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-18T20:07:54.5070561Z\",\r\n \"endTime\": \"2021-04-18T20:07:56.234236Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"0092b4ed-6f7b-4ea5-9eed-c438023ada3c\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1228/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1228\",\r\n \"primaryNetworkName\": \"a2arecoverynetwork1228\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1228/providers/microsoft.network/virtualnetworks/a2avm1228\",\r\n \"recoveryNetworkName\": \"a2avm1228\",\r\n \"primaryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"recoveryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228/replicationProtectedItems/a2aVM1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTIyOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMjI4L3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMjI4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationPolicies/TestA2APolicy11228\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Compute/virtualMachines/a2aVM1228\",\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228/replicationProtectionContainers/A2ARecoveryContainer1228\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228\",\r\n \"vmDisks\": [],\r\n \"vmManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Compute/disks/a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507\",\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Storage/storageAccounts/cache1228\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\"\r\n }\r\n ],\r\n \"recoveryVirtualMachineScaleSetId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-asr\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17c9f78e-48d2-4604-9150-5696dafc95e3" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772896014)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377696014)\\/\",\"ClientRequestId\":\"6f2eb345-b298-487b-b21e-f91905686361-2021-04-18 20:08:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wrvCFvFI1R0O6DzHcNYRsNnuUpi93mLNo865E5n+dMo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1747" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228/replicationProtectedItems/a2aVM1228/operationresults/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10" + ], + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationOperationStatus/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "17c9f78e-48d2-4604-9150-5696dafc95e3" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "26ef97ed-f4b2-4e27-98df-90ae6c3319de" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200816Z:26ef97ed-f4b2-4e27-98df-90ae6c3319de" + ], + "Date": [ + "Sun, 18 Apr 2021 20:08:16 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17c9f78e-48d2-4604-9150-5696dafc95e3" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772896759)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377696759)\\/\",\"ClientRequestId\":\"96113b52-0417-4e51-9d7c-981239615670-2021-04-18 20:08:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8s6YLz50WYwr17RyCoPSbrdMeqTElRfGWYW+Vmzb7RE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "17c9f78e-48d2-4604-9150-5696dafc95e3" + ], + "x-ms-correlation-request-id": [ + "cd60dc97-3991-4c9a-bc04-22af8fd01353" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200816Z:cd60dc97-3991-4c9a-bc04-22af8fd01353" + ], + "Date": [ + "Sun, 18 Apr 2021 20:08:16 GMT" + ], + "Content-Length": [ + "3370" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.8861853Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c7cac612-b303-4622-815a-ab2738b2491c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772937151)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377737151)\\/\",\"ClientRequestId\":\"aeeea39e-2984-4912-babb-c8d5f8e7b814-2021-04-18 20:08:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+sURLTd0Q5RK0UlGAW44e9SvvGo013yM2UwAcFJGryM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c7cac612-b303-4622-815a-ab2738b2491c" + ], + "x-ms-correlation-request-id": [ + "b62adc4c-a329-4949-a22a-416bbb603e64" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200857Z:b62adc4c-a329-4949-a22a-416bbb603e64" + ], + "Date": [ + "Sun, 18 Apr 2021 20:08:57 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7cf3cfd-58b2-4886-bc24-6a086fc46173" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772957624)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377757624)\\/\",\"ClientRequestId\":\"09eb0ef9-5bed-43bd-9d35-2e06259aa5f8-2021-04-18 20:09:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"J/utNiJl8HO6xic3em8/K7nGYPJmsjDi+O2vWdKbCao=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e7cf3cfd-58b2-4886-bc24-6a086fc46173" + ], + "x-ms-correlation-request-id": [ + "1c4de691-60f1-4a57-b8f6-b20f6db33614" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200917Z:1c4de691-60f1-4a57-b8f6-b20f6db33614" + ], + "Date": [ + "Sun, 18 Apr 2021 20:09:17 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b384583e-11de-46c7-bcea-889ce3d1fa56" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772978006)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377778006)\\/\",\"ClientRequestId\":\"8ca53368-524d-4c6c-aa1e-af3a5f3ca68a-2021-04-18 20:09:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cgytt0vcktgbDzreV7KlrCW/auH1zlT/+pC8R+iN+6c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b384583e-11de-46c7-bcea-889ce3d1fa56" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-correlation-request-id": [ + "7687da63-fd9b-4e34-aa4b-56edea86a429" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200938Z:7687da63-fd9b-4e34-aa4b-56edea86a429" + ], + "Date": [ + "Sun, 18 Apr 2021 20:09:38 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c8217bf3-b512-42de-887c-86ed5b6083f7" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618772998382)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377798382)\\/\",\"ClientRequestId\":\"9f551d58-b060-4899-a413-b435e73ec940-2021-04-18 20:09:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qlztpB0mnwvgWWslkjBAFc4QXZw8SrVDn8Xal6AB48o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c8217bf3-b512-42de-887c-86ed5b6083f7" + ], + "x-ms-correlation-request-id": [ + "cb1d7a0c-d57d-43f5-b930-b93f7eba108e" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T200958Z:cb1d7a0c-d57d-43f5-b930-b93f7eba108e" + ], + "Date": [ + "Sun, 18 Apr 2021 20:09:58 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cb2ca4df-6f12-4ee3-92dd-3a985b10f412" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773018990)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377818990)\\/\",\"ClientRequestId\":\"a5f56c85-0ebf-4496-a483-bd3016ab04c6-2021-04-18 20:10:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/xihFvFHcQgXzm9Y7fy8kv/+4j1xYbX2Ue3oi8atw40=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "cb2ca4df-6f12-4ee3-92dd-3a985b10f412" + ], + "x-ms-correlation-request-id": [ + "5842baa8-df1a-4bf9-a67c-42b8191129be" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201019Z:5842baa8-df1a-4bf9-a67c-42b8191129be" + ], + "Date": [ + "Sun, 18 Apr 2021 20:10:19 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "426111d0-ef3f-456f-8c40-43efc553e26b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773039413)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377839413)\\/\",\"ClientRequestId\":\"9a97049d-7cd4-4840-8029-10e9e7d8dac3-2021-04-18 20:10:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"v+h2OrI04BInBb0gtEzyEcRXBA28d/EGru89NmH1WWM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "426111d0-ef3f-456f-8c40-43efc553e26b" + ], + "x-ms-correlation-request-id": [ + "a7f0e7e8-5f89-4705-ade0-85b3feb5982a" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201039Z:a7f0e7e8-5f89-4705-ade0-85b3feb5982a" + ], + "Date": [ + "Sun, 18 Apr 2021 20:10:38 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d899268a-31a8-4b6c-808e-0928464e530c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773059814)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377859814)\\/\",\"ClientRequestId\":\"4151f9a0-cb4b-4537-9e5b-ff4ffb21e898-2021-04-18 20:10:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"POeE0k6WcCMGGOHbLxSukI1RvoZSPONJEZhRKUEWMZ0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d899268a-31a8-4b6c-808e-0928464e530c" + ], + "x-ms-correlation-request-id": [ + "6cb05697-932e-4dd1-a400-fc7708c14938" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201100Z:6cb05697-932e-4dd1-a400-fc7708c14938" + ], + "Date": [ + "Sun, 18 Apr 2021 20:11:00 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8158d8a7-5bf3-4459-8b12-9c16a2b9da40" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773080270)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377880270)\\/\",\"ClientRequestId\":\"6ad72f41-db49-4a86-83cf-71f187d0eca7-2021-04-18 20:11:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EqAOgZIZmyudIHRvKU2USUmJCFaFT96LjU1XlvTLndE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11926" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "8158d8a7-5bf3-4459-8b12-9c16a2b9da40" + ], + "x-ms-correlation-request-id": [ + "85e2f014-d51e-47b8-8b83-f33f154876e4" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201120Z:85e2f014-d51e-47b8-8b83-f33f154876e4" + ], + "Date": [ + "Sun, 18 Apr 2021 20:11:20 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c02e48b8-8834-4b81-9a17-aba71c3b1f45" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773100689)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377900689)\\/\",\"ClientRequestId\":\"dd57dde2-3e1e-400d-bc4b-756558ca0975-2021-04-18 20:11:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IzTOCR4gWgpCkMKwQOOH/31lpdRGbyYDVExUnYN3k4k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c02e48b8-8834-4b81-9a17-aba71c3b1f45" + ], + "x-ms-correlation-request-id": [ + "1336c96c-269e-4973-95a6-43fb864b4233" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201140Z:1336c96c-269e-4973-95a6-43fb864b4233" + ], + "Date": [ + "Sun, 18 Apr 2021 20:11:40 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e5ba331e-e73a-472a-a4a9-aee923dbdbed" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773121086)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377921086)\\/\",\"ClientRequestId\":\"83bca3a6-d4b5-4283-8789-2fbf67dda121-2021-04-18 20:12:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MvTU1uxqAEriiF38gaCyPqW00PqLOD/GgRuau1I0qcc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e5ba331e-e73a-472a-a4a9-aee923dbdbed" + ], + "x-ms-correlation-request-id": [ + "60105e86-aa54-4aba-b3da-68fb93318f42" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201201Z:60105e86-aa54-4aba-b3da-68fb93318f42" + ], + "Date": [ + "Sun, 18 Apr 2021 20:12:01 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba364ef2-9215-4ac3-aff9-4673a7b29cca" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773142121)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377942121)\\/\",\"ClientRequestId\":\"239625c7-1894-418a-b5be-0adbc89c9393-2021-04-18 20:12:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JdSQt2mnWylAhyKOL2uXLA9vno/LSV+zchorGLQkxEA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11923" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "ba364ef2-9215-4ac3-aff9-4673a7b29cca" + ], + "x-ms-correlation-request-id": [ + "2a6e3566-9964-4cfa-a673-a7a8816fd1cf" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201222Z:2a6e3566-9964-4cfa-a673-a7a8816fd1cf" + ], + "Date": [ + "Sun, 18 Apr 2021 20:12:22 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef0ccdd3-5de1-479f-a131-c9b3b2281a7c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773162594)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377962594)\\/\",\"ClientRequestId\":\"31e1021f-d559-4715-a47b-0a409ced5284-2021-04-18 20:12:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1yrdxvl70WPmbyGYZeYxYvC0+ozo1o5iKa7ZTJWobww=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "ef0ccdd3-5de1-479f-a131-c9b3b2281a7c" + ], + "x-ms-correlation-request-id": [ + "5723ff8e-49d7-4089-b901-e16b9e4ec6b2" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201242Z:5723ff8e-49d7-4089-b901-e16b9e4ec6b2" + ], + "Date": [ + "Sun, 18 Apr 2021 20:12:41 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "391bcae2-2c45-4b99-ad78-2c0ace73511c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773183005)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619377983005)\\/\",\"ClientRequestId\":\"3957d243-a7b4-44f2-9079-2c91566ee0a6-2021-04-18 20:13:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8wdoxKv/s/fFKiJaXElXWS9J2lKhn2fcbzdgJfcTTpQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "391bcae2-2c45-4b99-ad78-2c0ace73511c" + ], + "x-ms-correlation-request-id": [ + "bf78c005-0a91-4308-9236-13a908e1bcfb" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201303Z:bf78c005-0a91-4308-9236-13a908e1bcfb" + ], + "Date": [ + "Sun, 18 Apr 2021 20:13:03 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7165fdb6-2105-4819-9592-8f5183d564a5" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773203400)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378003400)\\/\",\"ClientRequestId\":\"9156cad8-f103-4b59-902a-b0412d9b72ed-2021-04-18 20:13:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ySTFpO0/22sCUz/WUNLxyUbaeW/IVxp18915kVaeC7U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "7165fdb6-2105-4819-9592-8f5183d564a5" + ], + "x-ms-correlation-request-id": [ + "b0d7df0d-9ec1-434a-b84e-e387fd74ea9c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201323Z:b0d7df0d-9ec1-434a-b84e-e387fd74ea9c" + ], + "Date": [ + "Sun, 18 Apr 2021 20:13:23 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6e970a28-a0a9-4c50-863b-4d0b3cd4939b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773223802)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378023802)\\/\",\"ClientRequestId\":\"a290cb6e-04b7-4735-909b-25ab59bb0cc2-2021-04-18 20:13:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"U4+WNinWwc/bAJBgvJlgFxZY1T/W1iQwXO/sZiuf4XQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11919" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "6e970a28-a0a9-4c50-863b-4d0b3cd4939b" + ], + "x-ms-correlation-request-id": [ + "66eb9fec-1bd8-41ca-a21c-c094bd0123c0" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201344Z:66eb9fec-1bd8-41ca-a21c-c094bd0123c0" + ], + "Date": [ + "Sun, 18 Apr 2021 20:13:44 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5160769f-6324-493e-8f21-b9856c2be454" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773244202)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378044202)\\/\",\"ClientRequestId\":\"0de011fa-701b-4be9-b251-98b8110e9738-2021-04-18 20:14:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BrV0cbAV1Ffk4ugOInu/USNIoESkmRrrqHgeNVPSxRE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "5160769f-6324-493e-8f21-b9856c2be454" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "x-ms-correlation-request-id": [ + "6451308f-2fc7-41de-81a7-2aebb0a36faa" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201404Z:6451308f-2fc7-41de-81a7-2aebb0a36faa" + ], + "Date": [ + "Sun, 18 Apr 2021 20:14:04 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cc7ceb68-bfba-448a-a170-e2204ac5cb49" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773264668)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378064668)\\/\",\"ClientRequestId\":\"c9c28b51-ad6c-454e-a22a-0c4358897bb8-2021-04-18 20:14:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nPr3/mv+/BunPN8n6vPyiGLB/bs/TXTj+u1PoGZZ9gs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "cc7ceb68-bfba-448a-a170-e2204ac5cb49" + ], + "x-ms-correlation-request-id": [ + "2de6653f-2c25-4480-a71d-44d19083be16" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201425Z:2de6653f-2c25-4480-a71d-44d19083be16" + ], + "Date": [ + "Sun, 18 Apr 2021 20:14:24 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "916c022e-4962-4555-b1f9-0c2a1d87e211" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773285180)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378085180)\\/\",\"ClientRequestId\":\"a1fb4916-3a87-4a60-8b87-8a51d3d6a78b-2021-04-18 20:14:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QnNE1HDhbKh8pB+yaGS5Nr+tJDFHK3GRkPmozYGdPC0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "916c022e-4962-4555-b1f9-0c2a1d87e211" + ], + "x-ms-correlation-request-id": [ + "bf5404b3-2340-47a7-8482-0c93e016c515" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201445Z:bf5404b3-2340-47a7-8482-0c93e016c515" + ], + "Date": [ + "Sun, 18 Apr 2021 20:14:45 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "19607c83-bfba-4310-96a0-61117356b490" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773305569)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378105569)\\/\",\"ClientRequestId\":\"c12b68bd-ae0b-4975-ad3c-69ca76109129-2021-04-18 20:15:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"K0FjC/bgvR8/tOUwdRdZWNhalmDHViPdBx9a917Z3EY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "19607c83-bfba-4310-96a0-61117356b490" + ], + "x-ms-correlation-request-id": [ + "8faf5ca3-cc03-47d0-9e21-24557168027f" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201505Z:8faf5ca3-cc03-47d0-9e21-24557168027f" + ], + "Date": [ + "Sun, 18 Apr 2021 20:15:05 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36abde84-4c6b-4c5c-9756-2b503e4d2e94" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773325935)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378125935)\\/\",\"ClientRequestId\":\"d983c5ce-a472-4ae9-be41-00d970c76f56-2021-04-18 20:15:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Srbek2/h/feaba8dkc263Y2Ba9cAVQcaSLpokZDAPvo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11919" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "36abde84-4c6b-4c5c-9756-2b503e4d2e94" + ], + "x-ms-correlation-request-id": [ + "636ef917-4235-4640-a064-9fcbdd78e310" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201526Z:636ef917-4235-4640-a064-9fcbdd78e310" + ], + "Date": [ + "Sun, 18 Apr 2021 20:15:26 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "33acee90-3007-4461-b8bf-421fb262c8c5" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773346348)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378146348)\\/\",\"ClientRequestId\":\"bb1ffc9d-766c-4399-9e56-ca105b56bf7a-2021-04-18 20:15:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pKChE5RWVlvvtFyl3lQpNdOHTlvd9i9Hv+qyVtFLa+Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "33acee90-3007-4461-b8bf-421fb262c8c5" + ], + "x-ms-correlation-request-id": [ + "210ca6de-8219-40d5-95c8-e6d722b43b8c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201546Z:210ca6de-8219-40d5-95c8-e6d722b43b8c" + ], + "Date": [ + "Sun, 18 Apr 2021 20:15:46 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1d581a1-0044-425d-923f-d280ed1d47ec" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773366755)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378166755)\\/\",\"ClientRequestId\":\"8ebfe15b-e122-4bda-95aa-b27ab279d103-2021-04-18 20:16:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fPtL7UO4WJiHa+Ja02VTl0qkzfZitDxt9EeUkidOXeA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b1d581a1-0044-425d-923f-d280ed1d47ec" + ], + "x-ms-correlation-request-id": [ + "ff7c9ae4-b19d-4a85-8ed8-8602eef714ce" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201607Z:ff7c9ae4-b19d-4a85-8ed8-8602eef714ce" + ], + "Date": [ + "Sun, 18 Apr 2021 20:16:06 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45fc6084-6dd9-432d-90e2-c0c23c9792f5" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773387240)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378187240)\\/\",\"ClientRequestId\":\"03919779-1ce6-49b8-861d-9fb986b4bb44-2021-04-18 20:16:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1BWCwAoQzS9aOPbvXmk7fooeZ8ACPkYexhimwUZXyw4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "45fc6084-6dd9-432d-90e2-c0c23c9792f5" + ], + "x-ms-correlation-request-id": [ + "0048e43f-99f3-4ace-a913-9745e663be68" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201627Z:0048e43f-99f3-4ace-a913-9745e663be68" + ], + "Date": [ + "Sun, 18 Apr 2021 20:16:27 GMT" + ], + "Content-Length": [ + "3386" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28916476-1395-4d36-806e-e02a2f5c95c9" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773407621)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378207621)\\/\",\"ClientRequestId\":\"13506351-6f9d-4a3d-8e76-d11a49364107-2021-04-18 20:16:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RCMEgIhCUqLIxL0Gug4/sOOqsRP9ejjxSX5SENqcdhc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11915" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "28916476-1395-4d36-806e-e02a2f5c95c9" + ], + "x-ms-correlation-request-id": [ + "9b7011f4-53d3-4cb3-9691-aacea214499b" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201648Z:9b7011f4-53d3-4cb3-9691-aacea214499b" + ], + "Date": [ + "Sun, 18 Apr 2021 20:16:47 GMT" + ], + "Content-Length": [ + "3418" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c73b8e3a-0e87-40e1-9791-1760974a56ee" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773428492)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378228492)\\/\",\"ClientRequestId\":\"2fcb8e83-a68c-4b6f-a016-ce39e23a9814-2021-04-18 20:17:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UC00gWbJYO0VWhTXb6C09g6brgcLMjfV5lKAaCjfKyI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11914" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c73b8e3a-0e87-40e1-9791-1760974a56ee" + ], + "x-ms-correlation-request-id": [ + "2c9f5d51-c19a-4be1-9487-d13080198369" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201708Z:2c9f5d51-c19a-4be1-9487-d13080198369" + ], + "Date": [ + "Sun, 18 Apr 2021 20:17:08 GMT" + ], + "Content-Length": [ + "3418" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "65c381f0-c938-4e77-9418-261f3df48a69" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773448903)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378248903)\\/\",\"ClientRequestId\":\"459a9156-a2a2-4995-98a5-f35965471bc8-2021-04-18 20:17:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"t0yTI3OqDC5ZkkA4lO8GvsL4DuqLtPFa8Ij//Lu2tBo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "65c381f0-c938-4e77-9418-261f3df48a69" + ], + "x-ms-correlation-request-id": [ + "88fdeeb4-1c07-4245-9c4b-63f19abfbd37" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201729Z:88fdeeb4-1c07-4245-9c4b-63f19abfbd37" + ], + "Date": [ + "Sun, 18 Apr 2021 20:17:29 GMT" + ], + "Content-Length": [ + "3418" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9e3b8f38-5f0b-4184-bf95-b8c321f1905e" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773469301)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378269301)\\/\",\"ClientRequestId\":\"63d791b1-c28e-4eb7-be14-67693d24016f-2021-04-18 20:17:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gS8qocSpEgnqTi01Q743wSaYXn5nLWTmjpwoWIr4hCQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "9e3b8f38-5f0b-4184-bf95-b8c321f1905e" + ], + "x-ms-correlation-request-id": [ + "260220aa-82ef-4cb7-94c7-184d535cfa9b" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201749Z:260220aa-82ef-4cb7-94c7-184d535cfa9b" + ], + "Date": [ + "Sun, 18 Apr 2021 20:17:49 GMT" + ], + "Content-Length": [ + "3418" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c3187148-91fc-4a73-8afd-7f781b1f3c7d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773489677)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378289677)\\/\",\"ClientRequestId\":\"356be707-fc4b-4cd4-ab23-40eb72a49a60-2021-04-18 20:18:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"s1lXXK4cdVr/orsgU1pU8TK5TpI101r5cf+uwGn1vnE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c3187148-91fc-4a73-8afd-7f781b1f3c7d" + ], + "x-ms-correlation-request-id": [ + "3c2f5d85-8151-4d9e-8203-4cd45737bc8d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201809Z:3c2f5d85-8151-4d9e-8203-4cd45737bc8d" + ], + "Date": [ + "Sun, 18 Apr 2021 20:18:09 GMT" + ], + "Content-Length": [ + "3418" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "edfb3ff2-c273-4a54-a5ff-f666bb1684f2" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773511047)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378311047)\\/\",\"ClientRequestId\":\"4135fcfe-4152-44bb-a2e4-755abf400317-2021-04-18 20:18:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"n3yVFcDdHybPSX69SGYcxBUU8FaARC3tMI9Tce1+6Uc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "edfb3ff2-c273-4a54-a5ff-f666bb1684f2" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11910" + ], + "x-ms-correlation-request-id": [ + "748caddd-715d-4698-8123-8ab968a94983" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201831Z:748caddd-715d-4698-8123-8ab968a94983" + ], + "Date": [ + "Sun, 18 Apr 2021 20:18:31 GMT" + ], + "Content-Length": [ + "3418" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e0d18ead-4586-4fd1-9580-472a6afa733c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773531499)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378331499)\\/\",\"ClientRequestId\":\"c17dfe18-2188-4e15-97bc-d11888a06b11-2021-04-18 20:18:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PmgVmJLD2fzMscKdWalx6/VnUMPP8dxRDyzuhXde/Vw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11909" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e0d18ead-4586-4fd1-9580-472a6afa733c" + ], + "x-ms-correlation-request-id": [ + "81a5b4c6-a7b9-43bd-b898-8b4b58e99dc1" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201852Z:81a5b4c6-a7b9-43bd-b898-8b4b58e99dc1" + ], + "Date": [ + "Sun, 18 Apr 2021 20:18:51 GMT" + ], + "Content-Length": [ + "3418" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "adb3e4bc-8e6e-4c08-9dab-e2291d9d02d3" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773552163)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378352163)\\/\",\"ClientRequestId\":\"3e486082-2ee2-46f2-874f-419a1e9b20e0-2021-04-18 20:19:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"W7MW4jAFtCy6CplECxBDfBa4LH+gtX4I9evQ4127fOU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11908" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "adb3e4bc-8e6e-4c08-9dab-e2291d9d02d3" + ], + "x-ms-correlation-request-id": [ + "c060038b-7347-438c-aee6-16e18506c390" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201912Z:c060038b-7347-438c-aee6-16e18506c390" + ], + "Date": [ + "Sun, 18 Apr 2021 20:19:12 GMT" + ], + "Content-Length": [ + "3418" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83b3514c-96cb-4a03-976d-2965f36c7d2a" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773572572)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378372572)\\/\",\"ClientRequestId\":\"2cd63051-0ef6-45ad-a414-a73713c4a66b-2021-04-18 20:19:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HZcL9FYfBOB35xgAwA7PDRUAQf/abUN+I5TcRSjLaI4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11907" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "83b3514c-96cb-4a03-976d-2965f36c7d2a" + ], + "x-ms-correlation-request-id": [ + "b6a4fb97-8ed0-48aa-9390-771588d0b4e5" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201932Z:b6a4fb97-8ed0-48aa-9390-771588d0b4e5" + ], + "Date": [ + "Sun, 18 Apr 2021 20:19:32 GMT" + ], + "Content-Length": [ + "3418" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "17dc46f2-d547-4e1c-b76d-6648c86dfbd5" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773592965)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378392965)\\/\",\"ClientRequestId\":\"aa9b0f34-1937-470d-94bf-63af9f68eb7f-2021-04-18 20:19:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kTG+G7hExul9f/TqG4sqgMOc2ySe0q8vMUnAcyOSiFs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11906" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "17dc46f2-d547-4e1c-b76d-6648c86dfbd5" + ], + "x-ms-correlation-request-id": [ + "acaad03c-889c-47b4-b642-c4e8f8fb911f" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T201953Z:acaad03c-889c-47b4-b642-c4e8f8fb911f" + ], + "Date": [ + "Sun, 18 Apr 2021 20:19:52 GMT" + ], + "Content-Length": [ + "3418" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy80ZTNjYzJmMC0wMWIxLTRkZmUtYjUzZS1kMTU1ZDRmMDhmMjg/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d2cfe99-1e15-4b30-b95f-8a692f49e264" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773613366)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378413366)\\/\",\"ClientRequestId\":\"ee4052b2-634e-48ea-b77f-1e121c01c21e-2021-04-18 20:20:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KxZrrFO8OHDgAQEu0xnJsXW46yJZ6/YC0WKRASgLiWc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11905" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "3d2cfe99-1e15-4b30-b95f-8a692f49e264" + ], + "x-ms-correlation-request-id": [ + "37c631c0-7d1f-42d8-9427-1239a22dc9c6" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202013Z:37c631c0-7d1f-42d8-9427-1239a22dc9c6" + ], + "Date": [ + "Sun, 18 Apr 2021 20:20:13 GMT" + ], + "Content-Length": [ + "3464" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:08:16.9361872Z\",\r\n \"endTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T20:08:31.1367283Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T20:16:28.4550585Z\",\r\n \"endTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T20:16:28.5850615Z\",\r\n \"endTime\": \"2021-04-18T20:20:01.8270082Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2021-04-18T20:20:01.8270082Z\",\r\n \"endTime\": \"2021-04-18T20:20:01.9170082Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88f9d022-aef1-45ad-b529-e26d3fb6fc7a" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773613802)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378413802)\\/\",\"ClientRequestId\":\"0fb07929-c3a3-4c87-b41c-65c9f0102fb0-2021-04-18 20:20:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vjUkk9/K+IRO3D7xU2YgEJooO3NeXZAf37Nnuto54HY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11904" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f768bb71-046c-4ba2-b4ba-def4424aa6ec" + ], + "x-ms-client-request-id": [ + "88f9d022-aef1-45ad-b529-e26d3fb6fc7a" + ], + "x-ms-correlation-request-id": [ + "f768bb71-046c-4ba2-b4ba-def4424aa6ec" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202014Z:f768bb71-046c-4ba2-b4ba-def4424aa6ec" + ], + "Date": [ + "Sun, 18 Apr 2021 20:20:14 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3d2cecab-e0c6-4e7e-ac7d-3677ef1dc27c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773624246)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378424246)\\/\",\"ClientRequestId\":\"cf7ba367-1f94-4196-a015-7f3137db930f-2021-04-18 20:20:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AjYH0JQqQ3ODbuvI5hChe6MaMkrF8CD+rSTnYb43bmw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11903" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d282278d-ed2b-44c9-8ddb-00c94f9e3b3a" + ], + "x-ms-client-request-id": [ + "3d2cecab-e0c6-4e7e-ac7d-3677ef1dc27c" + ], + "x-ms-correlation-request-id": [ + "d282278d-ed2b-44c9-8ddb-00c94f9e3b3a" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202024Z:d282278d-ed2b-44c9-8ddb-00c94f9e3b3a" + ], + "Date": [ + "Sun, 18 Apr 2021 20:20:24 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b32e800-d801-431e-bfc1-616aceb3a82b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773634667)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378434667)\\/\",\"ClientRequestId\":\"9a44968b-a05d-42df-88fd-149eeba30890-2021-04-18 20:20:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7TvxFksY9nwZsqPXXddB5u0JPvYAcRU1yOlQJsaRdWw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11902" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ae034b44-1165-461e-a7c5-35542733b3e5" + ], + "x-ms-client-request-id": [ + "9b32e800-d801-431e-bfc1-616aceb3a82b" + ], + "x-ms-correlation-request-id": [ + "ae034b44-1165-461e-a7c5-35542733b3e5" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202034Z:ae034b44-1165-461e-a7c5-35542733b3e5" + ], + "Date": [ + "Sun, 18 Apr 2021 20:20:34 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "84309f04-3cf8-4dc2-955a-19afb9dafad9" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773645981)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378445981)\\/\",\"ClientRequestId\":\"ec7aab1d-0afa-4080-a00e-ea29c1a1d325-2021-04-18 20:20:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iB3qEmJP3wMMzO1b0YkceSIXS6Z0KqDz/fFOXtS6G5I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11901" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "28a97647-42c1-4daa-b70a-9bb9840f142a" + ], + "x-ms-client-request-id": [ + "84309f04-3cf8-4dc2-955a-19afb9dafad9" + ], + "x-ms-correlation-request-id": [ + "28a97647-42c1-4daa-b70a-9bb9840f142a" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202046Z:28a97647-42c1-4daa-b70a-9bb9840f142a" + ], + "Date": [ + "Sun, 18 Apr 2021 20:20:45 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf706ec0-f3fd-4060-a324-8451032d3271" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773656599)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378456599)\\/\",\"ClientRequestId\":\"c22011e3-4184-411d-9dee-193c57f16c4f-2021-04-18 20:20:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"crZSZByotJFOklp3IUZ08tsx+l3v3ReurPYN5lDWK8Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11900" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ace6b9b8-5bf5-42bf-b6fc-48649acdb5a8" + ], + "x-ms-client-request-id": [ + "bf706ec0-f3fd-4060-a324-8451032d3271" + ], + "x-ms-correlation-request-id": [ + "ace6b9b8-5bf5-42bf-b6fc-48649acdb5a8" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202056Z:ace6b9b8-5bf5-42bf-b6fc-48649acdb5a8" + ], + "Date": [ + "Sun, 18 Apr 2021 20:20:56 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29743b84-f300-4380-bb06-a548c826564b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773666992)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378466992)\\/\",\"ClientRequestId\":\"20976643-fa6d-4d9c-9919-33fcb11631b7-2021-04-18 20:21:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4PRnK2R8v4QRp3M4KsrJuk2xq8oGuDseB3DHnXtdV9U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11899" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3cf0fab9-7498-4791-8f79-84a93d0f9aeb" + ], + "x-ms-client-request-id": [ + "29743b84-f300-4380-bb06-a548c826564b" + ], + "x-ms-correlation-request-id": [ + "3cf0fab9-7498-4791-8f79-84a93d0f9aeb" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202107Z:3cf0fab9-7498-4791-8f79-84a93d0f9aeb" + ], + "Date": [ + "Sun, 18 Apr 2021 20:21:06 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a0067db-6c1c-4503-834a-9018ff4c954b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773677373)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378477373)\\/\",\"ClientRequestId\":\"0768cc01-2228-4983-af8c-e249f250dd10-2021-04-18 20:21:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"A0kOKuFm/ViDF7mvpB+fbnMxSyNOt/nCvGJTQN3drEQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11898" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7072ccc5-08a9-488d-8d78-1bfa2fc10990" + ], + "x-ms-client-request-id": [ + "3a0067db-6c1c-4503-834a-9018ff4c954b" + ], + "x-ms-correlation-request-id": [ + "7072ccc5-08a9-488d-8d78-1bfa2fc10990" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202117Z:7072ccc5-08a9-488d-8d78-1bfa2fc10990" + ], + "Date": [ + "Sun, 18 Apr 2021 20:21:17 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71ae2939-8ce8-4f98-9ce3-6c85651347be" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773687746)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378487746)\\/\",\"ClientRequestId\":\"9aa71adf-7e34-40fa-b040-6771ea09ec82-2021-04-18 20:21:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5ujiapgGJ/0Hku3n8sfrHvp6ceRUTPRXeiTEob7RcE8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11897" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f0be316a-47f3-4b23-8ba7-784084e10480" + ], + "x-ms-client-request-id": [ + "71ae2939-8ce8-4f98-9ce3-6c85651347be" + ], + "x-ms-correlation-request-id": [ + "f0be316a-47f3-4b23-8ba7-784084e10480" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202127Z:f0be316a-47f3-4b23-8ba7-784084e10480" + ], + "Date": [ + "Sun, 18 Apr 2021 20:21:27 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d784c086-ec54-4c4b-b9bf-fc8a64026d05" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773698132)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378498132)\\/\",\"ClientRequestId\":\"2f30ab47-8376-4fb0-94c1-967bad0adb78-2021-04-18 20:21:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"B2wlKTwUz+L2Hc5pm9ZOWLGPDHYCVzIN0cZ0Bn8SSro=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11896" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e53b9c9b-3c2c-4531-b4cc-c920fc98d44b" + ], + "x-ms-client-request-id": [ + "d784c086-ec54-4c4b-b9bf-fc8a64026d05" + ], + "x-ms-correlation-request-id": [ + "e53b9c9b-3c2c-4531-b4cc-c920fc98d44b" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202138Z:e53b9c9b-3c2c-4531-b4cc-c920fc98d44b" + ], + "Date": [ + "Sun, 18 Apr 2021 20:21:38 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2728cfde-f170-488a-b22a-a3af937083b4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773708501)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378508501)\\/\",\"ClientRequestId\":\"1280aa15-ab9d-47a6-bbcf-cfbd29891cbf-2021-04-18 20:21:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gQYVU3Szc8XldQo07/wWAKrMyKPlFVHBJb67Axzhvto=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11895" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6e00d334-e64d-4cf4-943c-57ebe7eaffd4" + ], + "x-ms-client-request-id": [ + "2728cfde-f170-488a-b22a-a3af937083b4" + ], + "x-ms-correlation-request-id": [ + "6e00d334-e64d-4cf4-943c-57ebe7eaffd4" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202148Z:6e00d334-e64d-4cf4-943c-57ebe7eaffd4" + ], + "Date": [ + "Sun, 18 Apr 2021 20:21:48 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "32833134-2972-4cfb-a7fb-48747a8e022b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773718869)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378518869)\\/\",\"ClientRequestId\":\"e3006045-77a1-4b98-ac9d-e9f3cf0d799a-2021-04-18 20:21:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"95u9E2DBTmlc5ePDPEQ4Fpn0xGc/LdixAel3OArXf+8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11894" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "dc9ea585-5968-43b6-8a07-9d643e4bd89a" + ], + "x-ms-client-request-id": [ + "32833134-2972-4cfb-a7fb-48747a8e022b" + ], + "x-ms-correlation-request-id": [ + "dc9ea585-5968-43b6-8a07-9d643e4bd89a" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202159Z:dc9ea585-5968-43b6-8a07-9d643e4bd89a" + ], + "Date": [ + "Sun, 18 Apr 2021 20:21:58 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "26d2642a-471e-42a6-9243-8c9332b01581" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773729259)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378529259)\\/\",\"ClientRequestId\":\"78387241-e107-4b00-b84a-e18f546cbd3c-2021-04-18 20:22:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GVfMTM2eMuTSg1Z2VZ4k7reP8zHGjTSayHybAee/fBk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11893" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "71f52c1c-e69d-4e33-8273-60286d3b600b" + ], + "x-ms-client-request-id": [ + "26d2642a-471e-42a6-9243-8c9332b01581" + ], + "x-ms-correlation-request-id": [ + "71f52c1c-e69d-4e33-8273-60286d3b600b" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202209Z:71f52c1c-e69d-4e33-8273-60286d3b600b" + ], + "Date": [ + "Sun, 18 Apr 2021 20:22:09 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f1822a5b-001b-4cd2-9a24-c9227e6bf2b0" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773739628)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378539628)\\/\",\"ClientRequestId\":\"7bc9e9dc-ce3f-46b8-b1d3-c3df056f1c1a-2021-04-18 20:22:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gH11MAimgPOTmQZUwLWkzTxm8oWzh/ZRToTRtudbHds=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11892" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c61981e0-f995-4277-83c2-89af58833352" + ], + "x-ms-client-request-id": [ + "f1822a5b-001b-4cd2-9a24-c9227e6bf2b0" + ], + "x-ms-correlation-request-id": [ + "c61981e0-f995-4277-83c2-89af58833352" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202219Z:c61981e0-f995-4277-83c2-89af58833352" + ], + "Date": [ + "Sun, 18 Apr 2021 20:22:19 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1baaa4c-a740-442b-a4bb-af7fbdcd4f8a" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773749997)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378549997)\\/\",\"ClientRequestId\":\"fbe3caf7-78a5-48f5-9ad5-99677dba829d-2021-04-18 20:22:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sJrEm+qY7/69610v1xiC3n+JRVXtP3I24ET4KXEpn2o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11891" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a2f3ff89-21da-4318-a861-e5733867ed49" + ], + "x-ms-client-request-id": [ + "c1baaa4c-a740-442b-a4bb-af7fbdcd4f8a" + ], + "x-ms-correlation-request-id": [ + "a2f3ff89-21da-4318-a861-e5733867ed49" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202230Z:a2f3ff89-21da-4318-a861-e5733867ed49" + ], + "Date": [ + "Sun, 18 Apr 2021 20:22:29 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c5e9eba-e314-4eee-8c47-ad704e39333c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773760392)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378560392)\\/\",\"ClientRequestId\":\"73b9fb64-d37e-4db0-a73f-3ab3a578454f-2021-04-18 20:22:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3JdUjkp8ABl20XJILQesLPzCOEp8ODmx11BEpbPYZjo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11890" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a79a176f-8ad0-42c5-ae57-65101aee4a86" + ], + "x-ms-client-request-id": [ + "9c5e9eba-e314-4eee-8c47-ad704e39333c" + ], + "x-ms-correlation-request-id": [ + "a79a176f-8ad0-42c5-ae57-65101aee4a86" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202240Z:a79a176f-8ad0-42c5-ae57-65101aee4a86" + ], + "Date": [ + "Sun, 18 Apr 2021 20:22:40 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5fcf2ff1-5e79-42de-b2fe-463a5040a470" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773770779)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378570779)\\/\",\"ClientRequestId\":\"1e0cc5e6-8708-4cd1-bda2-ac654929ae61-2021-04-18 20:22:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OlH4NkVSxCtxTI/xUEjlFQsYmqtsYSoLVg1yZjcNDLw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11889" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bab7d11b-6c34-44b5-9594-2e29047f5441" + ], + "x-ms-client-request-id": [ + "5fcf2ff1-5e79-42de-b2fe-463a5040a470" + ], + "x-ms-correlation-request-id": [ + "bab7d11b-6c34-44b5-9594-2e29047f5441" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202250Z:bab7d11b-6c34-44b5-9594-2e29047f5441" + ], + "Date": [ + "Sun, 18 Apr 2021 20:22:50 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6642a7bc-afbb-448b-a874-7e5fb0de11ff" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773781157)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378581157)\\/\",\"ClientRequestId\":\"77306832-5df3-4b5b-84e0-569f8c0ea3c4-2021-04-18 20:23:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DU4OcIap0wIfZR0qhCGBf02pBeA1njHyW1PdPNc35ec=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f10a798f-66c0-459e-95d3-48cf6e3acf24" + ], + "x-ms-client-request-id": [ + "6642a7bc-afbb-448b-a874-7e5fb0de11ff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11888" + ], + "x-ms-correlation-request-id": [ + "f10a798f-66c0-459e-95d3-48cf6e3acf24" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202301Z:f10a798f-66c0-459e-95d3-48cf6e3acf24" + ], + "Date": [ + "Sun, 18 Apr 2021 20:23:01 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2411dd1-d4bd-4572-8410-f13445b940dd" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773791530)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378591530)\\/\",\"ClientRequestId\":\"e8664170-5f50-4410-aa96-b7733884b4b3-2021-04-18 20:23:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rCGq7Jf2FomKt1W3escOURpiualbGiKXt4SX+2z+A/4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11887" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "beac14b7-050c-4654-a4db-b1d1a092e3e4" + ], + "x-ms-client-request-id": [ + "f2411dd1-d4bd-4572-8410-f13445b940dd" + ], + "x-ms-correlation-request-id": [ + "beac14b7-050c-4654-a4db-b1d1a092e3e4" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202311Z:beac14b7-050c-4654-a4db-b1d1a092e3e4" + ], + "Date": [ + "Sun, 18 Apr 2021 20:23:11 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ba10f812-4f0f-422f-9b09-1abb81454423" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773802033)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378602033)\\/\",\"ClientRequestId\":\"07cfc35c-cb1e-48a2-8110-0b51462dc812-2021-04-18 20:23:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3SssUTvH/gk/hcJHfqrHf6hgW6LdWSvWgkwPfcTLh4Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11886" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "248f4eb4-2f20-44d0-86c7-08a9edba654a" + ], + "x-ms-client-request-id": [ + "ba10f812-4f0f-422f-9b09-1abb81454423" + ], + "x-ms-correlation-request-id": [ + "248f4eb4-2f20-44d0-86c7-08a9edba654a" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202322Z:248f4eb4-2f20-44d0-86c7-08a9edba654a" + ], + "Date": [ + "Sun, 18 Apr 2021 20:23:22 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f79777fd-ee1e-491e-9408-6173069c2e5b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773812386)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378612386)\\/\",\"ClientRequestId\":\"d6ef7c8c-8cad-42b5-9d08-19aa1a8e5e92-2021-04-18 20:23:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6HYkTS99ubEnTtLgh2nJZKHmjyvrSM6zgfNYb2YwZ0A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11885" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ff80dab2-adb1-4e6b-b5ca-b1c4ead557f0" + ], + "x-ms-client-request-id": [ + "f79777fd-ee1e-491e-9408-6173069c2e5b" + ], + "x-ms-correlation-request-id": [ + "ff80dab2-adb1-4e6b-b5ca-b1c4ead557f0" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202332Z:ff80dab2-adb1-4e6b-b5ca-b1c4ead557f0" + ], + "Date": [ + "Sun, 18 Apr 2021 20:23:32 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6277176c-1760-4009-9b6f-bb110540d827" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773822748)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378622748)\\/\",\"ClientRequestId\":\"2d407184-3347-4298-9dbc-0a0c394bbecf-2021-04-18 20:23:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"40WfjCVFNj6lQ+HpY4k55EKrp40nDN6+3ezO8HjBsh4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11884" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "872057fa-bf19-4281-bbd7-68c26852a7f9" + ], + "x-ms-client-request-id": [ + "6277176c-1760-4009-9b6f-bb110540d827" + ], + "x-ms-correlation-request-id": [ + "872057fa-bf19-4281-bbd7-68c26852a7f9" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202342Z:872057fa-bf19-4281-bbd7-68c26852a7f9" + ], + "Date": [ + "Sun, 18 Apr 2021 20:23:42 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45ba53c5-43da-4047-aa4d-c1f2ec4ae9c3" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773833135)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378633135)\\/\",\"ClientRequestId\":\"30df0df9-8001-4eaf-9bee-b2dcc7dbb658-2021-04-18 20:23:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wZdQcOR8c7ClmY2o93KBfpVnJOv7JGf2t6AG86GXH5Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11883" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2aea8af4-a716-4648-8ea3-2f7aa4cdeb1c" + ], + "x-ms-client-request-id": [ + "45ba53c5-43da-4047-aa4d-c1f2ec4ae9c3" + ], + "x-ms-correlation-request-id": [ + "2aea8af4-a716-4648-8ea3-2f7aa4cdeb1c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202353Z:2aea8af4-a716-4648-8ea3-2f7aa4cdeb1c" + ], + "Date": [ + "Sun, 18 Apr 2021 20:23:53 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e4d02c5-0f5f-4b99-8368-7615eff265dd" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773843521)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378643521)\\/\",\"ClientRequestId\":\"54371ec8-7366-4b85-ae89-7c489aa7ac25-2021-04-18 20:24:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+UUNXTmbmsMBtXPy57cT5RJ68A4S3iQsUN0jNGcwk3s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11882" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b02036a6-903b-454f-9151-ddc2255282ba" + ], + "x-ms-client-request-id": [ + "3e4d02c5-0f5f-4b99-8368-7615eff265dd" + ], + "x-ms-correlation-request-id": [ + "b02036a6-903b-454f-9151-ddc2255282ba" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202403Z:b02036a6-903b-454f-9151-ddc2255282ba" + ], + "Date": [ + "Sun, 18 Apr 2021 20:24:03 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a1ad4a4-0c52-4726-aba3-ce01cce69248" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773853902)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378653902)\\/\",\"ClientRequestId\":\"fb4e6fdd-495c-4a53-ae14-6d9d7010e3c0-2021-04-18 20:24:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QsqgfW7VR7UcAsV6rZAYGeuGbIdaiRZ1spnb6Paz614=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11881" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ee7810c2-ce75-42ec-b045-ba41a053636d" + ], + "x-ms-client-request-id": [ + "1a1ad4a4-0c52-4726-aba3-ce01cce69248" + ], + "x-ms-correlation-request-id": [ + "ee7810c2-ce75-42ec-b045-ba41a053636d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202414Z:ee7810c2-ce75-42ec-b045-ba41a053636d" + ], + "Date": [ + "Sun, 18 Apr 2021 20:24:13 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "beda10ba-fd7c-4832-846f-8cda5cca1be8" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773864255)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378664255)\\/\",\"ClientRequestId\":\"c2453725-a643-45e3-bd41-132db6a77ebe-2021-04-18 20:24:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"I8vLM5WCuvmEICgP6zMygcTOIUYknmrgY1VnaNjzdFY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11880" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8eb059f3-acf6-47ef-a25c-d28ac03a55a2" + ], + "x-ms-client-request-id": [ + "beda10ba-fd7c-4832-846f-8cda5cca1be8" + ], + "x-ms-correlation-request-id": [ + "8eb059f3-acf6-47ef-a25c-d28ac03a55a2" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202424Z:8eb059f3-acf6-47ef-a25c-d28ac03a55a2" + ], + "Date": [ + "Sun, 18 Apr 2021 20:24:24 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "398964be-dc6c-4f50-9138-085896edcd51" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773874612)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378674612)\\/\",\"ClientRequestId\":\"9fead132-e089-4c55-b76c-3096c72b4690-2021-04-18 20:24:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7Xur1LLrRxsFXVtKlpht7A9AnBI7a1dTpOiJyvsLRVo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11879" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1804f6f9-a953-491e-a677-ab765da02092" + ], + "x-ms-client-request-id": [ + "398964be-dc6c-4f50-9138-085896edcd51" + ], + "x-ms-correlation-request-id": [ + "1804f6f9-a953-491e-a677-ab765da02092" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202434Z:1804f6f9-a953-491e-a677-ab765da02092" + ], + "Date": [ + "Sun, 18 Apr 2021 20:24:34 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "839e9c07-7dc2-4566-8c9e-9be26c0ac966" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773884991)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378684991)\\/\",\"ClientRequestId\":\"07830b48-d8b1-4b88-8bee-2b2e9b4e754f-2021-04-18 20:24:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mcWUyhkO7dNklHaLCqAPstCX2r7DI9LjABS8pOMWxYI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11878" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "41e93947-0d10-4a49-bb0a-3eeaac6014c3" + ], + "x-ms-client-request-id": [ + "839e9c07-7dc2-4566-8c9e-9be26c0ac966" + ], + "x-ms-correlation-request-id": [ + "41e93947-0d10-4a49-bb0a-3eeaac6014c3" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202445Z:41e93947-0d10-4a49-bb0a-3eeaac6014c3" + ], + "Date": [ + "Sun, 18 Apr 2021 20:24:45 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d5a810e6-60d4-4bd5-b452-2c613e2e5f5d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773895369)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378695369)\\/\",\"ClientRequestId\":\"20ad1536-9fff-4c3e-a230-359ece09890e-2021-04-18 20:24:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uo48CwURfIeQzBbi82NrsPnmPdJAIEMCYsv3PMOuEkU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11877" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d4e999c5-bfb1-4b88-a7b0-d58611bfb666" + ], + "x-ms-client-request-id": [ + "d5a810e6-60d4-4bd5-b452-2c613e2e5f5d" + ], + "x-ms-correlation-request-id": [ + "d4e999c5-bfb1-4b88-a7b0-d58611bfb666" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202455Z:d4e999c5-bfb1-4b88-a7b0-d58611bfb666" + ], + "Date": [ + "Sun, 18 Apr 2021 20:24:55 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d21918cd-21fd-490d-9eb3-c23092929810" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773905744)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378705744)\\/\",\"ClientRequestId\":\"25961760-c412-43af-a4d0-82f2b9d286f1-2021-04-18 20:25:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rxjUanKXjg21zG0/dq1r1hrAQSI071tp5woMZZ+4e5Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11876" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d3602fbb-ff0e-4acf-a10d-e8255af409a6" + ], + "x-ms-client-request-id": [ + "d21918cd-21fd-490d-9eb3-c23092929810" + ], + "x-ms-correlation-request-id": [ + "d3602fbb-ff0e-4acf-a10d-e8255af409a6" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202505Z:d3602fbb-ff0e-4acf-a10d-e8255af409a6" + ], + "Date": [ + "Sun, 18 Apr 2021 20:25:05 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "128763fe-b215-4e59-a46f-b35326522324" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773916094)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378716094)\\/\",\"ClientRequestId\":\"e6e96300-8227-4035-8d32-4dfa2aac3f79-2021-04-18 20:25:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hdCmXZZs88jp94W8uNZMCsyK6syi7IV5SxGVjfrh7Xg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11875" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d9de233d-0956-4c33-a08c-f6dfb70f5404" + ], + "x-ms-client-request-id": [ + "128763fe-b215-4e59-a46f-b35326522324" + ], + "x-ms-correlation-request-id": [ + "d9de233d-0956-4c33-a08c-f6dfb70f5404" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202516Z:d9de233d-0956-4c33-a08c-f6dfb70f5404" + ], + "Date": [ + "Sun, 18 Apr 2021 20:25:16 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e8c627a-17d2-424c-97e1-49325ae56614" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773926447)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378726447)\\/\",\"ClientRequestId\":\"18e13fdd-e2f5-4dcc-8e46-2de37b2192eb-2021-04-18 20:25:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bucvth1Sgb23VsJyRDKHgO8v3MVi5rblqAKwQ2A4pJE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11874" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "942636ae-d87e-4d27-ba81-97813574901a" + ], + "x-ms-client-request-id": [ + "7e8c627a-17d2-424c-97e1-49325ae56614" + ], + "x-ms-correlation-request-id": [ + "942636ae-d87e-4d27-ba81-97813574901a" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202526Z:942636ae-d87e-4d27-ba81-97813574901a" + ], + "Date": [ + "Sun, 18 Apr 2021 20:25:26 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f54cff60-8bb3-4084-86ec-c9ea88fe4636" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773936801)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378736801)\\/\",\"ClientRequestId\":\"cf548ad1-6c15-4ea3-bb04-e8f8be1beba9-2021-04-18 20:25:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RiLY2OgEF8tUOaVjtLyc7zvJ1teLHG0NcKYDS2kiiZg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11873" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e86e88e2-e4e8-41d4-890c-4d8903795ec0" + ], + "x-ms-client-request-id": [ + "f54cff60-8bb3-4084-86ec-c9ea88fe4636" + ], + "x-ms-correlation-request-id": [ + "e86e88e2-e4e8-41d4-890c-4d8903795ec0" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202536Z:e86e88e2-e4e8-41d4-890c-4d8903795ec0" + ], + "Date": [ + "Sun, 18 Apr 2021 20:25:36 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4882dc88-5b82-42aa-a10f-98e856edb84b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773947155)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378747155)\\/\",\"ClientRequestId\":\"aa9ef3da-d778-451a-95f4-c8141246e710-2021-04-18 20:25:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gLHX7MwYRNrGIfd9tv4F0V0igqeug4Ajjn0SXGOdBXQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11872" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3226d892-2ef1-4d94-91f5-bb447e36045b" + ], + "x-ms-client-request-id": [ + "4882dc88-5b82-42aa-a10f-98e856edb84b" + ], + "x-ms-correlation-request-id": [ + "3226d892-2ef1-4d94-91f5-bb447e36045b" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202547Z:3226d892-2ef1-4d94-91f5-bb447e36045b" + ], + "Date": [ + "Sun, 18 Apr 2021 20:25:47 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f893076-37af-47a1-9df3-26dbf1dd5194" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773957525)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378757525)\\/\",\"ClientRequestId\":\"cc9208c4-c425-47a0-9a12-4467078a9cb4-2021-04-18 20:25:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5nbVD4jGMRqlU2zVVL6BUZyZrSoBeKhMFlLL1+mb0JY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11871" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fd479e3c-b6f4-4f17-aaf1-95989c9ae20c" + ], + "x-ms-client-request-id": [ + "7f893076-37af-47a1-9df3-26dbf1dd5194" + ], + "x-ms-correlation-request-id": [ + "fd479e3c-b6f4-4f17-aaf1-95989c9ae20c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202557Z:fd479e3c-b6f4-4f17-aaf1-95989c9ae20c" + ], + "Date": [ + "Sun, 18 Apr 2021 20:25:57 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "921226a2-5599-4d3f-889c-20317dc262df" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773967944)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378767944)\\/\",\"ClientRequestId\":\"0839d7e9-99a5-4e6c-87a4-4a9785d17e64-2021-04-18 20:26:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DFee6SvaQF2ZiEwZByRcjzBqi0Nrt5UxFdrWNb+QLkQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11870" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c9fd8187-93fd-47de-bbd2-5fe646992ed8" + ], + "x-ms-client-request-id": [ + "921226a2-5599-4d3f-889c-20317dc262df" + ], + "x-ms-correlation-request-id": [ + "c9fd8187-93fd-47de-bbd2-5fe646992ed8" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202608Z:c9fd8187-93fd-47de-bbd2-5fe646992ed8" + ], + "Date": [ + "Sun, 18 Apr 2021 20:26:08 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d4cb646f-7e44-4549-9a88-841df4ed352f" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773978338)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378778338)\\/\",\"ClientRequestId\":\"3340b177-8a94-458e-b99f-551e51458ba9-2021-04-18 20:26:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ukphbQvELuEgqHbuxEFdfpWTDYg9lUDlC8sb9U5wp9U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11869" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "576c45b7-d0e9-43b4-8d50-4fdd1e72103e" + ], + "x-ms-client-request-id": [ + "d4cb646f-7e44-4549-9a88-841df4ed352f" + ], + "x-ms-correlation-request-id": [ + "576c45b7-d0e9-43b4-8d50-4fdd1e72103e" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202618Z:576c45b7-d0e9-43b4-8d50-4fdd1e72103e" + ], + "Date": [ + "Sun, 18 Apr 2021 20:26:17 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1cac3bfd-bb46-4f30-975d-b84831d61845" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773988705)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378788705)\\/\",\"ClientRequestId\":\"f53547a5-cade-47de-9e8d-34abbf77e155-2021-04-18 20:26:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"m/x4Tb+oCqPjOoES3Hl1Xl6ysY6i/4yZ3OlNZu30Q+8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11868" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "079f96da-598c-4873-97ee-7d5ae1f6094e" + ], + "x-ms-client-request-id": [ + "1cac3bfd-bb46-4f30-975d-b84831d61845" + ], + "x-ms-correlation-request-id": [ + "079f96da-598c-4873-97ee-7d5ae1f6094e" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202628Z:079f96da-598c-4873-97ee-7d5ae1f6094e" + ], + "Date": [ + "Sun, 18 Apr 2021 20:26:28 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68801ae8-afbe-42eb-b680-4e3f58b4db7a" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618773999092)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378799092)\\/\",\"ClientRequestId\":\"381002b9-6da6-4a80-8798-8db2fd3573a7-2021-04-18 20:26:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AQY1/zn/xlN5pqn7B1p3/SNRD7qQfi0TPgu5YLH5BIY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11867" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4ce09f2e-a58d-4a6c-9902-642a8c87f873" + ], + "x-ms-client-request-id": [ + "68801ae8-afbe-42eb-b680-4e3f58b4db7a" + ], + "x-ms-correlation-request-id": [ + "4ce09f2e-a58d-4a6c-9902-642a8c87f873" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202639Z:4ce09f2e-a58d-4a6c-9902-642a8c87f873" + ], + "Date": [ + "Sun, 18 Apr 2021 20:26:39 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "df89febe-9d19-4d0a-b317-3284200573b8" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774009436)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378809436)\\/\",\"ClientRequestId\":\"632a2fa5-b29a-4ef4-8884-9bcbdf43014e-2021-04-18 20:26:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FwfRVuOBxTRlgaw7NwBovxX2CXLx8AWRiMs3y86EIG0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11866" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2bf616a0-7e2b-4633-9980-e02c15d62429" + ], + "x-ms-client-request-id": [ + "df89febe-9d19-4d0a-b317-3284200573b8" + ], + "x-ms-correlation-request-id": [ + "2bf616a0-7e2b-4633-9980-e02c15d62429" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202649Z:2bf616a0-7e2b-4633-9980-e02c15d62429" + ], + "Date": [ + "Sun, 18 Apr 2021 20:26:49 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "278ce8e2-c171-4b77-bd08-2ecba4b3936a" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774019803)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378819803)\\/\",\"ClientRequestId\":\"f03a4889-bd78-497a-83f4-1bf6147d31ed-2021-04-18 20:26:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uvF522+c1goRfX84ZAJZIsouJgNsmKs2nWJ3tYYOymw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11865" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "caa19f6e-d192-41a9-8835-54af1a674543" + ], + "x-ms-client-request-id": [ + "278ce8e2-c171-4b77-bd08-2ecba4b3936a" + ], + "x-ms-correlation-request-id": [ + "caa19f6e-d192-41a9-8835-54af1a674543" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202700Z:caa19f6e-d192-41a9-8835-54af1a674543" + ], + "Date": [ + "Sun, 18 Apr 2021 20:26:59 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "24876471-4892-4b84-a71c-2c41b3547f77" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774030471)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378830471)\\/\",\"ClientRequestId\":\"61864247-6a30-405b-b93c-277ba147717c-2021-04-18 20:27:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"38VlfMA38bu0Ek7nYjCy2r3G8bdt+qyP2xSkviFRAfM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11864" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "609f1145-795d-4a29-9e77-23d2c183389a" + ], + "x-ms-client-request-id": [ + "24876471-4892-4b84-a71c-2c41b3547f77" + ], + "x-ms-correlation-request-id": [ + "609f1145-795d-4a29-9e77-23d2c183389a" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202710Z:609f1145-795d-4a29-9e77-23d2c183389a" + ], + "Date": [ + "Sun, 18 Apr 2021 20:27:10 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "998034ad-8673-4e32-bc34-bb2a6ee47c9f" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774040845)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378840845)\\/\",\"ClientRequestId\":\"d3a88ee0-8feb-42f8-b5c0-0ae03f4dd46b-2021-04-18 20:27:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KfjsAI68r06sZwrPsIXi5Ytpx/AGwmHsMz4q83+EeF4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c4af39cf-c8cc-453b-afbc-58fbe74eb4c7" + ], + "x-ms-client-request-id": [ + "998034ad-8673-4e32-bc34-bb2a6ee47c9f" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11863" + ], + "x-ms-correlation-request-id": [ + "c4af39cf-c8cc-453b-afbc-58fbe74eb4c7" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202721Z:c4af39cf-c8cc-453b-afbc-58fbe74eb4c7" + ], + "Date": [ + "Sun, 18 Apr 2021 20:27:21 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca99224b-89bd-4962-bcbe-e06b8c9f12d4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774051200)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378851200)\\/\",\"ClientRequestId\":\"facc9861-03d6-4054-b6bd-b3f63a2d4b2f-2021-04-18 20:27:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"97qBFgF+bcmjhgF3V9JLXOvrZVVvbNqyFymmXDsf7Zk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11862" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ae4f2447-ec22-4efd-bb5f-5f8d330c7e59" + ], + "x-ms-client-request-id": [ + "ca99224b-89bd-4962-bcbe-e06b8c9f12d4" + ], + "x-ms-correlation-request-id": [ + "ae4f2447-ec22-4efd-bb5f-5f8d330c7e59" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202731Z:ae4f2447-ec22-4efd-bb5f-5f8d330c7e59" + ], + "Date": [ + "Sun, 18 Apr 2021 20:27:30 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e99562a-cc58-457a-a4e5-caeb9d2d2b18" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774061741)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378861741)\\/\",\"ClientRequestId\":\"6c4d356d-2d23-4930-a722-615730f4dac8-2021-04-18 20:27:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dF3+kbJK/fm6sZPHoJVs7G3G3NtKmjoO9XftU5OT+5U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11861" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c6372d4a-7253-44fc-b510-d25fd7ab4ee6" + ], + "x-ms-client-request-id": [ + "2e99562a-cc58-457a-a4e5-caeb9d2d2b18" + ], + "x-ms-correlation-request-id": [ + "c6372d4a-7253-44fc-b510-d25fd7ab4ee6" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202741Z:c6372d4a-7253-44fc-b510-d25fd7ab4ee6" + ], + "Date": [ + "Sun, 18 Apr 2021 20:27:41 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6e1af93-11a4-4a01-9672-c194d93ac120" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774072114)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378872114)\\/\",\"ClientRequestId\":\"41b609e1-2276-441e-b2b3-4c0242f7af5b-2021-04-18 20:27:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"k0/B7xTYfGmi5dNifTBbOWPQsYgLmi4FDaeo0K3h9lc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11860" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c494a511-8018-4844-a5a8-fe26a91b792a" + ], + "x-ms-client-request-id": [ + "e6e1af93-11a4-4a01-9672-c194d93ac120" + ], + "x-ms-correlation-request-id": [ + "c494a511-8018-4844-a5a8-fe26a91b792a" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202752Z:c494a511-8018-4844-a5a8-fe26a91b792a" + ], + "Date": [ + "Sun, 18 Apr 2021 20:27:52 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d133483-e9fc-427e-ba81-10c9a79c4967" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774082496)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378882496)\\/\",\"ClientRequestId\":\"51460703-7b2c-4949-9dc3-a3a07618b209-2021-04-18 20:28:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jfavFxUC8qS9u0r+7tDtpFi04ydBwPAqELxqwmH9oto=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11859" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ff16b7e1-a9a9-4bd7-b6e9-ebb07dd1fa5f" + ], + "x-ms-client-request-id": [ + "7d133483-e9fc-427e-ba81-10c9a79c4967" + ], + "x-ms-correlation-request-id": [ + "ff16b7e1-a9a9-4bd7-b6e9-ebb07dd1fa5f" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202802Z:ff16b7e1-a9a9-4bd7-b6e9-ebb07dd1fa5f" + ], + "Date": [ + "Sun, 18 Apr 2021 20:28:01 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "536ab802-a435-4be5-95de-e00560a9b783" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774092883)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378892883)\\/\",\"ClientRequestId\":\"9f6d9f14-3ff8-4825-859b-cf92a30542a6-2021-04-18 20:28:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DzH1VJ1ZUE/2Rd9iV5jkIA0/lwPuzzq7/6hy4u9RTmg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11858" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "593b0a38-7824-4df9-82db-06be692b01cd" + ], + "x-ms-client-request-id": [ + "536ab802-a435-4be5-95de-e00560a9b783" + ], + "x-ms-correlation-request-id": [ + "593b0a38-7824-4df9-82db-06be692b01cd" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202813Z:593b0a38-7824-4df9-82db-06be692b01cd" + ], + "Date": [ + "Sun, 18 Apr 2021 20:28:12 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa8f0058-88a0-4bef-ae6f-16584ff7c6af" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774103269)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378903269)\\/\",\"ClientRequestId\":\"e470ed07-d75b-4ef3-9c1f-fe89641dd47b-2021-04-18 20:28:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LT0u56nvKXDgCkZry2SDuoDMyiVFoxPtMgzws2g/ROE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11857" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a521a552-0a99-4335-bce7-166869cdc878" + ], + "x-ms-client-request-id": [ + "aa8f0058-88a0-4bef-ae6f-16584ff7c6af" + ], + "x-ms-correlation-request-id": [ + "a521a552-0a99-4335-bce7-166869cdc878" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202823Z:a521a552-0a99-4335-bce7-166869cdc878" + ], + "Date": [ + "Sun, 18 Apr 2021 20:28:23 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8beac38-c87a-4b6f-aa4b-3723d5d8a329" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774113648)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378913648)\\/\",\"ClientRequestId\":\"1de7f175-df21-43b7-b5bd-d833791e05d3-2021-04-18 20:28:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"P26yqzdGX40o/GGlFkPqcOU7EDDaKr85979A9Cw1SpM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11856" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f24d47cf-eb79-4b56-aab2-6556ef32358d" + ], + "x-ms-client-request-id": [ + "d8beac38-c87a-4b6f-aa4b-3723d5d8a329" + ], + "x-ms-correlation-request-id": [ + "f24d47cf-eb79-4b56-aab2-6556ef32358d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202833Z:f24d47cf-eb79-4b56-aab2-6556ef32358d" + ], + "Date": [ + "Sun, 18 Apr 2021 20:28:32 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7363aff-43fb-4274-b3b2-b0fb43fca3fe" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774124024)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378924024)\\/\",\"ClientRequestId\":\"bf8cfafc-906f-4367-881c-e105cc6958ab-2021-04-18 20:28:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TR5ohyy7HLbRsFFIl2QtNHs98Y428IpCDkyaLiTuKJA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11855" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4cfdf166-ab6c-4a37-9f79-7cf49ac39cc5" + ], + "x-ms-client-request-id": [ + "b7363aff-43fb-4274-b3b2-b0fb43fca3fe" + ], + "x-ms-correlation-request-id": [ + "4cfdf166-ab6c-4a37-9f79-7cf49ac39cc5" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202844Z:4cfdf166-ab6c-4a37-9f79-7cf49ac39cc5" + ], + "Date": [ + "Sun, 18 Apr 2021 20:28:43 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3bb53d7d-9f0f-4793-993f-aabcca4dc6ae" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774134408)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378934408)\\/\",\"ClientRequestId\":\"375e20aa-b052-4e4f-9283-2e78c941438d-2021-04-18 20:28:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"n9dnglwuA3yMYSkC2D/UTvM8lF6K7lWZHN8zlM4b7bU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11854" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6db7dd7a-294d-4861-994e-c9e5921abf3f" + ], + "x-ms-client-request-id": [ + "3bb53d7d-9f0f-4793-993f-aabcca4dc6ae" + ], + "x-ms-correlation-request-id": [ + "6db7dd7a-294d-4861-994e-c9e5921abf3f" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202854Z:6db7dd7a-294d-4861-994e-c9e5921abf3f" + ], + "Date": [ + "Sun, 18 Apr 2021 20:28:54 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad7ea1d4-e283-49fd-ba5f-e2b7640de6c4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774144792)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378944792)\\/\",\"ClientRequestId\":\"cbb3b88e-0302-418d-ba33-971cb6106b1f-2021-04-18 20:29:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5YmwwycalUpe7UyNVQSfb4O9DZVLtjd0B1G46AgR+LI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11853" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7db1605d-9fa6-423c-a5cc-262de8c0e0b6" + ], + "x-ms-client-request-id": [ + "ad7ea1d4-e283-49fd-ba5f-e2b7640de6c4" + ], + "x-ms-correlation-request-id": [ + "7db1605d-9fa6-423c-a5cc-262de8c0e0b6" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202904Z:7db1605d-9fa6-423c-a5cc-262de8c0e0b6" + ], + "Date": [ + "Sun, 18 Apr 2021 20:29:04 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f7e15c3-7794-4ff2-8a16-84c8b576374a" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774155153)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378955153)\\/\",\"ClientRequestId\":\"5f179b29-5af8-4a60-ac3a-5c59dabdb6d6-2021-04-18 20:29:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2EG6RmbuURV9Hj/T4hYRYyvxmWeJce7lKky8BavGnoQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11852" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "acd7fa10-4ede-4153-86ab-cad75975497f" + ], + "x-ms-client-request-id": [ + "0f7e15c3-7794-4ff2-8a16-84c8b576374a" + ], + "x-ms-correlation-request-id": [ + "acd7fa10-4ede-4153-86ab-cad75975497f" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202915Z:acd7fa10-4ede-4153-86ab-cad75975497f" + ], + "Date": [ + "Sun, 18 Apr 2021 20:29:15 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe1c5f87-117c-4905-b743-0309f84927e4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774165538)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378965538)\\/\",\"ClientRequestId\":\"ae180925-0cc8-4093-b144-dc0ee2199784-2021-04-18 20:29:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iHwE4IXUKFYgDx8Yzqp/fC5/YIPwHjWjDnUUVuLkfzE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11851" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2cf70bc7-76ea-483e-a269-3b06ff483a36" + ], + "x-ms-client-request-id": [ + "fe1c5f87-117c-4905-b743-0309f84927e4" + ], + "x-ms-correlation-request-id": [ + "2cf70bc7-76ea-483e-a269-3b06ff483a36" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202925Z:2cf70bc7-76ea-483e-a269-3b06ff483a36" + ], + "Date": [ + "Sun, 18 Apr 2021 20:29:25 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2e39e1df-2326-4624-bcf6-b53731ed58cb" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774175913)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378975913)\\/\",\"ClientRequestId\":\"1ad3197d-f9ec-4af9-b62e-3d62175b3a57-2021-04-18 20:29:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OmJjR9idkqn7M1Nd94MMnVnjntnzlGzl8sMmeXOLpdU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11850" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6813950e-f45a-46c4-b8e0-7652ebe3a38c" + ], + "x-ms-client-request-id": [ + "2e39e1df-2326-4624-bcf6-b53731ed58cb" + ], + "x-ms-correlation-request-id": [ + "6813950e-f45a-46c4-b8e0-7652ebe3a38c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202936Z:6813950e-f45a-46c4-b8e0-7652ebe3a38c" + ], + "Date": [ + "Sun, 18 Apr 2021 20:29:35 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa8069e8-5ffe-4c7e-82a8-af2080757882" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774187408)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378987408)\\/\",\"ClientRequestId\":\"65206732-42b2-4336-afef-b389331d4251-2021-04-18 20:29:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZGQch4oPA5kaYhoWpHn5qJ9CKy/6ab9mrnB6qjqwV70=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11849" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6305c6b5-7c8c-4abc-8bf8-4433cdb8f3f5" + ], + "x-ms-client-request-id": [ + "aa8069e8-5ffe-4c7e-82a8-af2080757882" + ], + "x-ms-correlation-request-id": [ + "6305c6b5-7c8c-4abc-8bf8-4433cdb8f3f5" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202947Z:6305c6b5-7c8c-4abc-8bf8-4433cdb8f3f5" + ], + "Date": [ + "Sun, 18 Apr 2021 20:29:46 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6612e97d-29bf-458e-ab7a-96616e64c2b5" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774197792)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619378997792)\\/\",\"ClientRequestId\":\"25a4340f-8cb7-4f08-b4a8-bd75f2a4163f-2021-04-18 20:29:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dqS8qdLjYkjp+j70YHFvzELeMqglC3NEfkbwJ6yC7UY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11848" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "dfff3982-341b-4247-92f7-4472425374bb" + ], + "x-ms-client-request-id": [ + "6612e97d-29bf-458e-ab7a-96616e64c2b5" + ], + "x-ms-correlation-request-id": [ + "dfff3982-341b-4247-92f7-4472425374bb" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T202957Z:dfff3982-341b-4247-92f7-4472425374bb" + ], + "Date": [ + "Sun, 18 Apr 2021 20:29:57 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1af33dcc-7659-45dd-acc3-5484ce17c807" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774208166)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379008166)\\/\",\"ClientRequestId\":\"7fa9c94c-1576-441e-9b26-c9db41c1b14d-2021-04-18 20:30:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZHkITr3C8hSt5vhBhnKXei09ptscVtbHba/KeX27u3g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11847" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6f1e3bce-e8d0-4d02-8174-979e4d027075" + ], + "x-ms-client-request-id": [ + "1af33dcc-7659-45dd-acc3-5484ce17c807" + ], + "x-ms-correlation-request-id": [ + "6f1e3bce-e8d0-4d02-8174-979e4d027075" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203008Z:6f1e3bce-e8d0-4d02-8174-979e4d027075" + ], + "Date": [ + "Sun, 18 Apr 2021 20:30:08 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "011e4d5e-f0a2-466f-a846-6f3155fdd62c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774218544)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379018544)\\/\",\"ClientRequestId\":\"6df02c70-7ee0-46d9-96ba-bdc4241af03d-2021-04-18 20:30:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+DN1Mj8o0/RsxxImlhnWmRc1sHNhG0PdfIUe/7jzFoY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11846" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1badcb7c-4274-41ac-8ea5-ad55d4004627" + ], + "x-ms-client-request-id": [ + "011e4d5e-f0a2-466f-a846-6f3155fdd62c" + ], + "x-ms-correlation-request-id": [ + "1badcb7c-4274-41ac-8ea5-ad55d4004627" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203018Z:1badcb7c-4274-41ac-8ea5-ad55d4004627" + ], + "Date": [ + "Sun, 18 Apr 2021 20:30:18 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6282fd7-19c0-4def-8a89-7c0fa74b9c54" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774228948)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379028948)\\/\",\"ClientRequestId\":\"0f904518-a6f6-43a5-9c6c-e510a29c6c0d-2021-04-18 20:30:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"85WOxaFZTbyKQeqe9FJpuU+VSN5XGN0p7ZPhH3H2+W8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11845" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b027d22d-c870-4cba-b8c4-fa854bbc3104" + ], + "x-ms-client-request-id": [ + "e6282fd7-19c0-4def-8a89-7c0fa74b9c54" + ], + "x-ms-correlation-request-id": [ + "b027d22d-c870-4cba-b8c4-fa854bbc3104" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203029Z:b027d22d-c870-4cba-b8c4-fa854bbc3104" + ], + "Date": [ + "Sun, 18 Apr 2021 20:30:28 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "421b5497-cff0-40d4-ba18-0799ccccd1e7" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774239336)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379039336)\\/\",\"ClientRequestId\":\"1e58f57a-39bc-4f47-9f94-8ca4430ace44-2021-04-18 20:30:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TURZfe8qy+akGomzDqvB05purtAabChhGvmWBUtlFGY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11844" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0fab7697-7bb9-4aec-89b2-d5dcd3a62de3" + ], + "x-ms-client-request-id": [ + "421b5497-cff0-40d4-ba18-0799ccccd1e7" + ], + "x-ms-correlation-request-id": [ + "0fab7697-7bb9-4aec-89b2-d5dcd3a62de3" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203039Z:0fab7697-7bb9-4aec-89b2-d5dcd3a62de3" + ], + "Date": [ + "Sun, 18 Apr 2021 20:30:39 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "403c2de1-fcee-49b6-8b54-624e52dfc8ab" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774249718)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379049718)\\/\",\"ClientRequestId\":\"8b3326d3-a9f9-48f5-8365-879723a19d06-2021-04-18 20:30:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3Gbfd+EbZiFz6uRq7ElJxWZxCu8o/6m2Zrm6mfN4mEM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11843" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e40b2cc5-d2b1-4109-b5cf-1c6ad3119923" + ], + "x-ms-client-request-id": [ + "403c2de1-fcee-49b6-8b54-624e52dfc8ab" + ], + "x-ms-correlation-request-id": [ + "e40b2cc5-d2b1-4109-b5cf-1c6ad3119923" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203049Z:e40b2cc5-d2b1-4109-b5cf-1c6ad3119923" + ], + "Date": [ + "Sun, 18 Apr 2021 20:30:49 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd8fdf4c-0c2d-4305-8673-27efca677d79" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774260117)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379060117)\\/\",\"ClientRequestId\":\"ed620459-d9ae-4628-8827-53d6a89fb805-2021-04-18 20:31:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"W6kqr+9xZ4AAtyoAMJziC1bDTnlqEhfiwuNC+pJ15V4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11842" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "177b07de-2858-45f7-843c-f8f717ca562e" + ], + "x-ms-client-request-id": [ + "cd8fdf4c-0c2d-4305-8673-27efca677d79" + ], + "x-ms-correlation-request-id": [ + "177b07de-2858-45f7-843c-f8f717ca562e" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203100Z:177b07de-2858-45f7-843c-f8f717ca562e" + ], + "Date": [ + "Sun, 18 Apr 2021 20:31:00 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "da3f1d36-550e-4468-b36c-11ba72099ebd" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774270514)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379070514)\\/\",\"ClientRequestId\":\"fed0a103-4a5f-42b9-b684-fa020af9a1a0-2021-04-18 20:31:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JesQctFudKlTfZkgdzLKBaOmVC66gh0dgAsEcQXU1DY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11841" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "baf23b39-04af-44f4-9d08-7754a6552ca7" + ], + "x-ms-client-request-id": [ + "da3f1d36-550e-4468-b36c-11ba72099ebd" + ], + "x-ms-correlation-request-id": [ + "baf23b39-04af-44f4-9d08-7754a6552ca7" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203110Z:baf23b39-04af-44f4-9d08-7754a6552ca7" + ], + "Date": [ + "Sun, 18 Apr 2021 20:31:10 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "765506fb-02cb-46ac-9491-95451f83a319" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774280977)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379080977)\\/\",\"ClientRequestId\":\"93d3ce88-8c1f-416d-bff3-9d5a0f92816f-2021-04-18 20:31:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JKcvb+GR8FeSvzcBOi1e3lYo0hS5ndDZtPaPrnp7FlM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11840" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "af6ce4a9-14ab-40f8-83e9-37a5b3709b23" + ], + "x-ms-client-request-id": [ + "765506fb-02cb-46ac-9491-95451f83a319" + ], + "x-ms-correlation-request-id": [ + "af6ce4a9-14ab-40f8-83e9-37a5b3709b23" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203121Z:af6ce4a9-14ab-40f8-83e9-37a5b3709b23" + ], + "Date": [ + "Sun, 18 Apr 2021 20:31:20 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6b69d212-1b2d-4329-9573-269080cfeb81" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774291378)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379091378)\\/\",\"ClientRequestId\":\"06c38714-e741-424d-85da-6dbf94719a15-2021-04-18 20:31:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JzTHRbWL7y4SJoutvRy5cg7zzLn8xbzkvJOfWz2L9kQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11839" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bb7ac10b-41f7-4336-926e-168a46c8b033" + ], + "x-ms-client-request-id": [ + "6b69d212-1b2d-4329-9573-269080cfeb81" + ], + "x-ms-correlation-request-id": [ + "bb7ac10b-41f7-4336-926e-168a46c8b033" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203131Z:bb7ac10b-41f7-4336-926e-168a46c8b033" + ], + "Date": [ + "Sun, 18 Apr 2021 20:31:31 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "66286519-a71e-43fa-9a57-e22c015c79e3" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774301763)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379101763)\\/\",\"ClientRequestId\":\"13fb65f5-e30f-483d-801f-a616ff2776f2-2021-04-18 20:31:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"beFXIvv8yOgsE3XvQPOlYejSxxbTvjm3M5oBTVgRqts=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1df88118-2dab-4761-ba5a-a307aaf90b73" + ], + "x-ms-client-request-id": [ + "66286519-a71e-43fa-9a57-e22c015c79e3" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11838" + ], + "x-ms-correlation-request-id": [ + "1df88118-2dab-4761-ba5a-a307aaf90b73" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203141Z:1df88118-2dab-4761-ba5a-a307aaf90b73" + ], + "Date": [ + "Sun, 18 Apr 2021 20:31:41 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31421216-2d68-46c7-9ea2-6a4be0e4217d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774312150)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379112150)\\/\",\"ClientRequestId\":\"b51cc76e-7c3c-44a8-a961-385fb9d40115-2021-04-18 20:31:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vdd8AyV2OeU79E0Z790+O7wbnVhAn/mWRmbVmAsqlXY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11837" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e059faf9-c8f7-44ce-a76f-67ed233ff6cf" + ], + "x-ms-client-request-id": [ + "31421216-2d68-46c7-9ea2-6a4be0e4217d" + ], + "x-ms-correlation-request-id": [ + "e059faf9-c8f7-44ce-a76f-67ed233ff6cf" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203152Z:e059faf9-c8f7-44ce-a76f-67ed233ff6cf" + ], + "Date": [ + "Sun, 18 Apr 2021 20:31:52 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "626a358d-2eac-4603-879b-e699d9f90817" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774322655)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379122655)\\/\",\"ClientRequestId\":\"eeee5390-09f3-4a57-b83c-47afb9fe335d-2021-04-18 20:32:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mB+DJF8O4F2z9Ut/h1BXNq4PZqNYTow/UW3/53qw3/E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11836" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3769c7ab-5ece-44e3-a737-b4f99df601a7" + ], + "x-ms-client-request-id": [ + "626a358d-2eac-4603-879b-e699d9f90817" + ], + "x-ms-correlation-request-id": [ + "3769c7ab-5ece-44e3-a737-b4f99df601a7" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203202Z:3769c7ab-5ece-44e3-a737-b4f99df601a7" + ], + "Date": [ + "Sun, 18 Apr 2021 20:32:02 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de5f94cf-cf3d-4bec-963d-cb8e3e8df4e0" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774333060)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379133060)\\/\",\"ClientRequestId\":\"0a972be0-abc9-4ab4-b8c8-6f5b42c5ef69-2021-04-18 20:32:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vxZAp7lhwnZqDmpulm+JKRpsr4uGPPVfVFwI/ii+6zU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11835" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5bc303ce-8cbd-4689-8ad4-b7bfabb73a5c" + ], + "x-ms-client-request-id": [ + "de5f94cf-cf3d-4bec-963d-cb8e3e8df4e0" + ], + "x-ms-correlation-request-id": [ + "5bc303ce-8cbd-4689-8ad4-b7bfabb73a5c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203213Z:5bc303ce-8cbd-4689-8ad4-b7bfabb73a5c" + ], + "Date": [ + "Sun, 18 Apr 2021 20:32:13 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "77c9a0ef-85d4-4f1e-ada0-79f0bc1f2494" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774343492)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379143492)\\/\",\"ClientRequestId\":\"12c4f749-daab-4b4f-93ef-d1ee694af6a6-2021-04-18 20:32:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/srKos/x38Lt+IlTx8k6VIUmUNHXEPS1yLHA0uVamDM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11834" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "81b27c17-f8c7-4c7a-8286-9b2ee742a245" + ], + "x-ms-client-request-id": [ + "77c9a0ef-85d4-4f1e-ada0-79f0bc1f2494" + ], + "x-ms-correlation-request-id": [ + "81b27c17-f8c7-4c7a-8286-9b2ee742a245" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203223Z:81b27c17-f8c7-4c7a-8286-9b2ee742a245" + ], + "Date": [ + "Sun, 18 Apr 2021 20:32:23 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7302bc68-6736-4abd-b118-6c303c03d123" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774353995)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379153995)\\/\",\"ClientRequestId\":\"49dfd272-b914-4cf2-9f49-15040090607a-2021-04-18 20:32:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"D4PzB749kXqpS6/l7lljBVyyK1feVM4Ml2oQD0QIYAI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11833" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "08770b51-04ca-4d70-9f96-1bcf1f862aab" + ], + "x-ms-client-request-id": [ + "7302bc68-6736-4abd-b118-6c303c03d123" + ], + "x-ms-correlation-request-id": [ + "08770b51-04ca-4d70-9f96-1bcf1f862aab" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203234Z:08770b51-04ca-4d70-9f96-1bcf1f862aab" + ], + "Date": [ + "Sun, 18 Apr 2021 20:32:34 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f0c266c-dcf9-44d4-a1d8-085a0737c23b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774364371)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379164371)\\/\",\"ClientRequestId\":\"f43b8538-3b47-4c1d-87ee-8f5eb5f2f69f-2021-04-18 20:32:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OjFpPEhmYjVMbYopd8S1F36Pnvh9UlOki6RghRmZofk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11832" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "9bd12fe5-d77b-4c22-801e-69aa526a0f67" + ], + "x-ms-client-request-id": [ + "7f0c266c-dcf9-44d4-a1d8-085a0737c23b" + ], + "x-ms-correlation-request-id": [ + "9bd12fe5-d77b-4c22-801e-69aa526a0f67" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203244Z:9bd12fe5-d77b-4c22-801e-69aa526a0f67" + ], + "Date": [ + "Sun, 18 Apr 2021 20:32:44 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5c324f35-c575-4eed-8a9b-feae0915031f" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774374766)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379174766)\\/\",\"ClientRequestId\":\"2a7d9157-ddbc-4073-bfac-ce04bb42d1ec-2021-04-18 20:32:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tPFt8o0EPEo+GWTUtrC92I2+w80WcbPqyRFRWq9Rusw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11831" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "163e5e26-6402-4f84-851e-9a565cc9a534" + ], + "x-ms-client-request-id": [ + "5c324f35-c575-4eed-8a9b-feae0915031f" + ], + "x-ms-correlation-request-id": [ + "163e5e26-6402-4f84-851e-9a565cc9a534" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203255Z:163e5e26-6402-4f84-851e-9a565cc9a534" + ], + "Date": [ + "Sun, 18 Apr 2021 20:32:54 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "93d588df-d563-447e-aa3f-aa7f3536b2b4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774385169)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379185169)\\/\",\"ClientRequestId\":\"44b083a9-731b-4106-9c58-143666308a87-2021-04-18 20:33:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uqo7q0ORI4gPj9vFcZzt2RnNC23X7/p+JZCwt5syq4w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11830" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e3e3b22c-cd08-4442-b0a8-0d2bae33cd46" + ], + "x-ms-client-request-id": [ + "93d588df-d563-447e-aa3f-aa7f3536b2b4" + ], + "x-ms-correlation-request-id": [ + "e3e3b22c-cd08-4442-b0a8-0d2bae33cd46" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203305Z:e3e3b22c-cd08-4442-b0a8-0d2bae33cd46" + ], + "Date": [ + "Sun, 18 Apr 2021 20:33:05 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad1fb84a-c55e-4732-95d8-7d1648f01bd6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774395594)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379195594)\\/\",\"ClientRequestId\":\"27ead57b-c605-4d58-b793-99181cd21f11-2021-04-18 20:33:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6HVVF0m3BGVcQ/0+uvADmU3HhNaoapwlNfddA2QPKL8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11829" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "669c2e96-ff5f-4349-a7a8-a30313a2384f" + ], + "x-ms-client-request-id": [ + "ad1fb84a-c55e-4732-95d8-7d1648f01bd6" + ], + "x-ms-correlation-request-id": [ + "669c2e96-ff5f-4349-a7a8-a30313a2384f" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203315Z:669c2e96-ff5f-4349-a7a8-a30313a2384f" + ], + "Date": [ + "Sun, 18 Apr 2021 20:33:15 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "02329064-28f7-445c-85c4-137692618343" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774405980)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379205980)\\/\",\"ClientRequestId\":\"d2c85226-b9ab-4942-a49e-20f9f637bf92-2021-04-18 20:33:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8ToZcWSVQfNr79RSSQgjz7IOer679hs2pUa5T/EbeJI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11828" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1b988e49-9860-4af6-b189-54c92d13a372" + ], + "x-ms-client-request-id": [ + "02329064-28f7-445c-85c4-137692618343" + ], + "x-ms-correlation-request-id": [ + "1b988e49-9860-4af6-b189-54c92d13a372" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203326Z:1b988e49-9860-4af6-b189-54c92d13a372" + ], + "Date": [ + "Sun, 18 Apr 2021 20:33:25 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "938fe54e-e080-485c-a0b7-548a3b83cd67" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774416361)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379216361)\\/\",\"ClientRequestId\":\"e5d0ab7b-4c2a-42f6-b92b-b0134e26b8fc-2021-04-18 20:33:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"94SsHaSrQiBVr+39TVUOxz/tOrpmDalLPeBj4es9OW4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11827" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7c252daa-12da-4904-a756-ebf9f2f9dfa3" + ], + "x-ms-client-request-id": [ + "938fe54e-e080-485c-a0b7-548a3b83cd67" + ], + "x-ms-correlation-request-id": [ + "7c252daa-12da-4904-a756-ebf9f2f9dfa3" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203336Z:7c252daa-12da-4904-a756-ebf9f2f9dfa3" + ], + "Date": [ + "Sun, 18 Apr 2021 20:33:36 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd2ddc95-4401-4be1-8056-d9ff15d8abb4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774426758)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379226758)\\/\",\"ClientRequestId\":\"8d3c3d55-e2b8-4909-8cfb-235af5c455ac-2021-04-18 20:33:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dn3JFeV4eSOxNgOECjRu8y1wGza0HaAIqTSCiBVw9oI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11826" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2fd3dc77-8a37-43f5-8120-8519bd560609" + ], + "x-ms-client-request-id": [ + "fd2ddc95-4401-4be1-8056-d9ff15d8abb4" + ], + "x-ms-correlation-request-id": [ + "2fd3dc77-8a37-43f5-8120-8519bd560609" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203346Z:2fd3dc77-8a37-43f5-8120-8519bd560609" + ], + "Date": [ + "Sun, 18 Apr 2021 20:33:46 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55097c31-5e0c-47c8-9ee4-981d552fab12" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774437133)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379237133)\\/\",\"ClientRequestId\":\"3816af49-8aef-4b63-8c85-1f107879ed92-2021-04-18 20:33:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"51yyznSZsETF++rs9TokVgxFmRQm8nSWYUTBkVjrcek=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11825" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "523a3cf3-e9f8-4555-a4e1-4457dee95cba" + ], + "x-ms-client-request-id": [ + "55097c31-5e0c-47c8-9ee4-981d552fab12" + ], + "x-ms-correlation-request-id": [ + "523a3cf3-e9f8-4555-a4e1-4457dee95cba" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203357Z:523a3cf3-e9f8-4555-a4e1-4457dee95cba" + ], + "Date": [ + "Sun, 18 Apr 2021 20:33:57 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "122bd0be-9ca9-4bfa-a011-7bd87f9361d4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774447512)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379247512)\\/\",\"ClientRequestId\":\"d8c8ea94-b99e-4df2-a8d3-3a297eee5f37-2021-04-18 20:34:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"McHA4usc3qvLqKoPF9qejwuSDVde0HOOViU7ljL4t0U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11824" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "457bfb4a-fe06-4db7-b72c-789f5d280053" + ], + "x-ms-client-request-id": [ + "122bd0be-9ca9-4bfa-a011-7bd87f9361d4" + ], + "x-ms-correlation-request-id": [ + "457bfb4a-fe06-4db7-b72c-789f5d280053" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203407Z:457bfb4a-fe06-4db7-b72c-789f5d280053" + ], + "Date": [ + "Sun, 18 Apr 2021 20:34:07 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "011b7cd9-28dc-48bc-a681-dda12e6d55e4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774457884)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379257884)\\/\",\"ClientRequestId\":\"be484416-3a93-4ef8-9f96-2fd1cb3b0cd0-2021-04-18 20:34:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gtFIoq5DTzR73fBnKjXLfK3rqFf+gbjhFmeqQnnEQIE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11823" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "68bec962-21e3-478a-ae08-8740c8887c59" + ], + "x-ms-client-request-id": [ + "011b7cd9-28dc-48bc-a681-dda12e6d55e4" + ], + "x-ms-correlation-request-id": [ + "68bec962-21e3-478a-ae08-8740c8887c59" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203418Z:68bec962-21e3-478a-ae08-8740c8887c59" + ], + "Date": [ + "Sun, 18 Apr 2021 20:34:18 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6039abe2-9a2a-4215-b253-5cccbd250d35" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774468296)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379268296)\\/\",\"ClientRequestId\":\"05289e04-d6b2-43aa-8094-3186009c21f0-2021-04-18 20:34:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"No9A1cE2Rrg8LT5V8ZjsU5nCg7GJJyh64IOEUD2iE28=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11822" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4aa81248-6a19-4f64-b32f-4a0aa48ba4ec" + ], + "x-ms-client-request-id": [ + "6039abe2-9a2a-4215-b253-5cccbd250d35" + ], + "x-ms-correlation-request-id": [ + "4aa81248-6a19-4f64-b32f-4a0aa48ba4ec" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203428Z:4aa81248-6a19-4f64-b32f-4a0aa48ba4ec" + ], + "Date": [ + "Sun, 18 Apr 2021 20:34:28 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d178e5a0-3867-4e44-bb37-6551197f979f" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774478721)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379278721)\\/\",\"ClientRequestId\":\"142a6b51-27d9-4352-833c-9d583147562a-2021-04-18 20:34:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PyzVactfjb1aR+JeHAZc89mv0L5sveuChR90S5wkVws=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11821" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "86e47d8f-e880-452d-9d12-c822fcc15f8e" + ], + "x-ms-client-request-id": [ + "d178e5a0-3867-4e44-bb37-6551197f979f" + ], + "x-ms-correlation-request-id": [ + "86e47d8f-e880-452d-9d12-c822fcc15f8e" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203438Z:86e47d8f-e880-452d-9d12-c822fcc15f8e" + ], + "Date": [ + "Sun, 18 Apr 2021 20:34:38 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "26795c0d-5610-4587-909d-6b98e3e9db9a" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774489090)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379289090)\\/\",\"ClientRequestId\":\"086e06b6-3490-438a-94ce-25f208c5d842-2021-04-18 20:34:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XP6zASGS8R3WPpX4JdUXKR77rHo0X8TL32mQK1cq/ts=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11820" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "68229ed2-2b8d-4be2-9f29-a0e153787036" + ], + "x-ms-client-request-id": [ + "26795c0d-5610-4587-909d-6b98e3e9db9a" + ], + "x-ms-correlation-request-id": [ + "68229ed2-2b8d-4be2-9f29-a0e153787036" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203449Z:68229ed2-2b8d-4be2-9f29-a0e153787036" + ], + "Date": [ + "Sun, 18 Apr 2021 20:34:49 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "529a6293-4b50-4192-b854-7df5ab6e1059" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774499489)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379299489)\\/\",\"ClientRequestId\":\"7375fcec-5ddb-4353-aebe-83860512dfc0-2021-04-18 20:34:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"E92JmdC5iO697EBI3Bd6YJtRrZwTN/8UKFKpaPt13BE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11819" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0d3090cf-91e3-4225-b089-98e37083184a" + ], + "x-ms-client-request-id": [ + "529a6293-4b50-4192-b854-7df5ab6e1059" + ], + "x-ms-correlation-request-id": [ + "0d3090cf-91e3-4225-b089-98e37083184a" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203459Z:0d3090cf-91e3-4225-b089-98e37083184a" + ], + "Date": [ + "Sun, 18 Apr 2021 20:34:58 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "98da3b27-d891-4ab8-a22c-301a851416bb" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774509899)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379309899)\\/\",\"ClientRequestId\":\"4d10095c-557f-40e1-b190-b271c223aa13-2021-04-18 20:35:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wr4lwiE/6Zo909Mzfl5AUH/w2+NKj+puZbSZSb5noDs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11818" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "936246f4-22fb-4b28-b33c-ab6d5e310045" + ], + "x-ms-client-request-id": [ + "98da3b27-d891-4ab8-a22c-301a851416bb" + ], + "x-ms-correlation-request-id": [ + "936246f4-22fb-4b28-b33c-ab6d5e310045" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203510Z:936246f4-22fb-4b28-b33c-ab6d5e310045" + ], + "Date": [ + "Sun, 18 Apr 2021 20:35:10 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f83f73e-3925-49ff-920f-e117f9092aaa" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774520341)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379320341)\\/\",\"ClientRequestId\":\"3e445cbd-db7d-426c-b044-f2ea53c42d76-2021-04-18 20:35:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"guNlIGLnW48Q25qoS85u0eTCsvo0fG2yxRdb1Wuk2W4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11817" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0b8a5498-96a5-4093-b80a-90b27c19d4fa" + ], + "x-ms-client-request-id": [ + "0f83f73e-3925-49ff-920f-e117f9092aaa" + ], + "x-ms-correlation-request-id": [ + "0b8a5498-96a5-4093-b80a-90b27c19d4fa" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203520Z:0b8a5498-96a5-4093-b80a-90b27c19d4fa" + ], + "Date": [ + "Sun, 18 Apr 2021 20:35:19 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0cc7962a-0f9f-45c0-908f-362e247fe884" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774530766)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379330766)\\/\",\"ClientRequestId\":\"7d774933-01da-44ec-936c-700ea58b3dff-2021-04-18 20:35:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uRge3Y07/9FFjqP/qTviCk3CqSrPZzNzrBDThk+tWAg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11816" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "aa134bee-0db1-48a9-9fee-493948b21974" + ], + "x-ms-client-request-id": [ + "0cc7962a-0f9f-45c0-908f-362e247fe884" + ], + "x-ms-correlation-request-id": [ + "aa134bee-0db1-48a9-9fee-493948b21974" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203530Z:aa134bee-0db1-48a9-9fee-493948b21974" + ], + "Date": [ + "Sun, 18 Apr 2021 20:35:30 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "056c1c49-857a-4cb1-bf9a-26fad53fa955" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774541160)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379341160)\\/\",\"ClientRequestId\":\"fa2a1fc0-f809-435f-90c9-1248680fb870-2021-04-18 20:35:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1jy0KsgYpcVtLV+zhKmgqCEeIDlnGYmDvO3cnR5gHbo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11815" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7fcf8590-448d-4309-9e3b-37ad1c4ae27c" + ], + "x-ms-client-request-id": [ + "056c1c49-857a-4cb1-bf9a-26fad53fa955" + ], + "x-ms-correlation-request-id": [ + "7fcf8590-448d-4309-9e3b-37ad1c4ae27c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203541Z:7fcf8590-448d-4309-9e3b-37ad1c4ae27c" + ], + "Date": [ + "Sun, 18 Apr 2021 20:35:40 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4d725de1-5f6e-4526-aa94-ded094872d34" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774551542)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379351542)\\/\",\"ClientRequestId\":\"61d57c5e-f7d0-47f9-8f1b-ed89ae6c773a-2021-04-18 20:35:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UC4AMMGWyfjBfyROuHeQ/Pf3ZprTlPXeWZsZm5NPPl8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11814" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0329613c-fa2e-471f-8f59-eaa9579e7c85" + ], + "x-ms-client-request-id": [ + "4d725de1-5f6e-4526-aa94-ded094872d34" + ], + "x-ms-correlation-request-id": [ + "0329613c-fa2e-471f-8f59-eaa9579e7c85" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203551Z:0329613c-fa2e-471f-8f59-eaa9579e7c85" + ], + "Date": [ + "Sun, 18 Apr 2021 20:35:51 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58abd9d8-a106-4de0-b195-611eaab68712" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774561907)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379361907)\\/\",\"ClientRequestId\":\"9ba6e412-77f5-4579-9707-44689ddeaf5f-2021-04-18 20:36:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KLnnRgj19GCOTNcCM2B27ackivj1IrW7o38xhiJsYG8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "401498f4-ae4e-4796-9438-a6d3405909a0" + ], + "x-ms-client-request-id": [ + "58abd9d8-a106-4de0-b195-611eaab68712" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11813" + ], + "x-ms-correlation-request-id": [ + "401498f4-ae4e-4796-9438-a6d3405909a0" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203602Z:401498f4-ae4e-4796-9438-a6d3405909a0" + ], + "Date": [ + "Sun, 18 Apr 2021 20:36:02 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "555724f8-47cc-4200-bddc-dcc22b831844" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774572305)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379372305)\\/\",\"ClientRequestId\":\"e7e05afe-96e0-458a-a0c1-a752d157fede-2021-04-18 20:36:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lXKXqjt7+B+I/plVCescVjKW5zcX14qGZDYK+ciSwd0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11812" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "08ea84ca-2c8b-435e-af4c-f73d95835d75" + ], + "x-ms-client-request-id": [ + "555724f8-47cc-4200-bddc-dcc22b831844" + ], + "x-ms-correlation-request-id": [ + "08ea84ca-2c8b-435e-af4c-f73d95835d75" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203612Z:08ea84ca-2c8b-435e-af4c-f73d95835d75" + ], + "Date": [ + "Sun, 18 Apr 2021 20:36:11 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b451b80-6898-4020-ba32-f91e60ca3e52" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774582971)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379382971)\\/\",\"ClientRequestId\":\"271adc65-1c66-4638-83f2-44afba9f9539-2021-04-18 20:36:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"971L0xbIUqmX5VYWIEQc70tBuFA8c2VYCZeEw8YhdLQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11811" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "158b2c62-0ecb-424d-93b9-2d227930d88b" + ], + "x-ms-client-request-id": [ + "3b451b80-6898-4020-ba32-f91e60ca3e52" + ], + "x-ms-correlation-request-id": [ + "158b2c62-0ecb-424d-93b9-2d227930d88b" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203623Z:158b2c62-0ecb-424d-93b9-2d227930d88b" + ], + "Date": [ + "Sun, 18 Apr 2021 20:36:22 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b2bfef12-a546-4f1c-be42-3ed31444b360" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774593379)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379393379)\\/\",\"ClientRequestId\":\"0d2d0e60-4f30-43bb-906f-7e17f719b784-2021-04-18 20:36:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XuAPTcKU5UU01Lsjq97rZRNgxzv1DAYT6hOqksXlmRQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11810" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "517fbffc-5d5f-45ef-a320-6f224f47f38f" + ], + "x-ms-client-request-id": [ + "b2bfef12-a546-4f1c-be42-3ed31444b360" + ], + "x-ms-correlation-request-id": [ + "517fbffc-5d5f-45ef-a320-6f224f47f38f" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203633Z:517fbffc-5d5f-45ef-a320-6f224f47f38f" + ], + "Date": [ + "Sun, 18 Apr 2021 20:36:33 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "23db1b0d-860e-4434-bd4d-dd4862dce78c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774603850)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379403850)\\/\",\"ClientRequestId\":\"719d9901-f719-4e3d-8b21-696184f0332d-2021-04-18 20:36:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sRMpWMbv9Isn/adoLnxGTuNt8sM2JwZCPCVmUIhk+6w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11809" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f610690c-1f80-4099-97ae-627154e7d949" + ], + "x-ms-client-request-id": [ + "23db1b0d-860e-4434-bd4d-dd4862dce78c" + ], + "x-ms-correlation-request-id": [ + "f610690c-1f80-4099-97ae-627154e7d949" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203644Z:f610690c-1f80-4099-97ae-627154e7d949" + ], + "Date": [ + "Sun, 18 Apr 2021 20:36:43 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ce5e22ba-0555-4eaf-a12a-a30fac5123ea" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774614230)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379414230)\\/\",\"ClientRequestId\":\"05fc3611-2ae1-4a5d-b634-6ca65ffff58e-2021-04-18 20:36:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uVZ4O2w5RwYoHXw2zd9MefiunF8tMFCagsjGDZxdW9I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11808" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7361bda3-4377-43a0-98ca-401d64e4d804" + ], + "x-ms-client-request-id": [ + "ce5e22ba-0555-4eaf-a12a-a30fac5123ea" + ], + "x-ms-correlation-request-id": [ + "7361bda3-4377-43a0-98ca-401d64e4d804" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203654Z:7361bda3-4377-43a0-98ca-401d64e4d804" + ], + "Date": [ + "Sun, 18 Apr 2021 20:36:54 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ffaea838-16a4-4455-b5e8-c8adb58182e3" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774624608)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379424608)\\/\",\"ClientRequestId\":\"b0d91c04-5dcf-45f7-905f-0770c86cf9e5-2021-04-18 20:37:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LEPcKgVYx5BsL6AaGjtv5WkJruSm5SA/5x49kONeRc4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11807" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f8413dbe-2057-4273-9501-0ad295d8e5a5" + ], + "x-ms-client-request-id": [ + "ffaea838-16a4-4455-b5e8-c8adb58182e3" + ], + "x-ms-correlation-request-id": [ + "f8413dbe-2057-4273-9501-0ad295d8e5a5" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203704Z:f8413dbe-2057-4273-9501-0ad295d8e5a5" + ], + "Date": [ + "Sun, 18 Apr 2021 20:37:04 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2f4d2b14-8f06-4ceb-a8c5-d3bda56d058e" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774635021)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379435021)\\/\",\"ClientRequestId\":\"55f92fcd-b7c9-4e02-814f-6c533543b7ac-2021-04-18 20:37:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VCDvxn1SQRv7PVhwrm2kHmxi+P8FzlxyTcGRDtOc8eQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11806" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d4bd33d1-b314-46bd-a924-fee3444a273d" + ], + "x-ms-client-request-id": [ + "2f4d2b14-8f06-4ceb-a8c5-d3bda56d058e" + ], + "x-ms-correlation-request-id": [ + "d4bd33d1-b314-46bd-a924-fee3444a273d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203715Z:d4bd33d1-b314-46bd-a924-fee3444a273d" + ], + "Date": [ + "Sun, 18 Apr 2021 20:37:14 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d38267e1-7064-4a67-9929-02f218125cec" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774645421)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379445421)\\/\",\"ClientRequestId\":\"070eae26-977c-466d-a547-200708c14784-2021-04-18 20:37:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yWp14YJaboobQcuIeSrTdMc44/ZrD3UwwAvAv0Yyvi8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11805" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b9c5cfc3-46ad-4128-aa9d-2a2bb8dccb99" + ], + "x-ms-client-request-id": [ + "d38267e1-7064-4a67-9929-02f218125cec" + ], + "x-ms-correlation-request-id": [ + "b9c5cfc3-46ad-4128-aa9d-2a2bb8dccb99" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203725Z:b9c5cfc3-46ad-4128-aa9d-2a2bb8dccb99" + ], + "Date": [ + "Sun, 18 Apr 2021 20:37:25 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "28972b03-1ae5-42a2-8191-d42eb2edb38d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774655803)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379455803)\\/\",\"ClientRequestId\":\"c6e0e683-7927-4391-b65a-156e7b359b99-2021-04-18 20:37:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/g9r0GxGo5iI16v2H1jFdLGRsR+EBtSYqzpUcXMeIFI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11804" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "60b717f1-5d65-4ad2-a39f-ee1975c10f8f" + ], + "x-ms-client-request-id": [ + "28972b03-1ae5-42a2-8191-d42eb2edb38d" + ], + "x-ms-correlation-request-id": [ + "60b717f1-5d65-4ad2-a39f-ee1975c10f8f" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203736Z:60b717f1-5d65-4ad2-a39f-ee1975c10f8f" + ], + "Date": [ + "Sun, 18 Apr 2021 20:37:36 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a5d3e36-8ebb-4a45-aa69-6a2f8e96a8b0" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774666186)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379466186)\\/\",\"ClientRequestId\":\"49c5dab0-e839-4076-99a8-09f2f1945364-2021-04-18 20:37:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QjvyLy/q5FlD6SJp5SYZkOr+1It6LFvk+CdHS46iXAg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11803" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "82112937-3abf-49e1-8fc5-d686d1376bcf" + ], + "x-ms-client-request-id": [ + "3a5d3e36-8ebb-4a45-aa69-6a2f8e96a8b0" + ], + "x-ms-correlation-request-id": [ + "82112937-3abf-49e1-8fc5-d686d1376bcf" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203746Z:82112937-3abf-49e1-8fc5-d686d1376bcf" + ], + "Date": [ + "Sun, 18 Apr 2021 20:37:46 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f1667a-83e3-4e09-bc25-d053f5715adb" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774676631)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379476631)\\/\",\"ClientRequestId\":\"8402e197-25aa-4075-96e0-86459b5db1a4-2021-04-18 20:37:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AhyCy3YKM9o4dSJ9mCLdo6HixKC80MEFZ67N4tb6xmo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11802" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5776d6be-85b3-47be-a57f-40f549e6c235" + ], + "x-ms-client-request-id": [ + "03f1667a-83e3-4e09-bc25-d053f5715adb" + ], + "x-ms-correlation-request-id": [ + "5776d6be-85b3-47be-a57f-40f549e6c235" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203756Z:5776d6be-85b3-47be-a57f-40f549e6c235" + ], + "Date": [ + "Sun, 18 Apr 2021 20:37:56 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d3133e8a-eb0a-4114-911f-ce90b9857d73" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774687022)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379487022)\\/\",\"ClientRequestId\":\"9bce12eb-d24a-46a2-b49f-dde6f212a3bf-2021-04-18 20:38:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+a01RkxJQVJBQWNn3CK2jJVtm/INjYyO1uGvGiZu298=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11801" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e7e1d33b-1908-4ef1-a378-f0f15043f5c3" + ], + "x-ms-client-request-id": [ + "d3133e8a-eb0a-4114-911f-ce90b9857d73" + ], + "x-ms-correlation-request-id": [ + "e7e1d33b-1908-4ef1-a378-f0f15043f5c3" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203807Z:e7e1d33b-1908-4ef1-a378-f0f15043f5c3" + ], + "Date": [ + "Sun, 18 Apr 2021 20:38:07 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f8da40d-f5db-40af-9668-9ba7614e6b52" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774697405)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379497405)\\/\",\"ClientRequestId\":\"d7eb0a1d-1116-48e2-8b09-3df8d7b8889c-2021-04-18 20:38:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7a4IS/iojc0lIwP3bgIE+ezDIOo9i6ex3x8l2nV8F7g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11800" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5b36a45e-8d45-49bf-9977-3fad9bac7f16" + ], + "x-ms-client-request-id": [ + "7f8da40d-f5db-40af-9668-9ba7614e6b52" + ], + "x-ms-correlation-request-id": [ + "5b36a45e-8d45-49bf-9977-3fad9bac7f16" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203817Z:5b36a45e-8d45-49bf-9977-3fad9bac7f16" + ], + "Date": [ + "Sun, 18 Apr 2021 20:38:16 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0faef908-e9ce-40e4-8bbd-ffece414a297" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774707787)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379507787)\\/\",\"ClientRequestId\":\"fb1f1348-e542-4628-ab2f-22da34b53b8c-2021-04-18 20:38:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SaH08YKnUNM5/JsLAC7eHjFOmsfa7zkVbqM/B7/YA8s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11799" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fec57bc9-2b85-4696-98c0-3b45361661b9" + ], + "x-ms-client-request-id": [ + "0faef908-e9ce-40e4-8bbd-ffece414a297" + ], + "x-ms-correlation-request-id": [ + "fec57bc9-2b85-4696-98c0-3b45361661b9" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203828Z:fec57bc9-2b85-4696-98c0-3b45361661b9" + ], + "Date": [ + "Sun, 18 Apr 2021 20:38:27 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "772648e9-636a-429f-86e7-29ecb491ed5f" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774718184)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379518184)\\/\",\"ClientRequestId\":\"52de5dae-c643-4724-96a4-1b489233c7ea-2021-04-18 20:38:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"t6oydGLtpN81zNoVhfBydk+378isThAOjr2T1HIpXrU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11798" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "982f016a-e729-45ee-a44f-05e85c9e90db" + ], + "x-ms-client-request-id": [ + "772648e9-636a-429f-86e7-29ecb491ed5f" + ], + "x-ms-correlation-request-id": [ + "982f016a-e729-45ee-a44f-05e85c9e90db" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203838Z:982f016a-e729-45ee-a44f-05e85c9e90db" + ], + "Date": [ + "Sun, 18 Apr 2021 20:38:38 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71e40b40-71be-4ef2-bc43-6fcfba70ad95" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774728576)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379528576)\\/\",\"ClientRequestId\":\"83e266c1-22fe-48b9-ac85-d1868ea3c480-2021-04-18 20:38:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PBaXNtHq56VDy5Ixk7IZhslF9wnDNfd3h5FeCGvklfY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11797" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d337b8e7-6546-4a70-b195-c7b5545b2f60" + ], + "x-ms-client-request-id": [ + "71e40b40-71be-4ef2-bc43-6fcfba70ad95" + ], + "x-ms-correlation-request-id": [ + "d337b8e7-6546-4a70-b195-c7b5545b2f60" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203848Z:d337b8e7-6546-4a70-b195-c7b5545b2f60" + ], + "Date": [ + "Sun, 18 Apr 2021 20:38:48 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "087dae9b-0021-4117-943f-8164038777aa" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774738958)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379538958)\\/\",\"ClientRequestId\":\"20bab8b7-0faa-48b9-a5ef-e3e07efa7360-2021-04-18 20:38:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lBka+uo9g0WB4dWu24Urn52bCGy9dncBUnOQb6gY/3g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11796" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7cd2ea38-f5df-46ff-a29f-6f2bd8b2bacb" + ], + "x-ms-client-request-id": [ + "087dae9b-0021-4117-943f-8164038777aa" + ], + "x-ms-correlation-request-id": [ + "7cd2ea38-f5df-46ff-a29f-6f2bd8b2bacb" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203859Z:7cd2ea38-f5df-46ff-a29f-6f2bd8b2bacb" + ], + "Date": [ + "Sun, 18 Apr 2021 20:38:59 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cba57d72-3c21-42a3-b418-48aa734a017c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774749340)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379549340)\\/\",\"ClientRequestId\":\"55520ec4-32dd-49b3-a8a8-698c2929951a-2021-04-18 20:39:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0LP9kn0mgxKY3eG8UpuJIW/FET5BK3u26cAyvFdcIoQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11795" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "993e9fb3-6deb-4521-aace-8bc378084ede" + ], + "x-ms-client-request-id": [ + "cba57d72-3c21-42a3-b418-48aa734a017c" + ], + "x-ms-correlation-request-id": [ + "993e9fb3-6deb-4521-aace-8bc378084ede" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203909Z:993e9fb3-6deb-4521-aace-8bc378084ede" + ], + "Date": [ + "Sun, 18 Apr 2021 20:39:09 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "97d4e335-dd3e-4ea3-b1f9-91e3a2c09b09" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774759745)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379559745)\\/\",\"ClientRequestId\":\"75d5e4ad-9619-4205-a96d-df2707c31286-2021-04-18 20:39:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6gIGVFyrQkj9sV1cyYdV4lCKzJO30flAdK6AKVppKFE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11794" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "44b279cd-ab49-4d3c-b3c2-917ac3d3fc49" + ], + "x-ms-client-request-id": [ + "97d4e335-dd3e-4ea3-b1f9-91e3a2c09b09" + ], + "x-ms-correlation-request-id": [ + "44b279cd-ab49-4d3c-b3c2-917ac3d3fc49" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203919Z:44b279cd-ab49-4d3c-b3c2-917ac3d3fc49" + ], + "Date": [ + "Sun, 18 Apr 2021 20:39:18 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d9421835-faf8-4618-8f99-91437062a542" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774770124)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379570124)\\/\",\"ClientRequestId\":\"9608593a-cc9e-465c-b6e0-e20a649b6ba7-2021-04-18 20:39:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"19kY8PMrv11LLQttjcAnCH1YRK7+LBDZn1wO82ivE/A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11793" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "09330440-46a4-497d-83ec-e1db82dc78b3" + ], + "x-ms-client-request-id": [ + "d9421835-faf8-4618-8f99-91437062a542" + ], + "x-ms-correlation-request-id": [ + "09330440-46a4-497d-83ec-e1db82dc78b3" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203930Z:09330440-46a4-497d-83ec-e1db82dc78b3" + ], + "Date": [ + "Sun, 18 Apr 2021 20:39:30 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a30bfc9b-b54e-4627-b179-1fc28a2d7041" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774780511)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379580511)\\/\",\"ClientRequestId\":\"26d4812b-5f55-4f7f-a552-b03ffd1c81ac-2021-04-18 20:39:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Tt7K9xcmo7Cox4Iar2a0rqLCclgPsIuwq2KMwAmo8Ow=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11792" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8446c027-df8f-4903-a636-d571d180fee1" + ], + "x-ms-client-request-id": [ + "a30bfc9b-b54e-4627-b179-1fc28a2d7041" + ], + "x-ms-correlation-request-id": [ + "8446c027-df8f-4903-a636-d571d180fee1" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203940Z:8446c027-df8f-4903-a636-d571d180fee1" + ], + "Date": [ + "Sun, 18 Apr 2021 20:39:40 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6f823c1e-0991-48d6-b891-f5d484b9e1b4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774790979)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379590979)\\/\",\"ClientRequestId\":\"48e5a393-591a-4cfb-ae42-e5793455372f-2021-04-18 20:39:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PWUyZo7hTxKuKdZQGPlEy4vJj5f1i5p24Q00DcQTFNU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11791" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6d74056e-f16c-4fb0-8603-c562d327d5dd" + ], + "x-ms-client-request-id": [ + "6f823c1e-0991-48d6-b891-f5d484b9e1b4" + ], + "x-ms-correlation-request-id": [ + "6d74056e-f16c-4fb0-8603-c562d327d5dd" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T203951Z:6d74056e-f16c-4fb0-8603-c562d327d5dd" + ], + "Date": [ + "Sun, 18 Apr 2021 20:39:51 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3e66dfeb-c641-46d9-9d08-768a2729a927" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774801401)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379601401)\\/\",\"ClientRequestId\":\"e0c073e7-6146-4733-b294-ae8036102356-2021-04-18 20:40:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IE3eX9/2n5YhK4iVNC0eRe5mEciwlodumBru3Gi4r+c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11790" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b36da81c-d592-4d43-9d3c-fe873b64530d" + ], + "x-ms-client-request-id": [ + "3e66dfeb-c641-46d9-9d08-768a2729a927" + ], + "x-ms-correlation-request-id": [ + "b36da81c-d592-4d43-9d3c-fe873b64530d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204001Z:b36da81c-d592-4d43-9d3c-fe873b64530d" + ], + "Date": [ + "Sun, 18 Apr 2021 20:40:01 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e5d9c62-374d-4ed4-8422-47cd0c50e0b8" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774811768)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379611768)\\/\",\"ClientRequestId\":\"2817a6ed-9ee0-4a6e-be8d-bb9804bdece9-2021-04-18 20:40:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WShgs+qDxCf/CncHsO9t+3OUn9NmiRIwZhUpIsVKI5o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11789" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "483e8a28-2372-48b1-be3b-cd17c6af4cfa" + ], + "x-ms-client-request-id": [ + "7e5d9c62-374d-4ed4-8422-47cd0c50e0b8" + ], + "x-ms-correlation-request-id": [ + "483e8a28-2372-48b1-be3b-cd17c6af4cfa" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204011Z:483e8a28-2372-48b1-be3b-cd17c6af4cfa" + ], + "Date": [ + "Sun, 18 Apr 2021 20:40:11 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff11a4bf-a1e5-48e0-b0d7-88ebf5d0aa16" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774822167)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379622167)\\/\",\"ClientRequestId\":\"ff8e020c-0c29-49fb-bb91-99d60230f89b-2021-04-18 20:40:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+c08wSmvM1mviRipnxyIzaGrqDqsx9RVpt8YK/XL16o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ddff2e69-0809-455c-a073-5bbf66f36ecd" + ], + "x-ms-client-request-id": [ + "ff11a4bf-a1e5-48e0-b0d7-88ebf5d0aa16" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11788" + ], + "x-ms-correlation-request-id": [ + "ddff2e69-0809-455c-a073-5bbf66f36ecd" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204022Z:ddff2e69-0809-455c-a073-5bbf66f36ecd" + ], + "Date": [ + "Sun, 18 Apr 2021 20:40:22 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3b2d7326-838c-4e76-bba7-98122df352d7" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774832550)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379632550)\\/\",\"ClientRequestId\":\"f116ab6e-8cdc-4040-a217-4308d9de165c-2021-04-18 20:40:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KP96DWv3uB+KrjVfN64pC7aD+Ei37HAEkJ0+4TNZ/Uk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11787" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a7668210-d1e1-4150-8c85-0968ed30b4a4" + ], + "x-ms-client-request-id": [ + "3b2d7326-838c-4e76-bba7-98122df352d7" + ], + "x-ms-correlation-request-id": [ + "a7668210-d1e1-4150-8c85-0968ed30b4a4" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204033Z:a7668210-d1e1-4150-8c85-0968ed30b4a4" + ], + "Date": [ + "Sun, 18 Apr 2021 20:40:32 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7c8f73f-bff9-4b65-bfc8-5433edcd03fd" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774843719)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379643719)\\/\",\"ClientRequestId\":\"0c2b310d-2201-4764-beb2-0fdce4953127-2021-04-18 20:40:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3rA3jbCevWb7IiBPokG/wVALrFoMfQeMPiCirJDEn0o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11786" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7f21dd1a-4c1c-40f9-846e-94a22393fb6e" + ], + "x-ms-client-request-id": [ + "d7c8f73f-bff9-4b65-bfc8-5433edcd03fd" + ], + "x-ms-correlation-request-id": [ + "7f21dd1a-4c1c-40f9-846e-94a22393fb6e" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204043Z:7f21dd1a-4c1c-40f9-846e-94a22393fb6e" + ], + "Date": [ + "Sun, 18 Apr 2021 20:40:43 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "296f6528-75b4-4a2e-ad7c-27db4ddfe153" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774854117)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379654117)\\/\",\"ClientRequestId\":\"2fb72c51-9ac6-45ff-9fdf-8bef2dcd41de-2021-04-18 20:40:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RLOib5EEDt/1yzn0P4URLzyuNHeBFN7MZ3tUww7fe6M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11785" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f276ef2e-597e-4004-a1b3-c56f31eb4db9" + ], + "x-ms-client-request-id": [ + "296f6528-75b4-4a2e-ad7c-27db4ddfe153" + ], + "x-ms-correlation-request-id": [ + "f276ef2e-597e-4004-a1b3-c56f31eb4db9" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204054Z:f276ef2e-597e-4004-a1b3-c56f31eb4db9" + ], + "Date": [ + "Sun, 18 Apr 2021 20:40:53 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9087b258-8408-444c-82a0-9f7b26ced6d4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774864489)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379664489)\\/\",\"ClientRequestId\":\"2ae1c8f8-7a0c-42d3-a4d3-33a80817454d-2021-04-18 20:41:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IIzwb/VJ77RiR6CCNhw0nN1RW+Cgykjcq7NQayUVtr0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11784" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4d6c6b29-295d-49dd-b036-dacb8dd85d58" + ], + "x-ms-client-request-id": [ + "9087b258-8408-444c-82a0-9f7b26ced6d4" + ], + "x-ms-correlation-request-id": [ + "4d6c6b29-295d-49dd-b036-dacb8dd85d58" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204104Z:4d6c6b29-295d-49dd-b036-dacb8dd85d58" + ], + "Date": [ + "Sun, 18 Apr 2021 20:41:04 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "672f9a93-ba32-434d-aa9a-20ae3aadb2b8" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774874877)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379674877)\\/\",\"ClientRequestId\":\"6f4e74a7-3cc2-42b5-a95d-f1e9133571b1-2021-04-18 20:41:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"R3RQ4+OzztsSgsyQU9m0NMiP/emAoeEioZbs+GFcBO0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11783" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f12150f2-94c5-42c8-85a6-a750ac6787f2" + ], + "x-ms-client-request-id": [ + "672f9a93-ba32-434d-aa9a-20ae3aadb2b8" + ], + "x-ms-correlation-request-id": [ + "f12150f2-94c5-42c8-85a6-a750ac6787f2" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204115Z:f12150f2-94c5-42c8-85a6-a750ac6787f2" + ], + "Date": [ + "Sun, 18 Apr 2021 20:41:15 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f1153948-c367-474d-b6dd-644f2ca0d0c7" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774885333)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379685333)\\/\",\"ClientRequestId\":\"75dad751-e440-4ade-b3aa-ee52cdbb5c85-2021-04-18 20:41:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vDIR3KU0FtLUZn/T0M0GeDEPZednpeQINGaMQBE7yNk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11782" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7b9a5b29-7b20-4657-94fe-ac1eaa617a71" + ], + "x-ms-client-request-id": [ + "f1153948-c367-474d-b6dd-644f2ca0d0c7" + ], + "x-ms-correlation-request-id": [ + "7b9a5b29-7b20-4657-94fe-ac1eaa617a71" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204125Z:7b9a5b29-7b20-4657-94fe-ac1eaa617a71" + ], + "Date": [ + "Sun, 18 Apr 2021 20:41:25 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a1dbc45-f235-4cfa-9ad4-6812c1ae181d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774895747)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379695747)\\/\",\"ClientRequestId\":\"56a70012-aba9-4a80-b3a2-59f223b773fb-2021-04-18 20:41:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BgxpVyTqGHlsrAmRoxSeApxjgjpAbpDeU8doB77Ielc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11781" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "24275294-9a82-496a-888c-0bb2e1aabc76" + ], + "x-ms-client-request-id": [ + "6a1dbc45-f235-4cfa-9ad4-6812c1ae181d" + ], + "x-ms-correlation-request-id": [ + "24275294-9a82-496a-888c-0bb2e1aabc76" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204135Z:24275294-9a82-496a-888c-0bb2e1aabc76" + ], + "Date": [ + "Sun, 18 Apr 2021 20:41:35 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "858870f1-54ed-4f1c-a132-aea4908f3d07" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774906121)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379706121)\\/\",\"ClientRequestId\":\"ce681759-7373-4bae-af42-02201c5f3074-2021-04-18 20:41:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pPmHOONQUu2AVMhHp2zhwA1Ay5L0QErpwxRu/tW0dXY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11780" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "936f916b-bb43-4f98-86b5-03ad47ee1643" + ], + "x-ms-client-request-id": [ + "858870f1-54ed-4f1c-a132-aea4908f3d07" + ], + "x-ms-correlation-request-id": [ + "936f916b-bb43-4f98-86b5-03ad47ee1643" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204146Z:936f916b-bb43-4f98-86b5-03ad47ee1643" + ], + "Date": [ + "Sun, 18 Apr 2021 20:41:45 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ab9e9ae-9220-4f1a-8920-95de8cbc67d6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774916482)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379716482)\\/\",\"ClientRequestId\":\"4a087cb6-7d0f-4f99-b519-47bf693163a5-2021-04-18 20:41:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DIjmqOZaHrl+2YOs4hWojFobRuc/YSWXPHc/o4uKKn4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11779" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "312086ce-4c06-4424-a118-cd79843b6ca9" + ], + "x-ms-client-request-id": [ + "3ab9e9ae-9220-4f1a-8920-95de8cbc67d6" + ], + "x-ms-correlation-request-id": [ + "312086ce-4c06-4424-a118-cd79843b6ca9" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204156Z:312086ce-4c06-4424-a118-cd79843b6ca9" + ], + "Date": [ + "Sun, 18 Apr 2021 20:41:55 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "334c22c1-e552-45c1-9d23-cbab03ca0ae3" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774926845)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379726845)\\/\",\"ClientRequestId\":\"2884b2d6-6872-4493-bb1c-c98591acec13-2021-04-18 20:42:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lLzd7gS2ySfYaT9F0WExPQbcGSVt9MfEA36UC1h8y0Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11778" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7623d9d9-325e-4330-964a-b02f97d2df57" + ], + "x-ms-client-request-id": [ + "334c22c1-e552-45c1-9d23-cbab03ca0ae3" + ], + "x-ms-correlation-request-id": [ + "7623d9d9-325e-4330-964a-b02f97d2df57" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204207Z:7623d9d9-325e-4330-964a-b02f97d2df57" + ], + "Date": [ + "Sun, 18 Apr 2021 20:42:06 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ae6be8a-4277-485e-900f-fb41e8e00c14" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774937206)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379737206)\\/\",\"ClientRequestId\":\"742ad1ac-0192-45a9-a34a-298fb29d4326-2021-04-18 20:42:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Yrq43HO4gvq0Gwbv2e1aBBNv4fJJ1Pyo+978a0vaf1E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11777" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6a42af4c-ac2f-4b17-9858-983063fee05d" + ], + "x-ms-client-request-id": [ + "5ae6be8a-4277-485e-900f-fb41e8e00c14" + ], + "x-ms-correlation-request-id": [ + "6a42af4c-ac2f-4b17-9858-983063fee05d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204217Z:6a42af4c-ac2f-4b17-9858-983063fee05d" + ], + "Date": [ + "Sun, 18 Apr 2021 20:42:16 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ad9aa50b-cfe2-4cd9-8e00-9c185f6350a8" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774947561)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379747561)\\/\",\"ClientRequestId\":\"9c43de86-f373-4768-a186-2f3e13b44f5b-2021-04-18 20:42:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3VVs4xMO39RcuEsCpjUbRJ0Z7kuclx+8mNsK2HyNj2I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11776" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "51538976-fa8e-4b3f-ab50-2858704d2ba5" + ], + "x-ms-client-request-id": [ + "ad9aa50b-cfe2-4cd9-8e00-9c185f6350a8" + ], + "x-ms-correlation-request-id": [ + "51538976-fa8e-4b3f-ab50-2858704d2ba5" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204227Z:51538976-fa8e-4b3f-ab50-2858704d2ba5" + ], + "Date": [ + "Sun, 18 Apr 2021 20:42:27 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "daa8e9c3-73cb-4144-8ffa-bf512ac63d56" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774957959)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379757959)\\/\",\"ClientRequestId\":\"e18904e0-953b-4b2d-859d-0cbf493f5d1d-2021-04-18 20:42:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xS14wCrdV5zD7k8gn6L+UrWaPap6ZAHsrHdL0czQmdg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11775" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "349ae0ab-c36e-4170-bbed-35667e41ac79" + ], + "x-ms-client-request-id": [ + "daa8e9c3-73cb-4144-8ffa-bf512ac63d56" + ], + "x-ms-correlation-request-id": [ + "349ae0ab-c36e-4170-bbed-35667e41ac79" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204238Z:349ae0ab-c36e-4170-bbed-35667e41ac79" + ], + "Date": [ + "Sun, 18 Apr 2021 20:42:37 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c225a2e2-0660-45b0-bc59-878b5b634327" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774968322)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379768322)\\/\",\"ClientRequestId\":\"f0100ed2-d98d-46e1-b3d6-4d2d2bf02e82-2021-04-18 20:42:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jEILXwc6nVg4DRByR3bTv88Y7DkYFCSycAuS2YZEvd4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11774" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3b2f8b8b-585d-4a53-8f2b-83efbba9168d" + ], + "x-ms-client-request-id": [ + "c225a2e2-0660-45b0-bc59-878b5b634327" + ], + "x-ms-correlation-request-id": [ + "3b2f8b8b-585d-4a53-8f2b-83efbba9168d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204248Z:3b2f8b8b-585d-4a53-8f2b-83efbba9168d" + ], + "Date": [ + "Sun, 18 Apr 2021 20:42:48 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "41716903-a43f-498d-917f-beebd021d9a1" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774978695)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379778695)\\/\",\"ClientRequestId\":\"c939fc80-a550-40b2-b8c0-1d68498d392d-2021-04-18 20:42:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+zWQMBIf/bIaS2OAB93vRh9YYQXxkLUjn3EyfXhdfOo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11773" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5e489ce9-56d5-44a5-9d4a-526e595f1404" + ], + "x-ms-client-request-id": [ + "41716903-a43f-498d-917f-beebd021d9a1" + ], + "x-ms-correlation-request-id": [ + "5e489ce9-56d5-44a5-9d4a-526e595f1404" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204258Z:5e489ce9-56d5-44a5-9d4a-526e595f1404" + ], + "Date": [ + "Sun, 18 Apr 2021 20:42:58 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04487627-becd-4e1d-ba0d-87c166091fb9" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774989053)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379789053)\\/\",\"ClientRequestId\":\"3d1415b4-081d-4eeb-8853-ac3428a14503-2021-04-18 20:43:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gJx1IFp/Jz5UaslTk3xxDNfjZAE9fKyLNcx/O10pXoE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11772" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f65f12e3-d64f-4410-ac0c-d74252701829" + ], + "x-ms-client-request-id": [ + "04487627-becd-4e1d-ba0d-87c166091fb9" + ], + "x-ms-correlation-request-id": [ + "f65f12e3-d64f-4410-ac0c-d74252701829" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204309Z:f65f12e3-d64f-4410-ac0c-d74252701829" + ], + "Date": [ + "Sun, 18 Apr 2021 20:43:08 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa89c46b-50ae-45d6-bba0-0b0d043b2468" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618774999410)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379799410)\\/\",\"ClientRequestId\":\"d7dbeb74-975f-4b5d-8722-f39b358c792d-2021-04-18 20:43:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EfyOrYIkIElrGLj0EuZ6RBh6EfDi/GAEkkzx6UMG+5Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11771" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "22e42b21-48bb-449d-af5d-18cbd6ace91c" + ], + "x-ms-client-request-id": [ + "fa89c46b-50ae-45d6-bba0-0b0d043b2468" + ], + "x-ms-correlation-request-id": [ + "22e42b21-48bb-449d-af5d-18cbd6ace91c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204319Z:22e42b21-48bb-449d-af5d-18cbd6ace91c" + ], + "Date": [ + "Sun, 18 Apr 2021 20:43:19 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f38556d0-1b97-48c4-8de4-b74c1ad0ef86" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775009790)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379809790)\\/\",\"ClientRequestId\":\"f7376994-457d-4fb0-bcf4-3c2392b15e5b-2021-04-18 20:43:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ln8/YYJ+MwpwsazSUXNo9qgCqwpGyJBCuUp5knzX8q4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11770" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6647a074-a51a-41f3-86fc-74dc5dc2405a" + ], + "x-ms-client-request-id": [ + "f38556d0-1b97-48c4-8de4-b74c1ad0ef86" + ], + "x-ms-correlation-request-id": [ + "6647a074-a51a-41f3-86fc-74dc5dc2405a" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204329Z:6647a074-a51a-41f3-86fc-74dc5dc2405a" + ], + "Date": [ + "Sun, 18 Apr 2021 20:43:29 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "407fc977-572a-4479-8083-99a882a2453a" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775020167)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379820167)\\/\",\"ClientRequestId\":\"d3edcf9d-d94a-4ddc-8bea-8dc2b3ceb0c3-2021-04-18 20:43:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fgZrzKsCy/N4V+x9uyb4Hkx42QsQefyUOc5YSR45LLA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11769" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "655e83da-7692-4f87-a3af-74571c5cea93" + ], + "x-ms-client-request-id": [ + "407fc977-572a-4479-8083-99a882a2453a" + ], + "x-ms-correlation-request-id": [ + "655e83da-7692-4f87-a3af-74571c5cea93" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204340Z:655e83da-7692-4f87-a3af-74571c5cea93" + ], + "Date": [ + "Sun, 18 Apr 2021 20:43:40 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "125dbd13-3acd-4e4a-80a2-d943de36e48a" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775030563)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379830563)\\/\",\"ClientRequestId\":\"cb804298-d02e-43f4-beed-0ca5a37978ab-2021-04-18 20:43:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Y9Dxd6urmus8fdWhjOHWrzvUFt3Kqh8DLfZNCv+lYZs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11768" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4fc50cd6-7d25-4502-91bc-9125c9e25788" + ], + "x-ms-client-request-id": [ + "125dbd13-3acd-4e4a-80a2-d943de36e48a" + ], + "x-ms-correlation-request-id": [ + "4fc50cd6-7d25-4502-91bc-9125c9e25788" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204350Z:4fc50cd6-7d25-4502-91bc-9125c9e25788" + ], + "Date": [ + "Sun, 18 Apr 2021 20:43:49 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16b566da-d4f7-4e55-8998-502de55db655" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775041001)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379841001)\\/\",\"ClientRequestId\":\"eb0a51d6-b713-46f2-bde7-06b544d167f2-2021-04-18 20:44:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GuOeCIvfYlm8ZLTO3ZYMmq0EkO4zKBa4OclEo8VVd3c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11767" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0ac9f439-efe7-43c3-a53c-315d39560b42" + ], + "x-ms-client-request-id": [ + "16b566da-d4f7-4e55-8998-502de55db655" + ], + "x-ms-correlation-request-id": [ + "0ac9f439-efe7-43c3-a53c-315d39560b42" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204401Z:0ac9f439-efe7-43c3-a53c-315d39560b42" + ], + "Date": [ + "Sun, 18 Apr 2021 20:44:01 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6c59784f-b773-4313-bd97-bad1957211f8" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775051368)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379851368)\\/\",\"ClientRequestId\":\"e0c09977-9fcc-4c01-be12-4c14ee130997-2021-04-18 20:44:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ke7MxByK8y4tivbRajLzsBS37y+ufo4qIJhPrURntl8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11766" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "42691431-2fb7-40f2-b46e-ac7ae3fe6dd9" + ], + "x-ms-client-request-id": [ + "6c59784f-b773-4313-bd97-bad1957211f8" + ], + "x-ms-correlation-request-id": [ + "42691431-2fb7-40f2-b46e-ac7ae3fe6dd9" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204411Z:42691431-2fb7-40f2-b46e-ac7ae3fe6dd9" + ], + "Date": [ + "Sun, 18 Apr 2021 20:44:10 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b69bbcd-f756-485d-90b1-de1756c2c2b1" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775061718)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379861718)\\/\",\"ClientRequestId\":\"7c7c8195-74ef-43e9-a581-245a34bfd829-2021-04-18 20:44:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zrRFsO372kLjVKiLPrck/UqgXs50TlwihZLLO/j43O8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11765" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b57119ce-ff51-409c-95b9-ff92b7828a8c" + ], + "x-ms-client-request-id": [ + "2b69bbcd-f756-485d-90b1-de1756c2c2b1" + ], + "x-ms-correlation-request-id": [ + "b57119ce-ff51-409c-95b9-ff92b7828a8c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204421Z:b57119ce-ff51-409c-95b9-ff92b7828a8c" + ], + "Date": [ + "Sun, 18 Apr 2021 20:44:21 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "717bcd84-d09c-4748-80d0-15b9263ef946" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775072079)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379872079)\\/\",\"ClientRequestId\":\"8bd421b1-2ac0-4fd0-a449-829a457d91c8-2021-04-18 20:44:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dBIodNAm0bHYKxpBLAwM46h/8a4uLXobIoRw3Oclb/E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11764" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "263e9bd7-7307-4b11-9aa7-4c74b6b530dc" + ], + "x-ms-client-request-id": [ + "717bcd84-d09c-4748-80d0-15b9263ef946" + ], + "x-ms-correlation-request-id": [ + "263e9bd7-7307-4b11-9aa7-4c74b6b530dc" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204432Z:263e9bd7-7307-4b11-9aa7-4c74b6b530dc" + ], + "Date": [ + "Sun, 18 Apr 2021 20:44:31 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "df763bd8-d17a-45a6-86ae-ffa232e77b7e" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775082439)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379882439)\\/\",\"ClientRequestId\":\"1fcd2abd-016c-4410-a6af-c6ac53848da1-2021-04-18 20:44:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CjbKCWndQ4HwEWWiPHz+NzXh3ZUy8Q+KjRyRBAv5RcM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fdd2d99f-b045-4ad8-bc4b-ccaad8f5ca8b" + ], + "x-ms-client-request-id": [ + "df763bd8-d17a-45a6-86ae-ffa232e77b7e" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11763" + ], + "x-ms-correlation-request-id": [ + "fdd2d99f-b045-4ad8-bc4b-ccaad8f5ca8b" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204442Z:fdd2d99f-b045-4ad8-bc4b-ccaad8f5ca8b" + ], + "Date": [ + "Sun, 18 Apr 2021 20:44:41 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4fe20bb9-ff5e-45e0-b0c4-dc179dbabe7e" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775092794)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379892794)\\/\",\"ClientRequestId\":\"70e3f4f7-c248-4848-9479-233a32479726-2021-04-18 20:44:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"l7iZv7OlpEXiapDYPFPxGJ2aoQiAOU/OrMl40olyMqA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11762" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c5687b8c-9963-4f4b-84b7-a97b0eb87e27" + ], + "x-ms-client-request-id": [ + "4fe20bb9-ff5e-45e0-b0c4-dc179dbabe7e" + ], + "x-ms-correlation-request-id": [ + "c5687b8c-9963-4f4b-84b7-a97b0eb87e27" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204453Z:c5687b8c-9963-4f4b-84b7-a97b0eb87e27" + ], + "Date": [ + "Sun, 18 Apr 2021 20:44:52 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "87ae8813-7f01-481c-8dbd-a1a68ce2fe5b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775103397)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379903397)\\/\",\"ClientRequestId\":\"fb2d4b1f-204d-499f-8647-7f960bba7d7e-2021-04-18 20:45:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9RwkYJdhuJN+5ALvxVVPuCdBolez7cpBadzEQvk4+5k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11761" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ecd2c9b9-ce6a-4cfa-9749-69305dc14f5d" + ], + "x-ms-client-request-id": [ + "87ae8813-7f01-481c-8dbd-a1a68ce2fe5b" + ], + "x-ms-correlation-request-id": [ + "ecd2c9b9-ce6a-4cfa-9749-69305dc14f5d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204503Z:ecd2c9b9-ce6a-4cfa-9749-69305dc14f5d" + ], + "Date": [ + "Sun, 18 Apr 2021 20:45:02 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "06049d3b-2280-4940-ae39-99c37df4325c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775113774)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379913774)\\/\",\"ClientRequestId\":\"670eb9a4-2f53-4d46-b03c-61d7fbedafc1-2021-04-18 20:45:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hxho6SWpmNK93LF1yDyOJ1PLpysu63BWZGSrmbEgYLo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11760" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c0854eac-86ef-4a4b-9ee4-5e78140fd9c5" + ], + "x-ms-client-request-id": [ + "06049d3b-2280-4940-ae39-99c37df4325c" + ], + "x-ms-correlation-request-id": [ + "c0854eac-86ef-4a4b-9ee4-5e78140fd9c5" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204514Z:c0854eac-86ef-4a4b-9ee4-5e78140fd9c5" + ], + "Date": [ + "Sun, 18 Apr 2021 20:45:14 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f34feac0-5f47-4884-a027-328ca71aba04" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775124255)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379924255)\\/\",\"ClientRequestId\":\"13509826-416c-483a-942c-bf464dce20a7-2021-04-18 20:45:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+yHmaQfIhcAiVHJCTSG5MV7l8arGfFlNCVudYwfiYCk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11759" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d5931e2f-79ca-4b9e-b7b8-c00781c287b0" + ], + "x-ms-client-request-id": [ + "f34feac0-5f47-4884-a027-328ca71aba04" + ], + "x-ms-correlation-request-id": [ + "d5931e2f-79ca-4b9e-b7b8-c00781c287b0" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204524Z:d5931e2f-79ca-4b9e-b7b8-c00781c287b0" + ], + "Date": [ + "Sun, 18 Apr 2021 20:45:24 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f022f2ed-8d91-40ab-8cac-04453e379358" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775134659)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379934659)\\/\",\"ClientRequestId\":\"d0571f6b-8a6e-42a0-a028-7b5c94ee4696-2021-04-18 20:45:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"P6RmuZEAhHB29JLK+2QZb9kM+Yj+infnA+PgXbDbBuc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11758" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "773d8746-ef3b-455e-bb88-a8d30141ce81" + ], + "x-ms-client-request-id": [ + "f022f2ed-8d91-40ab-8cac-04453e379358" + ], + "x-ms-correlation-request-id": [ + "773d8746-ef3b-455e-bb88-a8d30141ce81" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204534Z:773d8746-ef3b-455e-bb88-a8d30141ce81" + ], + "Date": [ + "Sun, 18 Apr 2021 20:45:34 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a6b3c4e4-8177-4c42-8027-e91c061eb8c4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775145047)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379945047)\\/\",\"ClientRequestId\":\"858d1544-5567-4029-9a01-69d4eab93ddf-2021-04-18 20:45:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0WhnRcFiB9+CckH6nOqvbNze4BHPZZoQDGKjfctXZIA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11757" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fb06ccd2-d369-4fb6-a250-0098c8402c13" + ], + "x-ms-client-request-id": [ + "a6b3c4e4-8177-4c42-8027-e91c061eb8c4" + ], + "x-ms-correlation-request-id": [ + "fb06ccd2-d369-4fb6-a250-0098c8402c13" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204545Z:fb06ccd2-d369-4fb6-a250-0098c8402c13" + ], + "Date": [ + "Sun, 18 Apr 2021 20:45:44 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "07bb2955-04bf-4f15-8b27-f9ee56366dfa" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775155433)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379955433)\\/\",\"ClientRequestId\":\"6fe711e1-8a3d-499c-8ef5-fbc728817db7-2021-04-18 20:45:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NTaki5cp35z23qyumNunimFalvLhPjAnM9tT8a2hTKA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11756" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5f29ce1b-def7-49eb-be2e-7e12c300e6db" + ], + "x-ms-client-request-id": [ + "07bb2955-04bf-4f15-8b27-f9ee56366dfa" + ], + "x-ms-correlation-request-id": [ + "5f29ce1b-def7-49eb-be2e-7e12c300e6db" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204555Z:5f29ce1b-def7-49eb-be2e-7e12c300e6db" + ], + "Date": [ + "Sun, 18 Apr 2021 20:45:54 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9718763-da5d-4c91-9834-08dcd65e3eec" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775165808)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379965808)\\/\",\"ClientRequestId\":\"1f81d5f9-fa9d-4550-8bc5-8951b0f18cfe-2021-04-18 20:46:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Z8SqIZZC1pSILhFMeAI2VyIAcIJk71KQ0GjhZpuR+z0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11755" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ce1b2d08-8682-4370-b1b7-54988e97ebd4" + ], + "x-ms-client-request-id": [ + "e9718763-da5d-4c91-9834-08dcd65e3eec" + ], + "x-ms-correlation-request-id": [ + "ce1b2d08-8682-4370-b1b7-54988e97ebd4" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204606Z:ce1b2d08-8682-4370-b1b7-54988e97ebd4" + ], + "Date": [ + "Sun, 18 Apr 2021 20:46:05 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ed748429-c1d7-4da9-a32e-3d28f9600b86" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775176223)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379976223)\\/\",\"ClientRequestId\":\"fe405c41-b286-449a-8103-c893d348e128-2021-04-18 20:46:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"I6v7fWstnbVKnPQZrD5bi06P3hAEz5zWwxRVfp1YNCU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11754" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "8e2aea2e-52d7-4fbd-b712-6feb16eeab05" + ], + "x-ms-client-request-id": [ + "ed748429-c1d7-4da9-a32e-3d28f9600b86" + ], + "x-ms-correlation-request-id": [ + "8e2aea2e-52d7-4fbd-b712-6feb16eeab05" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204616Z:8e2aea2e-52d7-4fbd-b712-6feb16eeab05" + ], + "Date": [ + "Sun, 18 Apr 2021 20:46:16 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31c3ff3e-df2f-459c-92d0-6ba6b0a42880" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775186613)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379986613)\\/\",\"ClientRequestId\":\"b4b2b141-72b6-4551-a105-e2ac474d850a-2021-04-18 20:46:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eqY4r51lttASczgNcvZYAudn5neIjKnTQf/dgx3YoGk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11753" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ef416d91-2a59-4d4c-8b27-3a80bc209041" + ], + "x-ms-client-request-id": [ + "31c3ff3e-df2f-459c-92d0-6ba6b0a42880" + ], + "x-ms-correlation-request-id": [ + "ef416d91-2a59-4d4c-8b27-3a80bc209041" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204626Z:ef416d91-2a59-4d4c-8b27-3a80bc209041" + ], + "Date": [ + "Sun, 18 Apr 2021 20:46:26 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5d439e0b-395f-414d-b906-b2294d87b34f" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775197013)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619379997013)\\/\",\"ClientRequestId\":\"e60ccc13-8b2d-4ec6-ad63-6959abdbf9ae-2021-04-18 20:46:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"M45nfa0cp06EKjFUZobnUeWxYDyRL7lALZc7q5gqpNQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11752" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "42ec647d-48b8-4f9f-a135-1a4a656122af" + ], + "x-ms-client-request-id": [ + "5d439e0b-395f-414d-b906-b2294d87b34f" + ], + "x-ms-correlation-request-id": [ + "42ec647d-48b8-4f9f-a135-1a4a656122af" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204637Z:42ec647d-48b8-4f9f-a135-1a4a656122af" + ], + "Date": [ + "Sun, 18 Apr 2021 20:46:36 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1916383b-b6e8-49f3-8c3c-70fde004e79b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775207395)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380007395)\\/\",\"ClientRequestId\":\"ce3d3773-17ea-4949-8082-545f497e9853-2021-04-18 20:46:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oIz2X4TfRCkI/f+Fl6LNzJB2iypKkIjrwAG0I3Kmep0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11751" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "535e3e28-2cef-41ac-9773-be77e0bad33c" + ], + "x-ms-client-request-id": [ + "1916383b-b6e8-49f3-8c3c-70fde004e79b" + ], + "x-ms-correlation-request-id": [ + "535e3e28-2cef-41ac-9773-be77e0bad33c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204647Z:535e3e28-2cef-41ac-9773-be77e0bad33c" + ], + "Date": [ + "Sun, 18 Apr 2021 20:46:47 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8ab8d57c-aa17-4a3d-bc40-e983fe71b893" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775217769)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380017769)\\/\",\"ClientRequestId\":\"b15f87ab-28c8-4ea5-b4fd-ac57eade7967-2021-04-18 20:46:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7nrQMWxG+lhj29CoZCIUbRGS+G6QQIChqqtRwHyZl1g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11750" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f322cca1-108b-444b-bf0f-315c7755f4ef" + ], + "x-ms-client-request-id": [ + "8ab8d57c-aa17-4a3d-bc40-e983fe71b893" + ], + "x-ms-correlation-request-id": [ + "f322cca1-108b-444b-bf0f-315c7755f4ef" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204657Z:f322cca1-108b-444b-bf0f-315c7755f4ef" + ], + "Date": [ + "Sun, 18 Apr 2021 20:46:57 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "49570ac3-f458-475b-8119-bf583f5e0da5" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775228139)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380028139)\\/\",\"ClientRequestId\":\"5b999d51-71c1-4b8e-bb1f-4574997c66af-2021-04-18 20:47:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"W3DwOsl+DjSjapJMJ//wUayuKgUL3n27z+zgebqUUVU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11749" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "173e5ae8-983c-4089-9a82-e61eabaecc8c" + ], + "x-ms-client-request-id": [ + "49570ac3-f458-475b-8119-bf583f5e0da5" + ], + "x-ms-correlation-request-id": [ + "173e5ae8-983c-4089-9a82-e61eabaecc8c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204708Z:173e5ae8-983c-4089-9a82-e61eabaecc8c" + ], + "Date": [ + "Sun, 18 Apr 2021 20:47:07 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69f323a8-a3ca-4c32-92c9-790c9041179f" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775238515)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380038515)\\/\",\"ClientRequestId\":\"0a26c43b-fc71-45d7-893b-dc9a5b4339b1-2021-04-18 20:47:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TqUx6isqK8S3ZufVl96A3dE+KBFSD+F2ofZIlhl5M7g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11748" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6d28851c-8329-41be-8fd3-4c8a76124bc9" + ], + "x-ms-client-request-id": [ + "69f323a8-a3ca-4c32-92c9-790c9041179f" + ], + "x-ms-correlation-request-id": [ + "6d28851c-8329-41be-8fd3-4c8a76124bc9" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204718Z:6d28851c-8329-41be-8fd3-4c8a76124bc9" + ], + "Date": [ + "Sun, 18 Apr 2021 20:47:18 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ecd3b1f2-7fbf-4281-a978-67a00e06f159" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775248899)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380048899)\\/\",\"ClientRequestId\":\"d5642511-72a2-4884-bfec-2e2d66cd9538-2021-04-18 20:47:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2OGsZfmWrDeWJKCvfr0v/p1ZTXQPkgFQIlhyrcPTGnU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11747" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "28263e23-2404-4325-b481-6febdcbadbb2" + ], + "x-ms-client-request-id": [ + "ecd3b1f2-7fbf-4281-a978-67a00e06f159" + ], + "x-ms-correlation-request-id": [ + "28263e23-2404-4325-b481-6febdcbadbb2" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204729Z:28263e23-2404-4325-b481-6febdcbadbb2" + ], + "Date": [ + "Sun, 18 Apr 2021 20:47:28 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5edafb14-3f2a-4a51-8967-bccd1c6998be" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775259296)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380059296)\\/\",\"ClientRequestId\":\"16729696-9beb-428d-ab0b-2f382d1c9546-2021-04-18 20:47:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Wgc42Y9g89tPDz6M4stP6+8PkmbCi7PS0u3Vy8VS1Kc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11746" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "0174d2de-fa34-444e-ab46-35f371ac78e2" + ], + "x-ms-client-request-id": [ + "5edafb14-3f2a-4a51-8967-bccd1c6998be" + ], + "x-ms-correlation-request-id": [ + "0174d2de-fa34-444e-ab46-35f371ac78e2" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204739Z:0174d2de-fa34-444e-ab46-35f371ac78e2" + ], + "Date": [ + "Sun, 18 Apr 2021 20:47:39 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fe93ed65-086f-4e78-b3b8-e32adc7ad467" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775269680)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380069680)\\/\",\"ClientRequestId\":\"857e0e7b-cd8a-450a-9702-53e16a8405f2-2021-04-18 20:47:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FgqkqOw1+OoSMw7MKufzVag2c/H4U4wSPrmiR71dcJ0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11745" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "56770816-1606-4ae6-9763-0f761de1ce3c" + ], + "x-ms-client-request-id": [ + "fe93ed65-086f-4e78-b3b8-e32adc7ad467" + ], + "x-ms-correlation-request-id": [ + "56770816-1606-4ae6-9763-0f761de1ce3c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204749Z:56770816-1606-4ae6-9763-0f761de1ce3c" + ], + "Date": [ + "Sun, 18 Apr 2021 20:47:49 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fd6546fa-183c-485d-b949-1e610eeb02df" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775280094)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380080094)\\/\",\"ClientRequestId\":\"2b62bb16-6a11-47cb-bf66-42ef4477a9fe-2021-04-18 20:48:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"l4+0+NqPEoETIUPwOqr3p7AOMk1pPKl1NdnDtqxmRZU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11744" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e71db4a0-700f-4650-9edc-e317b5aab605" + ], + "x-ms-client-request-id": [ + "fd6546fa-183c-485d-b949-1e610eeb02df" + ], + "x-ms-correlation-request-id": [ + "e71db4a0-700f-4650-9edc-e317b5aab605" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204800Z:e71db4a0-700f-4650-9edc-e317b5aab605" + ], + "Date": [ + "Sun, 18 Apr 2021 20:47:59 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27bb1f51-dbd9-4dbf-8f3d-94949d71b03a" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775290475)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380090475)\\/\",\"ClientRequestId\":\"a274a46d-58e0-43fe-bedd-b77ab5ea990c-2021-04-18 20:48:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"neLK165B6vkuEeqnzi38u74JBYvcwqOZGRHta7D2xcw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11743" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b758dda7-5f30-45d4-a955-75a5a23ca05c" + ], + "x-ms-client-request-id": [ + "27bb1f51-dbd9-4dbf-8f3d-94949d71b03a" + ], + "x-ms-correlation-request-id": [ + "b758dda7-5f30-45d4-a955-75a5a23ca05c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204810Z:b758dda7-5f30-45d4-a955-75a5a23ca05c" + ], + "Date": [ + "Sun, 18 Apr 2021 20:48:10 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8b884eb5-9333-4e8b-a0b3-d4eadd7b18d9" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775300866)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380100866)\\/\",\"ClientRequestId\":\"a577280d-b596-49e9-bbeb-6b75698d6eb7-2021-04-18 20:48:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eZZUskImh6ICsDWBjGxYk54E1m332i7SyS8ZCvsx1ts=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11742" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "33e859e8-8ae0-4292-913a-db03cc5ee7d2" + ], + "x-ms-client-request-id": [ + "8b884eb5-9333-4e8b-a0b3-d4eadd7b18d9" + ], + "x-ms-correlation-request-id": [ + "33e859e8-8ae0-4292-913a-db03cc5ee7d2" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204821Z:33e859e8-8ae0-4292-913a-db03cc5ee7d2" + ], + "Date": [ + "Sun, 18 Apr 2021 20:48:21 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8ebc5582-2b3b-4f1c-aa72-a5992ba6d9b9" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775311249)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380111249)\\/\",\"ClientRequestId\":\"c07dc07b-226a-47af-ac5f-b222e2fe349e-2021-04-18 20:48:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZDe944/UgyCqWZY1v6rJSsR6hONNsiVZLvd1Hkqrpb4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11741" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "81ba5863-b86a-4f30-ac84-0fc25bf581a3" + ], + "x-ms-client-request-id": [ + "8ebc5582-2b3b-4f1c-aa72-a5992ba6d9b9" + ], + "x-ms-correlation-request-id": [ + "81ba5863-b86a-4f30-ac84-0fc25bf581a3" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204831Z:81ba5863-b86a-4f30-ac84-0fc25bf581a3" + ], + "Date": [ + "Sun, 18 Apr 2021 20:48:31 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8e8373c-3663-4177-ad8b-12630514ddbe" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775321619)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380121619)\\/\",\"ClientRequestId\":\"9d20f82c-fc97-4413-bea7-23bc0f709eca-2021-04-18 20:48:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LL2px81mI1PZXNTArtSlkQxlQ+uH/rVHqicJAmztEwc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11740" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e1aaa9ce-0721-41d7-b990-10f845a80191" + ], + "x-ms-client-request-id": [ + "f8e8373c-3663-4177-ad8b-12630514ddbe" + ], + "x-ms-correlation-request-id": [ + "e1aaa9ce-0721-41d7-b990-10f845a80191" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204841Z:e1aaa9ce-0721-41d7-b990-10f845a80191" + ], + "Date": [ + "Sun, 18 Apr 2021 20:48:41 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c760a928-db31-4bcc-b8eb-d79248ff6162" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775332000)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380132000)\\/\",\"ClientRequestId\":\"04783e9b-a9c7-4575-9c6d-f20a282b01ee-2021-04-18 20:48:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MJlEE6N5bFoVZFnKq68UY9rVird6ObFwjo3UfvQz99c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11739" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "02fdcd9b-e1ef-4dfb-8e89-446f9af4a07a" + ], + "x-ms-client-request-id": [ + "c760a928-db31-4bcc-b8eb-d79248ff6162" + ], + "x-ms-correlation-request-id": [ + "02fdcd9b-e1ef-4dfb-8e89-446f9af4a07a" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204852Z:02fdcd9b-e1ef-4dfb-8e89-446f9af4a07a" + ], + "Date": [ + "Sun, 18 Apr 2021 20:48:51 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fbf6cee3-2f89-46c2-b6eb-d666a40635b1" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775342385)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380142385)\\/\",\"ClientRequestId\":\"fa3b85b0-d73c-4b2c-88d7-4f9d1025c2fb-2021-04-18 20:49:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GfylbKSJ7G1iB1WaR13F6TvTzmSLDHCBhBhYYYMSLgc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "00e95e8b-1b54-43b6-b4c7-c8ed0a796663" + ], + "x-ms-client-request-id": [ + "fbf6cee3-2f89-46c2-b6eb-d666a40635b1" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11738" + ], + "x-ms-correlation-request-id": [ + "00e95e8b-1b54-43b6-b4c7-c8ed0a796663" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204902Z:00e95e8b-1b54-43b6-b4c7-c8ed0a796663" + ], + "Date": [ + "Sun, 18 Apr 2021 20:49:02 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "487db3da-d326-4f06-8d93-aebb3a9c685f" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775352755)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380152755)\\/\",\"ClientRequestId\":\"cbcdbe28-0325-4724-9e24-14a1beae1dd4-2021-04-18 20:49:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ozGQcnxRKCD89JTAo1jwg54TIQ7jNHI7Mht8VSLHe20=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11737" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "89db8757-4ae6-4467-a5fc-3b22a98145b3" + ], + "x-ms-client-request-id": [ + "487db3da-d326-4f06-8d93-aebb3a9c685f" + ], + "x-ms-correlation-request-id": [ + "89db8757-4ae6-4467-a5fc-3b22a98145b3" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204913Z:89db8757-4ae6-4467-a5fc-3b22a98145b3" + ], + "Date": [ + "Sun, 18 Apr 2021 20:49:13 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08df310f-b570-476b-a242-548ad30be680" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775363273)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380163273)\\/\",\"ClientRequestId\":\"6afec5c6-e364-4ffe-92f7-3a5966f2563c-2021-04-18 20:49:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ASCcBpbpXWlJ1kqSqGz2WclzNcpLeieWs2cMvcxexgY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11736" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "248bd6a7-fa77-4ec8-978e-2bc31eb0dab5" + ], + "x-ms-client-request-id": [ + "08df310f-b570-476b-a242-548ad30be680" + ], + "x-ms-correlation-request-id": [ + "248bd6a7-fa77-4ec8-978e-2bc31eb0dab5" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204923Z:248bd6a7-fa77-4ec8-978e-2bc31eb0dab5" + ], + "Date": [ + "Sun, 18 Apr 2021 20:49:23 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "20053ace-939b-45a7-9eac-67d2403e78ea" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775373646)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380173646)\\/\",\"ClientRequestId\":\"dc040134-9a5b-4d77-b664-839ae6916d1b-2021-04-18 20:49:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HkxnCicWAc3Mn9h2hWG/FCyO+XTMcX5yXOBy+SKFOZg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11735" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "1697cc41-5204-4262-8869-bdae8fc5bddd" + ], + "x-ms-client-request-id": [ + "20053ace-939b-45a7-9eac-67d2403e78ea" + ], + "x-ms-correlation-request-id": [ + "1697cc41-5204-4262-8869-bdae8fc5bddd" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204933Z:1697cc41-5204-4262-8869-bdae8fc5bddd" + ], + "Date": [ + "Sun, 18 Apr 2021 20:49:33 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27b57701-a196-424e-bb34-2cf2578b3d7a" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775384040)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380184040)\\/\",\"ClientRequestId\":\"ec42ec4e-5865-4336-9b07-40d124ab680c-2021-04-18 20:49:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"df12NKsbkytVyOWhp6PeAR65xrhv9GVkEJkioTH9lwg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11734" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e2ad5dc8-80d1-4829-acd8-5f15bf5836b5" + ], + "x-ms-client-request-id": [ + "27b57701-a196-424e-bb34-2cf2578b3d7a" + ], + "x-ms-correlation-request-id": [ + "e2ad5dc8-80d1-4829-acd8-5f15bf5836b5" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204944Z:e2ad5dc8-80d1-4829-acd8-5f15bf5836b5" + ], + "Date": [ + "Sun, 18 Apr 2021 20:49:43 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "366294b8-c64a-41c0-a97a-474bcc9ed937" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775394427)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380194427)\\/\",\"ClientRequestId\":\"0bdd85e4-4a0d-4879-948e-083e1e89da9d-2021-04-18 20:49:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0s3JPiNg7x2MaaHkG1UtobNEce+JHhBn2Yh7tEygbNI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11733" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6126d47f-a52b-4985-af31-dfe43a88274d" + ], + "x-ms-client-request-id": [ + "366294b8-c64a-41c0-a97a-474bcc9ed937" + ], + "x-ms-correlation-request-id": [ + "6126d47f-a52b-4985-af31-dfe43a88274d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T204954Z:6126d47f-a52b-4985-af31-dfe43a88274d" + ], + "Date": [ + "Sun, 18 Apr 2021 20:49:54 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "85a08b4e-0507-4fe3-89f5-29e1f6a358ed" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775404805)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380204805)\\/\",\"ClientRequestId\":\"082b0f89-f022-4716-9e2e-4e73e0adff1b-2021-04-18 20:50:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sMLR2ezRIdJlVmTWkpPXw98s8aCCgKIYQsmdIEHCdKg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11732" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "880b7ad2-82de-4c68-a3a1-d60c375e018c" + ], + "x-ms-client-request-id": [ + "85a08b4e-0507-4fe3-89f5-29e1f6a358ed" + ], + "x-ms-correlation-request-id": [ + "880b7ad2-82de-4c68-a3a1-d60c375e018c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205005Z:880b7ad2-82de-4c68-a3a1-d60c375e018c" + ], + "Date": [ + "Sun, 18 Apr 2021 20:50:04 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63dcf95b-8dca-4752-9160-c7d8085a21b5" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775415213)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380215213)\\/\",\"ClientRequestId\":\"0610c794-d050-4f26-b8bf-5b1cbbf84cde-2021-04-18 20:50:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OIY+0MgmuoBlfJPzqjGymywkyLVMdV0Co5vlqtcfmbc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11731" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "05d6b607-9176-49cf-9e1d-89dace913ec9" + ], + "x-ms-client-request-id": [ + "63dcf95b-8dca-4752-9160-c7d8085a21b5" + ], + "x-ms-correlation-request-id": [ + "05d6b607-9176-49cf-9e1d-89dace913ec9" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205015Z:05d6b607-9176-49cf-9e1d-89dace913ec9" + ], + "Date": [ + "Sun, 18 Apr 2021 20:50:15 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aac2d4bb-a839-4711-a9d2-55ca74900f38" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775425623)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380225623)\\/\",\"ClientRequestId\":\"1797049e-b18a-44d9-8acf-eaf774fcd9e9-2021-04-18 20:50:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6CvdbDEW87qwl4OnoVtkvdgPaDK90zETEHzo0bcFOg0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11730" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "a4d42d4d-cc54-46dd-a300-fafd14b2e629" + ], + "x-ms-client-request-id": [ + "aac2d4bb-a839-4711-a9d2-55ca74900f38" + ], + "x-ms-correlation-request-id": [ + "a4d42d4d-cc54-46dd-a300-fafd14b2e629" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205025Z:a4d42d4d-cc54-46dd-a300-fafd14b2e629" + ], + "Date": [ + "Sun, 18 Apr 2021 20:50:25 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2ac14e3-fcb1-48b3-9fa3-ab2ef95805ac" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775436008)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380236008)\\/\",\"ClientRequestId\":\"0b904fdf-aa5f-4a96-9e4c-7798abf46dc1-2021-04-18 20:50:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ArLEHRdMmL9J2esAlExCDgRrmVdiUkMbveTnQoBcSP8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11729" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5e1b8902-fa3e-4295-baf8-718ed38bb361" + ], + "x-ms-client-request-id": [ + "f2ac14e3-fcb1-48b3-9fa3-ab2ef95805ac" + ], + "x-ms-correlation-request-id": [ + "5e1b8902-fa3e-4295-baf8-718ed38bb361" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205036Z:5e1b8902-fa3e-4295-baf8-718ed38bb361" + ], + "Date": [ + "Sun, 18 Apr 2021 20:50:35 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "80e66665-4ef0-4bbe-a70c-d53d23a59aa3" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775446369)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380246369)\\/\",\"ClientRequestId\":\"cd34029c-294b-4213-af26-40f2d7ca8cb7-2021-04-18 20:50:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ckBA0geO/sXLZszXckYqGa0EI49YfcL92//3ptAz5mk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11728" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "199071c7-b013-4043-83e9-51dfff106e36" + ], + "x-ms-client-request-id": [ + "80e66665-4ef0-4bbe-a70c-d53d23a59aa3" + ], + "x-ms-correlation-request-id": [ + "199071c7-b013-4043-83e9-51dfff106e36" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205046Z:199071c7-b013-4043-83e9-51dfff106e36" + ], + "Date": [ + "Sun, 18 Apr 2021 20:50:46 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2ba71997-a692-4bd3-bfaf-da50abe5f51c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775456769)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380256769)\\/\",\"ClientRequestId\":\"d5aa2a52-a50e-40f6-9a3b-5fa7a81ac874-2021-04-18 20:50:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ODSvTv4x0gOMD9cgtY7IWIHsjtAuJ9s9Il6csOffyG8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11727" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "27d4867d-8377-4af2-bfd0-85efeec32fbf" + ], + "x-ms-client-request-id": [ + "2ba71997-a692-4bd3-bfaf-da50abe5f51c" + ], + "x-ms-correlation-request-id": [ + "27d4867d-8377-4af2-bfd0-85efeec32fbf" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205057Z:27d4867d-8377-4af2-bfd0-85efeec32fbf" + ], + "Date": [ + "Sun, 18 Apr 2021 20:50:57 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d676d53-65fc-4166-85bf-3e85da00ab23" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775467243)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380267243)\\/\",\"ClientRequestId\":\"be6d17f2-e154-4524-bfc3-592a54592c8e-2021-04-18 20:51:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UCG51SmOr9jpw0VB1a5Ud6RoBw+cwiiKWSnnMPIYo5E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11726" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2c154c8b-c69b-4514-9e40-3e0a325de0ad" + ], + "x-ms-client-request-id": [ + "7d676d53-65fc-4166-85bf-3e85da00ab23" + ], + "x-ms-correlation-request-id": [ + "2c154c8b-c69b-4514-9e40-3e0a325de0ad" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205107Z:2c154c8b-c69b-4514-9e40-3e0a325de0ad" + ], + "Date": [ + "Sun, 18 Apr 2021 20:51:06 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a6f7ae1-1e4d-4cb7-92cb-b33f5a4a5673" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775477627)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380277627)\\/\",\"ClientRequestId\":\"913779f6-4919-4992-a32a-daa165d940c2-2021-04-18 20:51:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xcIgsEfMiBcs48w2enZVOnaSfu7FdRe8t5WWNdQ+ZJE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11725" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "b2560e59-c3b2-4c87-98c5-dc25de833048" + ], + "x-ms-client-request-id": [ + "8a6f7ae1-1e4d-4cb7-92cb-b33f5a4a5673" + ], + "x-ms-correlation-request-id": [ + "b2560e59-c3b2-4c87-98c5-dc25de833048" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205117Z:b2560e59-c3b2-4c87-98c5-dc25de833048" + ], + "Date": [ + "Sun, 18 Apr 2021 20:51:17 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f327d57e-2365-4ccb-abe7-45ab2bc16f06" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775488049)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380288049)\\/\",\"ClientRequestId\":\"4ca3e632-60f8-42e1-b938-0c9660da6d5f-2021-04-18 20:51:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DHv7peKi5YzWr+93tfJ0taZ1QhT/t3a4sJqbhnAHWmc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11724" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e7321fce-ecc2-4644-8f44-7af6e16048bb" + ], + "x-ms-client-request-id": [ + "f327d57e-2365-4ccb-abe7-45ab2bc16f06" + ], + "x-ms-correlation-request-id": [ + "e7321fce-ecc2-4644-8f44-7af6e16048bb" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205128Z:e7321fce-ecc2-4644-8f44-7af6e16048bb" + ], + "Date": [ + "Sun, 18 Apr 2021 20:51:28 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "59a75f19-0495-4278-9c59-53bf1073f410" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775498414)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380298414)\\/\",\"ClientRequestId\":\"966504ba-a99a-492b-aca7-f8221ec94015-2021-04-18 20:51:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"p7+8pYVUmOseg8aTkxoerx3clnzXcEyXBigZQ9HGCTo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11723" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "df6a9540-cfa2-4f30-acc2-d839b6b393d4" + ], + "x-ms-client-request-id": [ + "59a75f19-0495-4278-9c59-53bf1073f410" + ], + "x-ms-correlation-request-id": [ + "df6a9540-cfa2-4f30-acc2-d839b6b393d4" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205138Z:df6a9540-cfa2-4f30-acc2-d839b6b393d4" + ], + "Date": [ + "Sun, 18 Apr 2021 20:51:38 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be39f537-39f4-4dcf-a08a-7bb460fdd9d7" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775508782)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380308782)\\/\",\"ClientRequestId\":\"1c3edf18-0c3e-47e0-b295-32ed38d1c9ba-2021-04-18 20:51:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"B13E0Coezpe5M8IeQd4j+22p+1eDDWhLya5Q8SkQiR0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11722" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "218d35ac-0254-4b60-a8d2-a9965367584a" + ], + "x-ms-client-request-id": [ + "be39f537-39f4-4dcf-a08a-7bb460fdd9d7" + ], + "x-ms-correlation-request-id": [ + "218d35ac-0254-4b60-a8d2-a9965367584a" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205148Z:218d35ac-0254-4b60-a8d2-a9965367584a" + ], + "Date": [ + "Sun, 18 Apr 2021 20:51:48 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "35c6f9cc-2e37-4f20-88b5-972e19438d09" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775519160)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380319160)\\/\",\"ClientRequestId\":\"fcd466a3-07d3-494c-bb5b-36fbc528f365-2021-04-18 20:51:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FePBu9z5eBnskvyy6yxr7xYXTxRwLcuPy5Nc73zGny8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11721" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fec721a7-2371-4139-a762-b6c89f345b23" + ], + "x-ms-client-request-id": [ + "35c6f9cc-2e37-4f20-88b5-972e19438d09" + ], + "x-ms-correlation-request-id": [ + "fec721a7-2371-4139-a762-b6c89f345b23" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205159Z:fec721a7-2371-4139-a762-b6c89f345b23" + ], + "Date": [ + "Sun, 18 Apr 2021 20:51:59 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c303dbbe-00eb-4523-9c9f-9059ccddfcae" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775529526)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380329526)\\/\",\"ClientRequestId\":\"2207f14b-5f2a-4c30-ad6e-5bdd1297b6dd-2021-04-18 20:52:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"od7Oa6Cd3Yx7htVfbbLDEHdlBjiBDk/BzkUWI/5tnQg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11720" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "648fc723-7be3-482c-a0a8-467ba8f3eae3" + ], + "x-ms-client-request-id": [ + "c303dbbe-00eb-4523-9c9f-9059ccddfcae" + ], + "x-ms-correlation-request-id": [ + "648fc723-7be3-482c-a0a8-467ba8f3eae3" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205209Z:648fc723-7be3-482c-a0a8-467ba8f3eae3" + ], + "Date": [ + "Sun, 18 Apr 2021 20:52:09 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1dfe048-bb6b-4b51-9554-b5543a009728" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775539901)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380339901)\\/\",\"ClientRequestId\":\"bc0c1390-972b-4801-8556-a8c7af7cf4e7-2021-04-18 20:52:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jOz6OpgqGwkh8RAMlCVkf7DFh5fb/r+ODwzd5oBUl9M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11719" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "692f89a8-1cf0-4ca4-955c-730142168ea8" + ], + "x-ms-client-request-id": [ + "a1dfe048-bb6b-4b51-9554-b5543a009728" + ], + "x-ms-correlation-request-id": [ + "692f89a8-1cf0-4ca4-955c-730142168ea8" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205220Z:692f89a8-1cf0-4ca4-955c-730142168ea8" + ], + "Date": [ + "Sun, 18 Apr 2021 20:52:20 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1925dbad-1235-4676-b24a-ba264c0044e0" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775550273)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380350273)\\/\",\"ClientRequestId\":\"8eb483eb-462c-4498-908d-39ebe7d95693-2021-04-18 20:52:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"20SrNJYzfgNT3BJtPuFrzQQazfrKcIAikdh2Tg9Cqi4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11718" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "dc6e5af9-ee6f-43ac-ae98-00a9335af245" + ], + "x-ms-client-request-id": [ + "1925dbad-1235-4676-b24a-ba264c0044e0" + ], + "x-ms-correlation-request-id": [ + "dc6e5af9-ee6f-43ac-ae98-00a9335af245" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205230Z:dc6e5af9-ee6f-43ac-ae98-00a9335af245" + ], + "Date": [ + "Sun, 18 Apr 2021 20:52:30 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ba8d96a-9cff-4027-b50d-72dbf4ab7732" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775560652)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380360652)\\/\",\"ClientRequestId\":\"cca2d443-7864-4dd4-98d8-463ce100b405-2021-04-18 20:52:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"e/RzDgQi1MR3CpIiN9l30iprIko1A+B9jU3SNMTQdwo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11717" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ec4256c6-0f59-46cf-82c1-b5b8b5a114fd" + ], + "x-ms-client-request-id": [ + "5ba8d96a-9cff-4027-b50d-72dbf4ab7732" + ], + "x-ms-correlation-request-id": [ + "ec4256c6-0f59-46cf-82c1-b5b8b5a114fd" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205240Z:ec4256c6-0f59-46cf-82c1-b5b8b5a114fd" + ], + "Date": [ + "Sun, 18 Apr 2021 20:52:40 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "110cdd03-9c3b-4f69-bea2-cb3e9be13b34" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775571027)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380371027)\\/\",\"ClientRequestId\":\"8bcbe75e-b72a-40ed-a86b-bb6258070e0e-2021-04-18 20:52:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ttED2smuJ10Y5imljhwpUVqP1g+a91BnoC/2io6DKK0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11716" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "91b4f1a6-e559-43b2-8116-a07a6f182d55" + ], + "x-ms-client-request-id": [ + "110cdd03-9c3b-4f69-bea2-cb3e9be13b34" + ], + "x-ms-correlation-request-id": [ + "91b4f1a6-e559-43b2-8116-a07a6f182d55" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205251Z:91b4f1a6-e559-43b2-8116-a07a6f182d55" + ], + "Date": [ + "Sun, 18 Apr 2021 20:52:50 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63fa8b13-0aaf-4250-bb4a-5dec0a3906ff" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775581424)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380381424)\\/\",\"ClientRequestId\":\"3af6d613-a471-4859-af50-317f90d00663-2021-04-18 20:53:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1RF6yqrsZdT8j56TPWfqo5NCZ7qjH4t0zbRMu4UJzQU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11715" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "88788565-1b0a-4068-b054-ff543fd2803b" + ], + "x-ms-client-request-id": [ + "63fa8b13-0aaf-4250-bb4a-5dec0a3906ff" + ], + "x-ms-correlation-request-id": [ + "88788565-1b0a-4068-b054-ff543fd2803b" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205301Z:88788565-1b0a-4068-b054-ff543fd2803b" + ], + "Date": [ + "Sun, 18 Apr 2021 20:53:00 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a096f3fb-8556-4695-8876-6a32bc65ad8b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775591813)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380391813)\\/\",\"ClientRequestId\":\"946166cd-475b-4182-87be-70f69d99f0fb-2021-04-18 20:53:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"v4DZC32wjau7nTsInrt7YqxeKUcjKrX6h38f7JBGD78=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11714" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "015d03ed-eec6-47b8-86f2-54085cd7dcef" + ], + "x-ms-client-request-id": [ + "a096f3fb-8556-4695-8876-6a32bc65ad8b" + ], + "x-ms-correlation-request-id": [ + "015d03ed-eec6-47b8-86f2-54085cd7dcef" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205312Z:015d03ed-eec6-47b8-86f2-54085cd7dcef" + ], + "Date": [ + "Sun, 18 Apr 2021 20:53:11 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1b776f6-63c9-4b2e-86a9-37265aadf526" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775602169)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380402169)\\/\",\"ClientRequestId\":\"605e4629-e215-4358-b930-1e14ac7546d7-2021-04-18 20:53:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JxPHfg4foIK2tgkUEzPPMmi60JDs3dEyzhVOkvwEgm4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "204bd0da-d52b-47f6-b430-2c91acdce5b5" + ], + "x-ms-client-request-id": [ + "e1b776f6-63c9-4b2e-86a9-37265aadf526" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11713" + ], + "x-ms-correlation-request-id": [ + "204bd0da-d52b-47f6-b430-2c91acdce5b5" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205322Z:204bd0da-d52b-47f6-b430-2c91acdce5b5" + ], + "Date": [ + "Sun, 18 Apr 2021 20:53:21 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0bf01d53-7343-40b2-b8e2-500eadd6dbc9" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775612545)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380412545)\\/\",\"ClientRequestId\":\"52104396-b4a9-4c28-9248-92ea95135490-2021-04-18 20:53:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6YRzRZJ8thBCQnpPGatlCeWyTnx50uykpIgDR6s6lSw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11712" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "26ae4715-1ac3-4a6f-acbc-157bd2dc3774" + ], + "x-ms-client-request-id": [ + "0bf01d53-7343-40b2-b8e2-500eadd6dbc9" + ], + "x-ms-correlation-request-id": [ + "26ae4715-1ac3-4a6f-acbc-157bd2dc3774" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205332Z:26ae4715-1ac3-4a6f-acbc-157bd2dc3774" + ], + "Date": [ + "Sun, 18 Apr 2021 20:53:32 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bfd6dcc8-82f4-45b8-896d-811d61473254" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775623021)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380423021)\\/\",\"ClientRequestId\":\"ba9e0b1d-c4bd-4146-b595-94364a4282da-2021-04-18 20:53:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MAuUXlVsjgn0ayTK4qZ1hI34IMzJFFBo6A/rAs9SZAg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11711" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "97f3a71b-1ff0-43bf-9fa5-b086e03dac97" + ], + "x-ms-client-request-id": [ + "bfd6dcc8-82f4-45b8-896d-811d61473254" + ], + "x-ms-correlation-request-id": [ + "97f3a71b-1ff0-43bf-9fa5-b086e03dac97" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205343Z:97f3a71b-1ff0-43bf-9fa5-b086e03dac97" + ], + "Date": [ + "Sun, 18 Apr 2021 20:53:43 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86d73240-aa70-4dfc-9ebc-7b532c9e7db5" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775633393)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380433393)\\/\",\"ClientRequestId\":\"3607969b-d5ba-40de-bcd1-00ada7f125a9-2021-04-18 20:53:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Z0hCxL5kHEMqDS5PDEgjcxIxpEbYqDw7Lpo3mxyhEw4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11710" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fe2f62a3-d0b3-4eff-ab57-7812e69a0867" + ], + "x-ms-client-request-id": [ + "86d73240-aa70-4dfc-9ebc-7b532c9e7db5" + ], + "x-ms-correlation-request-id": [ + "fe2f62a3-d0b3-4eff-ab57-7812e69a0867" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205353Z:fe2f62a3-d0b3-4eff-ab57-7812e69a0867" + ], + "Date": [ + "Sun, 18 Apr 2021 20:53:52 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e643128-7a49-4514-9fd5-94e51b515611" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775643748)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380443748)\\/\",\"ClientRequestId\":\"243829af-32ab-4062-913c-670fdecf539e-2021-04-18 20:54:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2zkwIom5oB733iNgfG1UECKEOunZ+f+XQqBvccrxKBs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11709" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "f9a6da3e-4848-4c4d-bf0f-a85d3364e411" + ], + "x-ms-client-request-id": [ + "5e643128-7a49-4514-9fd5-94e51b515611" + ], + "x-ms-correlation-request-id": [ + "f9a6da3e-4848-4c4d-bf0f-a85d3364e411" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205403Z:f9a6da3e-4848-4c4d-bf0f-a85d3364e411" + ], + "Date": [ + "Sun, 18 Apr 2021 20:54:03 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d389914-a54e-4b77-bbd0-b12549052103" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775654170)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380454170)\\/\",\"ClientRequestId\":\"aa1f1fd1-33eb-4a9a-8b34-1cf0bce0d3fa-2021-04-18 20:54:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ciK6Vyvw0vAeHNpgx2BCwEsMh5l2PAEg3po1pLuJH7A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11708" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "3cfb7b0c-362c-498d-a5c6-c03c4ac18ab3" + ], + "x-ms-client-request-id": [ + "7d389914-a54e-4b77-bbd0-b12549052103" + ], + "x-ms-correlation-request-id": [ + "3cfb7b0c-362c-498d-a5c6-c03c4ac18ab3" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205414Z:3cfb7b0c-362c-498d-a5c6-c03c4ac18ab3" + ], + "Date": [ + "Sun, 18 Apr 2021 20:54:13 GMT" + ], + "Content-Length": [ + "7511" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "769ccdc9-1056-48c9-8423-c7f279a9cd89" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775664548)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380464548)\\/\",\"ClientRequestId\":\"b4e5d9e1-a7f8-46cc-8960-57cb5249724b-2021-04-18 20:54:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Zw3CSUb0CEDpoUbQfgY1jRdc4Bqrt+kvPfe7pEWKENo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11707" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e2f4102d-6387-4531-8a47-fea86187ab25" + ], + "x-ms-client-request-id": [ + "769ccdc9-1056-48c9-8423-c7f279a9cd89" + ], + "x-ms-correlation-request-id": [ + "e2f4102d-6387-4531-8a47-fea86187ab25" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205424Z:e2f4102d-6387-4531-8a47-fea86187ab25" + ], + "Date": [ + "Sun, 18 Apr 2021 20:54:24 GMT" + ], + "Content-Length": [ + "8291" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5ed0b85e-24a3-46ee-a0e9-623594f08b16\",\r\n \"name\": \"5ed0b85e-24a3-46ee-a0e9-623594f08b16\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:54:18.4484851Z\",\r\n \"endTime\": \"2021-04-18T20:54:19Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6daacb56-3389-4942-bb28-8ac53d8163de" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775674920)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380474920)\\/\",\"ClientRequestId\":\"deed8923-a62e-4c4b-b183-c216fbbb6b9d-2021-04-18 20:54:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"w6cKOKa5Pv/ZBnLSoZdMlU1A4RMCF0JWv0rKX+w51QI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11706" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ecbe9d44-ab24-4fe8-a44a-8e24d8963cb2" + ], + "x-ms-client-request-id": [ + "6daacb56-3389-4942-bb28-8ac53d8163de" + ], + "x-ms-correlation-request-id": [ + "ecbe9d44-ab24-4fe8-a44a-8e24d8963cb2" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205435Z:ecbe9d44-ab24-4fe8-a44a-8e24d8963cb2" + ], + "Date": [ + "Sun, 18 Apr 2021 20:54:34 GMT" + ], + "Content-Length": [ + "8291" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5ed0b85e-24a3-46ee-a0e9-623594f08b16\",\r\n \"name\": \"5ed0b85e-24a3-46ee-a0e9-623594f08b16\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:54:18.4484851Z\",\r\n \"endTime\": \"2021-04-18T20:54:19Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cf1d6aa5-1bda-4d04-8c26-b55f5fc28ed8" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775685367)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380485367)\\/\",\"ClientRequestId\":\"0e43a37b-0547-41dd-aa90-20ed3ae6a5fd-2021-04-18 20:54:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OW9CmG9TqFzjf257BzBMTUjYBYF13jYcNuXArLztwh8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11705" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "60951bad-3a27-4788-b399-c1489ec8632b" + ], + "x-ms-client-request-id": [ + "cf1d6aa5-1bda-4d04-8c26-b55f5fc28ed8" + ], + "x-ms-correlation-request-id": [ + "60951bad-3a27-4788-b399-c1489ec8632b" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205445Z:60951bad-3a27-4788-b399-c1489ec8632b" + ], + "Date": [ + "Sun, 18 Apr 2021 20:54:45 GMT" + ], + "Content-Length": [ + "8291" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5ed0b85e-24a3-46ee-a0e9-623594f08b16\",\r\n \"name\": \"5ed0b85e-24a3-46ee-a0e9-623594f08b16\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:54:18.4484851Z\",\r\n \"endTime\": \"2021-04-18T20:54:19Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8978d67-ee64-46cb-bbaa-b7b529385316" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775695740)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380495740)\\/\",\"ClientRequestId\":\"f7518e1a-6ea6-4a7b-ae7d-6b31fda8528f-2021-04-18 20:54:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DO7nGYrPm7sP8YrBWEsPjSGmXeJCHDoYE30lhnXZV7I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11704" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "26cab7b7-196d-4b92-a18a-90e63d786d62" + ], + "x-ms-client-request-id": [ + "b8978d67-ee64-46cb-bbaa-b7b529385316" + ], + "x-ms-correlation-request-id": [ + "26cab7b7-196d-4b92-a18a-90e63d786d62" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205455Z:26cab7b7-196d-4b92-a18a-90e63d786d62" + ], + "Date": [ + "Sun, 18 Apr 2021 20:54:55 GMT" + ], + "Content-Length": [ + "8291" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5ed0b85e-24a3-46ee-a0e9-623594f08b16\",\r\n \"name\": \"5ed0b85e-24a3-46ee-a0e9-623594f08b16\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:54:18.4484851Z\",\r\n \"endTime\": \"2021-04-18T20:54:19Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4a732288-b9f3-4af5-bf84-b445278f799d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775706127)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380506127)\\/\",\"ClientRequestId\":\"9cce0752-cc21-4882-9082-b71dba969243-2021-04-18 20:55:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TaRlJ8bBsHaK6KLOwpQAWCEAv+21VCUIlg5I1U4/SX8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11703" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "00fb54d0-1617-4d85-b6dc-fb7800325de1" + ], + "x-ms-client-request-id": [ + "4a732288-b9f3-4af5-bf84-b445278f799d" + ], + "x-ms-correlation-request-id": [ + "00fb54d0-1617-4d85-b6dc-fb7800325de1" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205506Z:00fb54d0-1617-4d85-b6dc-fb7800325de1" + ], + "Date": [ + "Sun, 18 Apr 2021 20:55:06 GMT" + ], + "Content-Length": [ + "8291" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5ed0b85e-24a3-46ee-a0e9-623594f08b16\",\r\n \"name\": \"5ed0b85e-24a3-46ee-a0e9-623594f08b16\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:54:18.4484851Z\",\r\n \"endTime\": \"2021-04-18T20:54:19Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a4f3445d-7003-4408-bcee-09b88e6cbf9c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775716584)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380516584)\\/\",\"ClientRequestId\":\"a3d685e7-a2ff-4119-867b-723d258806bc-2021-04-18 20:55:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"elQ5ar0GgcCbobFPOj6noDTjligQfiHYW60ux91HkxE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11702" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "cda00741-5c9c-4cda-b972-570f07a81f87" + ], + "x-ms-client-request-id": [ + "a4f3445d-7003-4408-bcee-09b88e6cbf9c" + ], + "x-ms-correlation-request-id": [ + "cda00741-5c9c-4cda-b972-570f07a81f87" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205516Z:cda00741-5c9c-4cda-b972-570f07a81f87" + ], + "Date": [ + "Sun, 18 Apr 2021 20:55:15 GMT" + ], + "Content-Length": [ + "8291" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5ed0b85e-24a3-46ee-a0e9-623594f08b16\",\r\n \"name\": \"5ed0b85e-24a3-46ee-a0e9-623594f08b16\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:54:18.4484851Z\",\r\n \"endTime\": \"2021-04-18T20:54:19Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f005881c-271a-4614-89aa-63bc58b4e0fd" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775726965)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380526965)\\/\",\"ClientRequestId\":\"556261d0-db90-4155-bfb1-2b5f45ee84c1-2021-04-18 20:55:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jC/tWIh/FJ1RnSmPNRjwrSUu5GDewUferwTsflClZHI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11701" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "2c8bb104-79cf-48a2-a08e-38895c260d41" + ], + "x-ms-client-request-id": [ + "f005881c-271a-4614-89aa-63bc58b4e0fd" + ], + "x-ms-correlation-request-id": [ + "2c8bb104-79cf-48a2-a08e-38895c260d41" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205527Z:2c8bb104-79cf-48a2-a08e-38895c260d41" + ], + "Date": [ + "Sun, 18 Apr 2021 20:55:27 GMT" + ], + "Content-Length": [ + "9074" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/9aef396c-1f5e-4d08-b514-7f82d1f730d3\",\r\n \"name\": \"9aef396c-1f5e-4d08-b514-7f82d1f730d3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:55:20.9690113Z\",\r\n \"endTime\": \"2021-04-18T20:55:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5ed0b85e-24a3-46ee-a0e9-623594f08b16\",\r\n \"name\": \"5ed0b85e-24a3-46ee-a0e9-623594f08b16\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:54:18.4484851Z\",\r\n \"endTime\": \"2021-04-18T20:54:19Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"name\": \"4e3cc2f0-01b1-4dfe-b53e-d155d4f08f28\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:08:16.4247516Z\",\r\n \"endTime\": \"2021-04-18T20:20:01Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"name\": \"1cda20e1-945c-4ebf-ab6c-d31b6761ddc8\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:07:54.1722789Z\",\r\n \"endTime\": \"2021-04-18T20:07:56Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2arecoverynetwork1228\",\r\n \"targetObjectName\": \"a2arecoverynetwork1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"name\": \"44f8c98f-fd8c-46ec-9c39-99aeac20f83c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:06:10.381434Z\",\r\n \"endTime\": \"2021-04-18T20:07:43Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"name\": \"6234b1aa-7f7e-46b5-b710-0175ecd3ada4\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:05:48.6280488Z\",\r\n \"endTime\": \"2021-04-18T20:05:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm1228\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"name\": \"3dbc4dd0-652a-41d4-a226-4ec204f9a80f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:24.8499934Z\",\r\n \"endTime\": \"2021-04-18T20:05:30Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"name\": \"aa638c32-a668-4bda-8fa3-fcd320ed4cd5\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:22.4467176Z\",\r\n \"endTime\": \"2021-04-18T20:04:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"targetObjectName\": \"TestA2APolicy11228\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"name\": \"69562da7-12c6-4f7c-bb8a-7f3b66bcd7a7\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:20.2177431Z\",\r\n \"endTime\": \"2021-04-18T20:04:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"name\": \"70de6da6-4ae9-4dc0-b67d-af9055a03323\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:04:17.8767299Z\",\r\n \"endTime\": \"2021-04-18T20:04:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"targetObjectName\": \"A2APrimaryContainer1228\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"name\": \"141c2567-1f1d-4e3c-b7f1-341cdc3b0e55\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:02:53.2441014Z\",\r\n \"endTime\": \"2021-04-18T20:04:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"targetObjectName\": \"a2aRecoveryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"name\": \"5a803002-a7dd-4dfe-a18b-b3c36db6c441\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:00:48.1060998Z\",\r\n \"endTime\": \"2021-04-18T20:02:44Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"targetObjectName\": \"a2aPrimaryFabric1228\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/9aef396c-1f5e-4d08-b514-7f82d1f730d3?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy85YWVmMzk2Yy0xZjVlLTRkMDgtYjUxNC03ZjgyZDFmNzMwZDM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0bb8c20f-b1f7-4fce-b9b7-08f9fdb35690" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775727383)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380527383)\\/\",\"ClientRequestId\":\"de396079-364d-4363-93eb-79cd33466c3b-2021-04-18 20:55:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lpSVSxjNO3kHVPuSH27jCWan4LgH4D9zYBkTvkrXDcY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11700" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/9aef396c-1f5e-4d08-b514-7f82d1f730d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "0bb8c20f-b1f7-4fce-b9b7-08f9fdb35690" + ], + "x-ms-correlation-request-id": [ + "bc3f8487-bf81-4521-abef-54eca3dba732" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205527Z:bc3f8487-bf81-4521-abef-54eca3dba732" + ], + "Date": [ + "Sun, 18 Apr 2021 20:55:27 GMT" + ], + "Content-Length": [ + "3132" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/9aef396c-1f5e-4d08-b514-7f82d1f730d3\",\r\n \"name\": \"9aef396c-1f5e-4d08-b514-7f82d1f730d3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"17c9f78e-48d2-4604-9150-5696dafc95e3 ActivityId: 26ef97ed-f4b2-4e27-98df-90ae6c3319de\",\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CompleteInitialReplicationTask\",\r\n \"name\": \"CompleteInitialReplication\",\r\n \"startTime\": \"2021-04-18T20:55:21.4877674Z\",\r\n \"endTime\": \"2021-04-18T20:55:21.7127666Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationPreflightChecksTask\",\r\n \"name\": \"FailWorkflowOnIRFailureTask\",\r\n \"startTime\": \"2021-04-18T20:55:21.7127666Z\",\r\n \"endTime\": \"2021-04-18T20:55:21.8377739Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationTask\",\r\n \"name\": \"ReplicaConfiguration\",\r\n \"startTime\": \"2021-04-18T20:55:21.8377739Z\",\r\n \"endTime\": \"2021-04-18T20:55:24.8728641Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete network and post-replication configuration\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2021-04-18T20:55:24.8728641Z\",\r\n \"endTime\": \"2021-04-18T20:55:25.2478788Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:55:20.9690113Z\",\r\n \"endTime\": \"2021-04-18T20:55:25Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2avm1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228/replicationProtectedItems/a2aVM1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTIyOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMjI4L3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMjI4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bbd90e91-3cc0-4bfe-b72f-2faa34688b70" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775727786)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380527786)\\/\",\"ClientRequestId\":\"5483ae29-3191-41f9-a52f-8391e5573a66-2021-04-18 20:55:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MpwOPj3NVTc/d3t/2SVFHmp4q4VSJ5PE8LCq1p0U1n8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11699" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "bbd90e91-3cc0-4bfe-b72f-2faa34688b70 4/18/2021 8:55:28 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "bbd90e91-3cc0-4bfe-b72f-2faa34688b70" + ], + "x-ms-correlation-request-id": [ + "dd507e94-f8ca-4c37-b720-44b658bed1c7" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205528Z:dd507e94-f8ca-4c37-b720-44b658bed1c7" + ], + "Date": [ + "Sun, 18 Apr 2021 20:55:28 GMT" + ], + "Content-Length": [ + "8434" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228/replicationProtectedItems/a2aVM1228\",\r\n \"name\": \"a2aVM1228\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1228\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationRecoveryServicesProviders/26366e71-c0b3-5406-a4bd-29df1cebc507\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1228\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1228\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1228'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T20:55:25.9254139Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationPolicies/TestA2APolicy11228\",\r\n \"policyFriendlyName\": \"TestA2APolicy11228\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1228/providers/microsoft.compute/virtualmachines/a2avm1228\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"0a4a0f8e-c258-46e4-a343-a593e93641d6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2e1fe18e-a6a8-4d62-bdef-67ef1005f45e\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1228/providers/microsoft.compute/disks/a2avm1228_osdisk_1_d9686671f050480ea3bdd34fc114f507\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Compute/disks/a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Storage/storageAccounts/cache1228\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.302734375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507\",\r\n \"tfoDiskName\": \"a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1228\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1228/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1228\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"77d596ba-8651-5f7a-bdba-4a81fe6c3032\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkInterfaces/a2aVM1228\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/virtualNetworks/a2aVM1228\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1228/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1228\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1228\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1228\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 92,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2021-04-18T20:55:00.4070105Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T20:04:27Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"b64ac47c-b58b-431e-b30f-b92ec265f1d4\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2097,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T20:55:20.0916222Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1228-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-asr\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228/replicationProtectionContainers/A2ARecoveryContainer1228\",\r\n \"eventCorrelationId\": \"4b2ed641-5527-4075-b68e-b3872086cdb1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228/replicationProtectedItems/a2aVM1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTIyOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMjI4L3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMjI4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03eb45c0-979a-43c2-b464-d6ffc8bbb4f4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775728524)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380528524)\\/\",\"ClientRequestId\":\"46295842-af58-4e31-b81b-1eb9e9ab85dc-2021-04-18 20:55:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Okqu1joJHgBbhmyl6nFFe2YGCt1cm36ke0RW7Dbw8Qs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11698" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "03eb45c0-979a-43c2-b464-d6ffc8bbb4f4 4/18/2021 8:55:28 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "03eb45c0-979a-43c2-b464-d6ffc8bbb4f4" + ], + "x-ms-correlation-request-id": [ + "c5fd5a1d-16b6-4416-8403-4d8e7cd457d4" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205528Z:c5fd5a1d-16b6-4416-8403-4d8e7cd457d4" + ], + "Date": [ + "Sun, 18 Apr 2021 20:55:28 GMT" + ], + "Content-Length": [ + "8434" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228/replicationProtectedItems/a2aVM1228\",\r\n \"name\": \"a2aVM1228\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1228\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationRecoveryServicesProviders/26366e71-c0b3-5406-a4bd-29df1cebc507\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1228\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1228\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1228'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T20:55:25.9254139Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationPolicies/TestA2APolicy11228\",\r\n \"policyFriendlyName\": \"TestA2APolicy11228\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1228/providers/microsoft.compute/virtualmachines/a2avm1228\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"0a4a0f8e-c258-46e4-a343-a593e93641d6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2e1fe18e-a6a8-4d62-bdef-67ef1005f45e\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1228/providers/microsoft.compute/disks/a2avm1228_osdisk_1_d9686671f050480ea3bdd34fc114f507\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Compute/disks/a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Storage/storageAccounts/cache1228\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.302734375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507\",\r\n \"tfoDiskName\": \"a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1228\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1228/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1228\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"77d596ba-8651-5f7a-bdba-4a81fe6c3032\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkInterfaces/a2aVM1228\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/virtualNetworks/a2aVM1228\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1228/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1228\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1228\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1228\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 92,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2021-04-18T20:55:00.4070105Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T20:04:27Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"b64ac47c-b58b-431e-b30f-b92ec265f1d4\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2097,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T20:55:20.0916222Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1228-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Compute/virtualMachineScaleSets/vmss-asr\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228/replicationProtectionContainers/A2ARecoveryContainer1228\",\r\n \"eventCorrelationId\": \"4b2ed641-5527-4075-b68e-b3872086cdb1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228/replicationProtectedItems/a2aVM1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTIyOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMjI4L3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMjI4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d011b4d-4cfb-479b-b98b-cc6fe607059d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775751347)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380551347)\\/\",\"ClientRequestId\":\"593f9dca-687b-40cb-9786-15fa8bf71827-2021-04-18 20:55:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"N4/1LgUrXANWuf4dUEvCijwUS2WujhXX5Z1AeTA/qSc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11694" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "7d011b4d-4cfb-479b-b98b-cc6fe607059d 4/18/2021 8:55:51 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "7d011b4d-4cfb-479b-b98b-cc6fe607059d" + ], + "x-ms-correlation-request-id": [ + "a79ee328-710b-447a-a332-ffdcb4293ade" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205551Z:a79ee328-710b-447a-a332-ffdcb4293ade" + ], + "Date": [ + "Sun, 18 Apr 2021 20:55:51 GMT" + ], + "Content-Length": [ + "8414" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228/replicationProtectedItems/a2aVM1228\",\r\n \"name\": \"a2aVM1228\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM1228\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationRecoveryServicesProviders/26366e71-c0b3-5406-a4bd-29df1cebc507\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"West Central US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer1228\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer1228\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM1228'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T20:55:32.90893Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationPolicies/TestA2APolicy11228\",\r\n \"policyFriendlyName\": \"TestA2APolicy11228\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1228/providers/microsoft.compute/virtualmachines/a2avm1228\",\r\n \"initialPrimaryZone\": \"\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"\",\r\n \"initialRecoveryFabricLocation\": \"westcentralus\",\r\n \"multiVmGroupId\": \"0a4a0f8e-c258-46e4-a343-a593e93641d6\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"2e1fe18e-a6a8-4d62-bdef-67ef1005f45e\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1228/providers/microsoft.compute/disks/a2avm1228_osdisk_1_d9686671f050480ea3bdd34fc114f507\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Compute/disks/a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Storage/storageAccounts/cache1228\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.302734375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507\",\r\n \"tfoDiskName\": \"a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"westcentralus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM1228\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1228/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1228\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"77d596ba-8651-5f7a-bdba-4a81fe6c3032\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/networkInterfaces/a2aVM1228\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM1228/providers/Microsoft.Network/virtualNetworks/a2aVM1228\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1228/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1228\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM1228\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM1228\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": \"\",\r\n \"recoveryLBBackendAddressPoolIds\": [],\r\n \"tfoSubnetName\": \"\",\r\n \"tfoStaticIPAddress\": \"\",\r\n \"tfoPublicIPAddressId\": \"\",\r\n \"tfoLBBackendAddressPoolIds\": []\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByUser\",\r\n \"recoveryNetworkSecurityGroupId\": \"\",\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": \"\",\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 92,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2021-04-18T20:55:00.4070105Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T20:04:27Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"b64ac47c-b58b-431e-b30f-b92ec265f1d4\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2097,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T20:55:20.0916222Z\",\r\n \"primaryAvailabilityZone\": null,\r\n \"recoveryAvailabilityZone\": null,\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM1228-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1-asr\"\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aRecoveryFabric1228/replicationProtectionContainers/A2ARecoveryContainer1228\",\r\n \"eventCorrelationId\": \"4b2ed641-5527-4075-b68e-b3872086cdb1\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228/replicationProtectedItems/a2aVM1228?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTIyOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMjI4L3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMjI4P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"recoveryAzureVMName\": \"a2aVM1228\",\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg1228/providers/microsoft.network/virtualnetworks/a2arecoverynetwork1228\",\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"77d596ba-8651-5f7a-bdba-4a81fe6c3032\",\r\n \"ipConfigs\": [\r\n {\r\n \"ipConfigName\": \"a2aVM1228\",\r\n \"isPrimary\": true,\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\"\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByDefault\",\r\n \"enableAcceleratedNetworkingOnRecovery\": false\r\n }\r\n ],\r\n \"licenseType\": \"WindowsServer\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"managedDiskUpdateDetails\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm1228/providers/microsoft.compute/disks/a2avm1228_osdisk_1_d9686671f050480ea3bdd34fc114f507\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"failoverDiskName\": \"a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507\",\r\n \"tfoDiskName\": \"a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507-ASRtest\"\r\n }\r\n ],\r\n \"tfoAzureVMName\": \"a2aVM1228-test\",\r\n \"recoveryVirtualMachineScaleSetId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1-asr\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03eb45c0-979a-43c2-b464-d6ffc8bbb4f4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775729043)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380529043)\\/\",\"ClientRequestId\":\"4067e0d6-7aa7-4011-8379-a0c2d62bccda-2021-04-18 20:55:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Wy1y/4EN+9dhpEWIV7P6PQ1ar6vSyfohi2Guq1T1PQU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1618" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228/replicationProtectedItems/a2aVM1228/operationresults/7cd209da-8717-4860-bbd2-e088d3d0e551?api-version=2021-02-10" + ], + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/7cd209da-8717-4860-bbd2-e088d3d0e551", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/7cd209da-8717-4860-bbd2-e088d3d0e551" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationOperationStatus/7cd209da-8717-4860-bbd2-e088d3d0e551?api-version=2021-02-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "03eb45c0-979a-43c2-b464-d6ffc8bbb4f4" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "5f10b140-e985-4073-a614-d7c65315cbd2" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205530Z:5f10b140-e985-4073-a614-d7c65315cbd2" + ], + "Date": [ + "Sun, 18 Apr 2021 20:55:29 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/7cd209da-8717-4860-bbd2-e088d3d0e551?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy83Y2QyMDlkYS04NzE3LTQ4NjAtYmJkMi1lMDg4ZDNkMGU1NTE/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03eb45c0-979a-43c2-b464-d6ffc8bbb4f4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775730172)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380530172)\\/\",\"ClientRequestId\":\"fb8b35a7-392c-4281-b9fd-c0faa2387bf2-2021-04-18 20:55:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wGbjM2tWXiWXrfCtAWmiNMT9WrLDgoLL0ZM7iZsRcCs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11697" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/7cd209da-8717-4860-bbd2-e088d3d0e551" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "03eb45c0-979a-43c2-b464-d6ffc8bbb4f4" + ], + "x-ms-correlation-request-id": [ + "024cfff7-7ec6-489a-a86e-471c2abc3472" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205530Z:024cfff7-7ec6-489a-a86e-471c2abc3472" + ], + "Date": [ + "Sun, 18 Apr 2021 20:55:30 GMT" + ], + "Content-Length": [ + "737" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/7cd209da-8717-4860-bbd2-e088d3d0e551\",\r\n \"name\": \"7cd209da-8717-4860-bbd2-e088d3d0e551\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"03eb45c0-979a-43c2-b464-d6ffc8bbb4f4 ActivityId: 5f10b140-e985-4073-a614-d7c65315cbd2\",\r\n \"scenarioName\": null,\r\n \"friendlyName\": null,\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"allowedActions\": [],\r\n \"targetObjectId\": null,\r\n \"targetObjectName\": null,\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/7cd209da-8717-4860-bbd2-e088d3d0e551?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy83Y2QyMDlkYS04NzE3LTQ4NjAtYmJkMi1lMDg4ZDNkMGU1NTE/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "bf7b6452-664e-45cf-b68e-4e1ba3a8f9e4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775730572)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380530572)\\/\",\"ClientRequestId\":\"657ed289-668e-4b52-a228-fc83a77209e4-2021-04-18 20:55:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"p/Jb1sRjRmS47466i/m3bC7R4czQqh+/eLvO/bL4714=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11696" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/7cd209da-8717-4860-bbd2-e088d3d0e551" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "bf7b6452-664e-45cf-b68e-4e1ba3a8f9e4" + ], + "x-ms-correlation-request-id": [ + "7a85e413-0ef1-4491-a215-255ec9e370d1" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205530Z:7a85e413-0ef1-4491-a215-255ec9e370d1" + ], + "Date": [ + "Sun, 18 Apr 2021 20:55:30 GMT" + ], + "Content-Length": [ + "1884" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/7cd209da-8717-4860-bbd2-e088d3d0e551\",\r\n \"name\": \"7cd209da-8717-4860-bbd2-e088d3d0e551\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"03eb45c0-979a-43c2-b464-d6ffc8bbb4f4 ActivityId: 5f10b140-e985-4073-a614-d7c65315cbd2\",\r\n \"scenarioName\": \"UpdateVmProperties\",\r\n \"friendlyName\": \"Update the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"d4d4b5f3-bd29-455a-a458-cd0cd8537649\",\r\n \"name\": \"UpdateVmPropertiesTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Update the virtual machine properties\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:55:29.7740012Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2aVM1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/7cd209da-8717-4860-bbd2-e088d3d0e551?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy83Y2QyMDlkYS04NzE3LTQ4NjAtYmJkMi1lMDg4ZDNkMGU1NTE/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fc5a5681-e518-4cdd-bcf3-9705b5e7bc43" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775750967)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380550967)\\/\",\"ClientRequestId\":\"d8b34823-e55d-442d-bec3-b7ee68bf6a86-2021-04-18 20:55:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zAqfeBKqZwo+q76PIFPLu5ZVxXgCqAarbPQdIOspctw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11695" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/7cd209da-8717-4860-bbd2-e088d3d0e551" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "fc5a5681-e518-4cdd-bcf3-9705b5e7bc43" + ], + "x-ms-correlation-request-id": [ + "ff9d7a49-9615-4e52-8fc6-2a705454046e" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205551Z:ff9d7a49-9615-4e52-8fc6-2a705454046e" + ], + "Date": [ + "Sun, 18 Apr 2021 20:55:50 GMT" + ], + "Content-Length": [ + "1931" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/7cd209da-8717-4860-bbd2-e088d3d0e551\",\r\n \"name\": \"7cd209da-8717-4860-bbd2-e088d3d0e551\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"03eb45c0-979a-43c2-b464-d6ffc8bbb4f4 ActivityId: 5f10b140-e985-4073-a614-d7c65315cbd2\",\r\n \"scenarioName\": \"UpdateVmProperties\",\r\n \"friendlyName\": \"Update the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"d4d4b5f3-bd29-455a-a458-cd0cd8537649\",\r\n \"name\": \"UpdateVmPropertiesTask\",\r\n \"startTime\": \"2021-04-18T20:55:30.4780486Z\",\r\n \"endTime\": \"2021-04-18T20:55:31.5630781Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Update the virtual machine properties\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:55:29.7740012Z\",\r\n \"endTime\": \"2021-04-18T20:55:31Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2aVM1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2avm1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228/replicationProtectedItems/a2aVM1228/unplannedFailover?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uRmFicmljcy9hMmFQcmltYXJ5RmFicmljMTIyOC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMjI4L3JlcGxpY2F0aW9uUHJvdGVjdGVkSXRlbXMvYTJhVk0xMjI4L3VucGxhbm5lZEZhaWxvdmVyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"failoverDirection\": \"PrimaryToRecovery\",\r\n \"sourceSiteOperations\": \"Required\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c46c8d9c-d063-4a5e-99dc-3f2a70d8b6be" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775751927)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380551927)\\/\",\"ClientRequestId\":\"872f2d7b-4708-43a0-9f49-5de05ff18c22-2021-04-18 20:55:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DeeMgogC2IQcPNDIju97Q07D85fTllGlUAC9XmfnwcQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "186" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationFabrics/a2aPrimaryFabric1228/replicationProtectionContainers/A2APrimaryContainer1228/replicationProtectedItems/a2aVM1228/operationresults/04109741-c1c3-4a90-b752-f715dd4b82e6?api-version=2021-02-10" + ], + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationOperationStatus/04109741-c1c3-4a90-b752-f715dd4b82e6?api-version=2021-02-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c46c8d9c-d063-4a5e-99dc-3f2a70d8b6be" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "18245126-1d4e-4932-ac44-ae97096e529b" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205552Z:18245126-1d4e-4932-ac44-ae97096e529b" + ], + "Date": [ + "Sun, 18 Apr 2021 20:55:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8wNDEwOTc0MS1jMWMzLTRhOTAtYjc1Mi1mNzE1ZGQ0YjgyZTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c46c8d9c-d063-4a5e-99dc-3f2a70d8b6be" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775752811)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380552811)\\/\",\"ClientRequestId\":\"355ae912-19f3-4303-948a-70870c27024f-2021-04-18 20:55:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vL7L+Bi6OfzjtRu5eoJC3GpO609xfOhDcK08Djdw3lI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11693" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c46c8d9c-d063-4a5e-99dc-3f2a70d8b6be" + ], + "x-ms-correlation-request-id": [ + "73c221a3-ee32-45b3-b02c-8811b7417044" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205553Z:73c221a3-ee32-45b3-b02c-8811b7417044" + ], + "Date": [ + "Sun, 18 Apr 2021 20:55:52 GMT" + ], + "Content-Length": [ + "3365" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"name\": \"04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c46c8d9c-d063-4a5e-99dc-3f2a70d8b6be ActivityId: 18245126-1d4e-4932-ac44-ae97096e529b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:55:52.6498739Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:55:52.3897071Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2aVM1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2aVM1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8wNDEwOTc0MS1jMWMzLTRhOTAtYjc1Mi1mNzE1ZGQ0YjgyZTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8989934-6fb3-4205-89ed-3e524b529642" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775753215)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380553215)\\/\",\"ClientRequestId\":\"497c1603-4f08-4192-9917-f94816d94830-2021-04-18 20:55:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cW4YIy1AbEZpRxt0qioySgsOC8M55YjrmOva2/5sjYo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11692" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d8989934-6fb3-4205-89ed-3e524b529642" + ], + "x-ms-correlation-request-id": [ + "8b0b91ee-2010-454e-9f17-471704172d1f" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205553Z:8b0b91ee-2010-454e-9f17-471704172d1f" + ], + "Date": [ + "Sun, 18 Apr 2021 20:55:52 GMT" + ], + "Content-Length": [ + "3365" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"name\": \"04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c46c8d9c-d063-4a5e-99dc-3f2a70d8b6be ActivityId: 18245126-1d4e-4932-ac44-ae97096e529b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:55:52.6498739Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:55:52.3897071Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2aVM1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2aVM1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8wNDEwOTc0MS1jMWMzLTRhOTAtYjc1Mi1mNzE1ZGQ0YjgyZTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "190b5a74-b74e-4ada-ae67-8fb67241244f" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775773622)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380573622)\\/\",\"ClientRequestId\":\"f8ae7321-2659-4921-b1ca-f0817c6dc82e-2021-04-18 20:56:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lfmjG59MSR1E6GmqgTIJK/8PDXLpV3plEFUzCkt/zrc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11691" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "190b5a74-b74e-4ada-ae67-8fb67241244f" + ], + "x-ms-correlation-request-id": [ + "a6496356-97c3-4db0-adc2-7916b6803705" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205613Z:a6496356-97c3-4db0-adc2-7916b6803705" + ], + "Date": [ + "Sun, 18 Apr 2021 20:56:13 GMT" + ], + "Content-Length": [ + "3380" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"name\": \"04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c46c8d9c-d063-4a5e-99dc-3f2a70d8b6be ActivityId: 18245126-1d4e-4932-ac44-ae97096e529b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:56:00.519877Z\",\r\n \"endTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:55:52.3897071Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2aVM1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2aVM1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8wNDEwOTc0MS1jMWMzLTRhOTAtYjc1Mi1mNzE1ZGQ0YjgyZTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8996220-cb5e-4f37-9fcb-83f913e99ac3" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775794022)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380594022)\\/\",\"ClientRequestId\":\"a882a211-afec-4e8d-b077-fcaea8f9478e-2021-04-18 20:56:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"x4I43MQ7d6/dxVqsvwDcYFAG1hfXtyQv0hbkQAy0m7s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11690" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "f8996220-cb5e-4f37-9fcb-83f913e99ac3" + ], + "x-ms-correlation-request-id": [ + "3ba55504-4bf4-482e-9461-711e8d10f906" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205634Z:3ba55504-4bf4-482e-9461-711e8d10f906" + ], + "Date": [ + "Sun, 18 Apr 2021 20:56:34 GMT" + ], + "Content-Length": [ + "3380" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"name\": \"04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c46c8d9c-d063-4a5e-99dc-3f2a70d8b6be ActivityId: 18245126-1d4e-4932-ac44-ae97096e529b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:56:00.519877Z\",\r\n \"endTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:55:52.3897071Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2aVM1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2aVM1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8wNDEwOTc0MS1jMWMzLTRhOTAtYjc1Mi1mNzE1ZGQ0YjgyZTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "916ae97e-084c-479e-a28f-745e86d6c911" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775814479)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380614479)\\/\",\"ClientRequestId\":\"04a29aa4-eadd-4c00-ad89-6a6596af1378-2021-04-18 20:56:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oEuMm+rRH6ftO3vtchDCcJ/cXa+HXvhz1OomUvX6GDQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11689" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "916ae97e-084c-479e-a28f-745e86d6c911" + ], + "x-ms-correlation-request-id": [ + "64373d1d-605f-459b-9c22-d1b29ba7f85f" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205654Z:64373d1d-605f-459b-9c22-d1b29ba7f85f" + ], + "Date": [ + "Sun, 18 Apr 2021 20:56:54 GMT" + ], + "Content-Length": [ + "3380" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"name\": \"04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c46c8d9c-d063-4a5e-99dc-3f2a70d8b6be ActivityId: 18245126-1d4e-4932-ac44-ae97096e529b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:56:00.519877Z\",\r\n \"endTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:55:52.3897071Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2aVM1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2aVM1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8wNDEwOTc0MS1jMWMzLTRhOTAtYjc1Mi1mNzE1ZGQ0YjgyZTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6341a299-7ae9-4b80-afef-56a1574ce1c2" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775834897)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380634897)\\/\",\"ClientRequestId\":\"d5cf9b8f-5dcc-4146-844f-f7441a293cb5-2021-04-18 20:57:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kFYQz2kq7Aq15bY7IQWbh+fhzUoVOHna6Qsj/GM71NQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11688" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "6341a299-7ae9-4b80-afef-56a1574ce1c2" + ], + "x-ms-correlation-request-id": [ + "7b048a80-5fa9-4865-a779-c91d77d6c48a" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205715Z:7b048a80-5fa9-4865-a779-c91d77d6c48a" + ], + "Date": [ + "Sun, 18 Apr 2021 20:57:14 GMT" + ], + "Content-Length": [ + "3397" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"name\": \"04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c46c8d9c-d063-4a5e-99dc-3f2a70d8b6be ActivityId: 18245126-1d4e-4932-ac44-ae97096e529b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:56:00.519877Z\",\r\n \"endTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"endTime\": \"2021-04-18T20:57:03.2452826Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2021-04-18T20:57:03.2452826Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2021-04-18T20:57:03.5402877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:55:52.3897071Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2aVM1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2aVM1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8wNDEwOTc0MS1jMWMzLTRhOTAtYjc1Mi1mNzE1ZGQ0YjgyZTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8e97cfb-b57d-424b-bc14-8e7ca3b38393" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775855322)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380655322)\\/\",\"ClientRequestId\":\"82cf8853-224e-44db-bf41-fba81b8f7f06-2021-04-18 20:57:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"m4EloCnhEMRk3aUP7h/9gdg4b+DXn3PSsa0vX4i86Xc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "f8e97cfb-b57d-424b-bc14-8e7ca3b38393" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11687" + ], + "x-ms-correlation-request-id": [ + "89c48048-6cfc-43d7-9698-f3b7bbc08d52" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205735Z:89c48048-6cfc-43d7-9698-f3b7bbc08d52" + ], + "Date": [ + "Sun, 18 Apr 2021 20:57:35 GMT" + ], + "Content-Length": [ + "3397" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"name\": \"04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c46c8d9c-d063-4a5e-99dc-3f2a70d8b6be ActivityId: 18245126-1d4e-4932-ac44-ae97096e529b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:56:00.519877Z\",\r\n \"endTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"endTime\": \"2021-04-18T20:57:03.2452826Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2021-04-18T20:57:03.2452826Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2021-04-18T20:57:03.5402877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:55:52.3897071Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2aVM1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2aVM1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8wNDEwOTc0MS1jMWMzLTRhOTAtYjc1Mi1mNzE1ZGQ0YjgyZTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db4686af-66e9-4549-a4c9-fa70f23ad8a6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775875737)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380675737)\\/\",\"ClientRequestId\":\"b4a363e5-a12b-47dd-8c8a-b932c7a10317-2021-04-18 20:57:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sT9dUg1GZuHVgjF4eaT86ltpMTVNiUPTcX9q5XSp1tE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11686" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "db4686af-66e9-4549-a4c9-fa70f23ad8a6" + ], + "x-ms-correlation-request-id": [ + "95fa7949-c9ba-4808-b7cd-5f6f8f7eb3e1" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205756Z:95fa7949-c9ba-4808-b7cd-5f6f8f7eb3e1" + ], + "Date": [ + "Sun, 18 Apr 2021 20:57:55 GMT" + ], + "Content-Length": [ + "3397" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"name\": \"04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c46c8d9c-d063-4a5e-99dc-3f2a70d8b6be ActivityId: 18245126-1d4e-4932-ac44-ae97096e529b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:56:00.519877Z\",\r\n \"endTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"endTime\": \"2021-04-18T20:57:03.2452826Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2021-04-18T20:57:03.2452826Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2021-04-18T20:57:03.5402877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:55:52.3897071Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2aVM1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2aVM1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8wNDEwOTc0MS1jMWMzLTRhOTAtYjc1Mi1mNzE1ZGQ0YjgyZTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc29b23e-d6cb-4fed-ab08-16032ebd1e2c" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775896258)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380696258)\\/\",\"ClientRequestId\":\"da67838b-97a1-47af-8164-3989c37130f7-2021-04-18 20:58:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RPjpUQvqou8Bvtu2nsZzXFalCtkl7Oa1f6n57t2jrLQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11685" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "dc29b23e-d6cb-4fed-ab08-16032ebd1e2c" + ], + "x-ms-correlation-request-id": [ + "27c3002f-5fa8-44fd-b0ad-d3bc1d5a223d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205816Z:27c3002f-5fa8-44fd-b0ad-d3bc1d5a223d" + ], + "Date": [ + "Sun, 18 Apr 2021 20:58:15 GMT" + ], + "Content-Length": [ + "3397" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"name\": \"04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c46c8d9c-d063-4a5e-99dc-3f2a70d8b6be ActivityId: 18245126-1d4e-4932-ac44-ae97096e529b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:56:00.519877Z\",\r\n \"endTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"endTime\": \"2021-04-18T20:57:03.2452826Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2021-04-18T20:57:03.2452826Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2021-04-18T20:57:03.5402877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:55:52.3897071Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2aVM1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2aVM1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8wNDEwOTc0MS1jMWMzLTRhOTAtYjc1Mi1mNzE1ZGQ0YjgyZTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a65a69be-8e3e-49ac-8888-2949b72ec795" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775916633)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380716633)\\/\",\"ClientRequestId\":\"d2170730-1de1-4c5d-8b71-70e0775758f0-2021-04-18 20:58:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"g5ExQZ0mJZVWbrsOhEJgAFLvTdz6SQ7il6B2Y+jDYpU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11684" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "a65a69be-8e3e-49ac-8888-2949b72ec795" + ], + "x-ms-correlation-request-id": [ + "7386aa68-3f7c-47e1-8490-bdcf88eaa3a8" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205836Z:7386aa68-3f7c-47e1-8490-bdcf88eaa3a8" + ], + "Date": [ + "Sun, 18 Apr 2021 20:58:36 GMT" + ], + "Content-Length": [ + "3397" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"name\": \"04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c46c8d9c-d063-4a5e-99dc-3f2a70d8b6be ActivityId: 18245126-1d4e-4932-ac44-ae97096e529b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:56:00.519877Z\",\r\n \"endTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"endTime\": \"2021-04-18T20:57:03.2452826Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2021-04-18T20:57:03.2452826Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2021-04-18T20:57:03.5402877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:55:52.3897071Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2aVM1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2aVM1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8wNDEwOTc0MS1jMWMzLTRhOTAtYjc1Mi1mNzE1ZGQ0YjgyZTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff31085b-40eb-451e-8e5b-3430595aa2ea" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775936997)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380736997)\\/\",\"ClientRequestId\":\"f9d78969-b4bc-494f-a1ed-3f81013197b5-2021-04-18 20:58:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hWLX49DGE8r+7j/PB+VpAT4DWULRXj+IP01ThRBhg5U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11683" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "ff31085b-40eb-451e-8e5b-3430595aa2ea" + ], + "x-ms-correlation-request-id": [ + "f108c93b-9ca5-47a2-b6bd-8d34db576de9" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205857Z:f108c93b-9ca5-47a2-b6bd-8d34db576de9" + ], + "Date": [ + "Sun, 18 Apr 2021 20:58:56 GMT" + ], + "Content-Length": [ + "3397" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"name\": \"04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c46c8d9c-d063-4a5e-99dc-3f2a70d8b6be ActivityId: 18245126-1d4e-4932-ac44-ae97096e529b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:56:00.519877Z\",\r\n \"endTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"endTime\": \"2021-04-18T20:57:03.2452826Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2021-04-18T20:57:03.2452826Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2021-04-18T20:57:03.5402877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:55:52.3897071Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2aVM1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2aVM1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8wNDEwOTc0MS1jMWMzLTRhOTAtYjc1Mi1mNzE1ZGQ0YjgyZTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aabc7d60-d020-4830-93ed-dfbb3a058be8" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775957484)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380757484)\\/\",\"ClientRequestId\":\"86dbd10a-9b75-4986-89d2-540766fefab9-2021-04-18 20:59:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Qn1ihtcDdxTQgKjdfvgnMAAPZNOP/Qim3lsx4ln2EHc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11682" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "aabc7d60-d020-4830-93ed-dfbb3a058be8" + ], + "x-ms-correlation-request-id": [ + "f9da3609-33e0-415b-92e8-180370e3db61" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205917Z:f9da3609-33e0-415b-92e8-180370e3db61" + ], + "Date": [ + "Sun, 18 Apr 2021 20:59:17 GMT" + ], + "Content-Length": [ + "3397" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"name\": \"04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c46c8d9c-d063-4a5e-99dc-3f2a70d8b6be ActivityId: 18245126-1d4e-4932-ac44-ae97096e529b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:56:00.519877Z\",\r\n \"endTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"endTime\": \"2021-04-18T20:57:03.2452826Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2021-04-18T20:57:03.2452826Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2021-04-18T20:57:03.5402877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:55:52.3897071Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2aVM1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2aVM1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8wNDEwOTc0MS1jMWMzLTRhOTAtYjc1Mi1mNzE1ZGQ0YjgyZTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f19e7c1d-871a-4d23-bbeb-3f01b263a5d4" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775977875)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380777875)\\/\",\"ClientRequestId\":\"7d2ebd55-c34b-474f-bfa9-f002b5ba8169-2021-04-18 20:59:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1m75ZwzhnTZ2KOm2di8xBB8ueS/OdDG3K/SgRF0VlgY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11681" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "f19e7c1d-871a-4d23-bbeb-3f01b263a5d4" + ], + "x-ms-correlation-request-id": [ + "489a90d6-4f89-4b40-a697-ecf86b5d8f72" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205938Z:489a90d6-4f89-4b40-a697-ecf86b5d8f72" + ], + "Date": [ + "Sun, 18 Apr 2021 20:59:37 GMT" + ], + "Content-Length": [ + "3397" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"name\": \"04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c46c8d9c-d063-4a5e-99dc-3f2a70d8b6be ActivityId: 18245126-1d4e-4932-ac44-ae97096e529b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:56:00.519877Z\",\r\n \"endTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"endTime\": \"2021-04-18T20:57:03.2452826Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2021-04-18T20:57:03.2452826Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2021-04-18T20:57:03.5402877Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:55:52.3897071Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2aVM1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2aVM1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcy92YXVsdHMvQTJBUG93ZXJzaGVsbFRlc3QxMjI4L3JlcGxpY2F0aW9uSm9icy8wNDEwOTc0MS1jMWMzLTRhOTAtYjc1Mi1mNzE1ZGQ0YjgyZTY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "27ce320a-ce78-45bc-8352-185572342eb8" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618775998241)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619380798241)\\/\",\"ClientRequestId\":\"67565c93-45e6-480e-90d2-532455d7bff3-2021-04-18 20:59:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7Mvj2mpuPo+AVomBqbeZYZxBIh4YnAPfbOYuyunas1Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11680" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "27ce320a-ce78-45bc-8352-185572342eb8" + ], + "x-ms-correlation-request-id": [ + "8a7c56ea-f5ed-427f-84ab-22f203b4c49b" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205958Z:8a7c56ea-f5ed-427f-84ab-22f203b4c49b" + ], + "Date": [ + "Sun, 18 Apr 2021 20:59:58 GMT" + ], + "Content-Length": [ + "3773" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg1228/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest1228/replicationJobs/04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"name\": \"04109741-c1c3-4a90-b752-f715dd4b82e6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c46c8d9c-d063-4a5e-99dc-3f2a70d8b6be ActivityId: 18245126-1d4e-4932-ac44-ae97096e529b\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"UnplannedFailoverPreflightChecksTask\",\r\n \"name\": \"VmUfoPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T20:56:00.519877Z\",\r\n \"endTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownVmOnPrimaryForUFO\",\r\n \"name\": \"VmShutdownVmOnPrimary\",\r\n \"startTime\": \"2021-04-18T20:56:01.4598771Z\",\r\n \"endTime\": \"2021-04-18T20:57:03.2452826Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shut down the virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"PrepareForUnPlannedFailoverTask\",\r\n \"name\": \"VmPrepareForUnPlannedFailover\",\r\n \"startTime\": \"2021-04-18T20:57:03.2452826Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Synchronizing the latest changes\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverTask\",\r\n \"name\": \"VmFailover\",\r\n \"startTime\": \"2021-04-18T20:57:03.5402877Z\",\r\n \"endTime\": \"2021-04-18T20:59:41.9825786Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartVmOnSecondary\",\r\n \"name\": \"VmFoStartVmOnSecondary\",\r\n \"startTime\": \"2021-04-18T20:59:41.9825786Z\",\r\n \"endTime\": \"2021-04-18T20:59:42.2275782Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Start the replica virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T20:55:52.3897071Z\",\r\n \"endTime\": \"2021-04-18T20:59:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"targetObjectName\": \"a2aVM1228\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [\r\n {\r\n \"name\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"friendlyName\": \"a2aVM1228\",\r\n \"testVmName\": null,\r\n \"testVmFriendlyName\": null,\r\n \"networkConnectionStatus\": null,\r\n \"networkFriendlyName\": \"a2arecoverynetwork1228\",\r\n \"subnet\": \"frontendSubnet\",\r\n \"recoveryPointId\": \"8f3eaa21-3e3a-4cde-adcb-eef1ae87d462\",\r\n \"recoveryPointTime\": \"2021-04-18T20:20:23.3342595Z\"\r\n }\r\n ],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"924ac12b-2298-5c11-b849-4635eec90d7c\",\r\n \"primaryVmName\": \"a2aVM1228\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm1228\",\r\n \"protectionProfileId\": \"136465c2-c4c3-5eff-af1a-fe79d6adf9a9\",\r\n \"primaryCloudId\": \"5b30ebf3-626f-5810-9062-c70a5a4a07ed\",\r\n \"primaryCloudName\": \"A2APrimaryContainer1228\",\r\n \"recoveryCloudId\": \"28274110-7b66-5082-8c8b-0a9534eb3b7b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer1228\",\r\n \"primaryVmmId\": \"fefa958e-2953-5296-ab67-383dc1b8f3ee\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"829815dc-4af4-546f-9570-a94c5964617f\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Compute/virtualMachines/a2aVM1228?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTIyOC9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL2EyYVZNMTIyOD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "187b2edd-f18a-4c86-9553-42c6f35589b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31986" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "8d0ff797-c0f7-465f-84b4-269adf7af64a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "b6951485-d332-4317-b8ef-410ad5b05930" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T205959Z:b6951485-d332-4317-b8ef-410ad5b05930" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 20:59:58 GMT" + ], + "Content-Length": [ + "1533" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM1228\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Compute/virtualMachines/a2aVM1228\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"fde162d9-4350-4b94-a969-aee26657f4a5\",\r\n \"virtualMachineScaleSet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1-asr\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Compute/disks/a2aVM1228_OsDisk_1_d9686671f050480ea3bdd34fc114f507\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG1228/providers/Microsoft.Network/networkInterfaces/a2aVM1228\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "509099b2-9d2c-4636-b43e-bd5cafb6be69", + "NamingSuffix": "3de56ea4-b984-41df-bb28-f0f73202c52b" + } +} \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2AZoneToZoneRecoveryPlanReplication.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2AZoneToZoneRecoveryPlanReplication.json index 3a7a219717f6..82a05cc6f202 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2AZoneToZoneRecoveryPlanReplication.json +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/A2AZoneToZoneRecoveryPlanReplication.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/recRG347?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlZ3JvdXBzL3JlY1JHMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recRG347?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL3JlY1JHMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dc8a42ec-1ef7-4287-8a79-fd71642e93bc" + "c9a0d3a1-e29e-4be1-92f3-e12e545cb58b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "35" + "28" ] }, "ResponseHeaders": { @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "4a24b026-d6d3-4822-a9be-50300cd1d216" + "df8321e5-c1cf-4b43-9106-1849843f7f7e" ], "x-ms-correlation-request-id": [ - "4a24b026-d6d3-4822-a9be-50300cd1d216" + "df8321e5-c1cf-4b43-9106-1849843f7f7e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045004Z:4a24b026-d6d3-4822-a9be-50300cd1d216" + "CENTRALUSEUAP:20210418T062141Z:df8321e5-c1cf-4b43-9106-1849843f7f7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:50:04 GMT" + "Sun, 18 Apr 2021 06:21:41 GMT" ], "Content-Length": [ - "176" + "169" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347\",\r\n \"name\": \"recRG347\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347\",\r\n \"name\": \"recRG347\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL3JlY1JHMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMzQ3P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMzQ3P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6746196-e8af-4024-85f0-86ef48a0d65a" + "c503b534-e38a-4aff-989a-c1c9acb57cc9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.20.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "f3245771-85f6-4d1a-baac-2820cd99f813" + "8958dd06-5f0c-4547-838e-18ba0d4bedc6" ], "x-ms-correlation-request-id": [ - "f3245771-85f6-4d1a-baac-2820cd99f813" + "8958dd06-5f0c-4547-838e-18ba0d4bedc6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045025Z:f3245771-85f6-4d1a-baac-2820cd99f813" + "CENTRALUSEUAP:20210418T062203Z:8958dd06-5f0c-4547-838e-18ba0d4bedc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:50:25 GMT" + "Sun, 18 Apr 2021 06:22:03 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,23 +120,26 @@ "-1" ], "Content-Length": [ - "167" + "235" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347' under resource group 'recRG347' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347' under resource group 'recRG347' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL3JlY1JHMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMzQ3P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMzQ3P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c503b534-e38a-4aff-989a-c1c9acb57cc9" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.20.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -147,16 +150,16 @@ "no-cache" ], "ETag": [ - "W/\"7e573223-081f-4e6b-a545-9e8a42dc1099\"" + "W/\"1f8136f4-f3ca-49b4-8ad7-362ee161f62c\"" ], "x-ms-request-id": [ - "596efc9d-9529-47fa-9e4e-3dd297ef8c86" + "d94ec045-3583-4031-a670-136455e29105" ], "x-ms-correlation-request-id": [ - "ea525007-d3c8-4ccc-84e1-c770a1994b7e" + "b8488be2-0ea2-4a8e-a8d9-89b5192e2841" ], "x-ms-arm-service-request-id": [ - "e307b433-ebe7-4ee6-be64-0a57d495a82f" + "6f94be94-ca82-4097-a664-8c15fba8a112" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -166,19 +169,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11997" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045052Z:ea525007-d3c8-4ccc-84e1-c770a1994b7e" + "CENTRALUSEUAP:20210418T062210Z:b8488be2-0ea2-4a8e-a8d9-89b5192e2841" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:50:52 GMT" + "Sun, 18 Apr 2021 06:22:10 GMT" ], "Content-Length": [ - "1340" + "1299" ], "Content-Type": [ "application/json; charset=utf-8" @@ -187,26 +190,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"etag\": \"W/\\\"7e573223-081f-4e6b-a545-9e8a42dc1099\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"59d3bdbb-8a15-4cbb-aee3-c49172fb9177\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"7e573223-081f-4e6b-a545-9e8a42dc1099\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"etag\": \"W/\\\"1f8136f4-f3ca-49b4-8ad7-362ee161f62c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d508c868-9f3e-4ae1-bb89-0905c4563f86\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"1f8136f4-f3ca-49b4-8ad7-362ee161f62c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL3JlY1JHMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMzQ3P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMzQ3P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9d66836-979b-4433-af32-fd1bfeb4db35" + "c503b534-e38a-4aff-989a-c1c9acb57cc9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.20.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -217,16 +220,16 @@ "no-cache" ], "ETag": [ - "W/\"7e573223-081f-4e6b-a545-9e8a42dc1099\"" + "W/\"1f8136f4-f3ca-49b4-8ad7-362ee161f62c\"" ], "x-ms-request-id": [ - "e094de8a-aed0-49b2-8c0a-721f954fffb6" + "ec1a3495-9a9c-4fd2-bbcb-2209032f5b1f" ], "x-ms-correlation-request-id": [ - "9141133b-0427-4cbe-b3d5-52b25edb3e7c" + "28b8e165-605a-4454-86fa-507f6c621b47" ], "x-ms-arm-service-request-id": [ - "f2d47abb-c494-4784-939a-bfa368a2417c" + "1d00d56f-9208-4616-88cd-224e87d1b94d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -236,19 +239,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11996" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045052Z:9141133b-0427-4cbe-b3d5-52b25edb3e7c" + "CENTRALUSEUAP:20210418T062211Z:28b8e165-605a-4454-86fa-507f6c621b47" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:50:52 GMT" + "Sun, 18 Apr 2021 06:22:10 GMT" ], "Content-Length": [ - "1340" + "1299" ], "Content-Type": [ "application/json; charset=utf-8" @@ -257,32 +260,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"etag\": \"W/\\\"7e573223-081f-4e6b-a545-9e8a42dc1099\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"59d3bdbb-8a15-4cbb-aee3-c49172fb9177\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"7e573223-081f-4e6b-a545-9e8a42dc1099\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"etag\": \"W/\\\"1f8136f4-f3ca-49b4-8ad7-362ee161f62c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d508c868-9f3e-4ae1-bb89-0905c4563f86\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"1f8136f4-f3ca-49b4-8ad7-362ee161f62c\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL3JlY1JHMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMzQ3P2FwaS12ZXJzaW9uPTIwMjAtMDMtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMzQ3P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"frontendSubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"frontendSubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cac4361b-5a60-4259-9d91-030ac9544354" + "c503b534-e38a-4aff-989a-c1c9acb57cc9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.20.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "692" + "685" ] }, "ResponseHeaders": { @@ -296,19 +299,19 @@ "3" ], "x-ms-request-id": [ - "9c4dc024-8130-4204-a022-334e6cc80a9b" + "15d08be8-f5f2-4c3c-ac18-a8c7b6010052" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/southeastasia/operations/9c4dc024-8130-4204-a022-334e6cc80a9b?api-version=2020-03-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/15d08be8-f5f2-4c3c-ac18-a8c7b6010052?api-version=2020-11-01" ], "x-ms-correlation-request-id": [ - "fabb3168-25c0-49a6-843d-09ad8c6a28b5" + "44c2e22e-2612-4be9-b2c4-e9a755d974f2" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "106d908a-a485-4b4e-acfb-713c69dc5611" + "929ba24e-fc57-484e-af67-cae9220c5170" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -318,19 +321,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045028Z:fabb3168-25c0-49a6-843d-09ad8c6a28b5" + "CENTRALUSEUAP:20210418T062206Z:44c2e22e-2612-4be9-b2c4-e9a755d974f2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:50:28 GMT" + "Sun, 18 Apr 2021 06:22:06 GMT" ], "Content-Length": [ - "1338" + "1297" ], "Content-Type": [ "application/json; charset=utf-8" @@ -339,148 +342,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"etag\": \"W/\\\"dd0c215e-8686-4b4d-9425-3fdd0811eabe\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"59d3bdbb-8a15-4cbb-aee3-c49172fb9177\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"dd0c215e-8686-4b4d-9425-3fdd0811eabe\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"etag\": \"W/\\\"59000fba-f42c-4cf9-9312-dff5860d9ba7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d508c868-9f3e-4ae1-bb89-0905c4563f86\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"59000fba-f42c-4cf9-9312-dff5860d9ba7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/southeastasia/operations/9c4dc024-8130-4204-a022-334e6cc80a9b?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzljNGRjMDI0LTgxMzAtNDIwNC1hMDIyLTMzNGU2Y2M4MGE5Yj9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.20.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "035d0b5a-4aa5-41ae-be62-0b963e8b4fb0" - ], - "x-ms-correlation-request-id": [ - "e44b9732-d6ab-42f9-ba92-5bb4f36778e1" - ], - "x-ms-arm-service-request-id": [ - "f065930c-1a06-4265-92d5-72f8a63b7529" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045032Z:e44b9732-d6ab-42f9-ba92-5bb4f36778e1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 02 May 2020 04:50:31 GMT" - ], - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/southeastasia/operations/9c4dc024-8130-4204-a022-334e6cc80a9b?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzljNGRjMDI0LTgxMzAtNDIwNC1hMDIyLTMzNGU2Y2M4MGE5Yj9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/15d08be8-f5f2-4c3c-ac18-a8c7b6010052?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTVkMDhiZTgtZjVmMi00YzNjLWFjMTgtYThjN2I2MDEwMDUyP2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.20.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "b571d4b7-608f-438b-97c4-323b84fb02ea" - ], - "x-ms-correlation-request-id": [ - "4c5aa789-415a-47e2-85b8-264b63d96fef" - ], - "x-ms-arm-service-request-id": [ - "4e06eba3-2c68-4a69-996f-efd95758f679" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045042Z:4c5aa789-415a-47e2-85b8-264b63d96fef" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 02 May 2020 04:50:41 GMT" - ], - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "x-ms-client-request-id": [ + "c503b534-e38a-4aff-989a-c1c9acb57cc9" ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/southeastasia/operations/9c4dc024-8130-4204-a022-334e6cc80a9b?api-version=2020-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzljNGRjMDI0LTgxMzAtNDIwNC1hMDIyLTMzNGU2Y2M4MGE5Yj9hcGktdmVyc2lvbj0yMDIwLTAzLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.20.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -491,13 +369,13 @@ "no-cache" ], "x-ms-request-id": [ - "3ab4ac09-8f62-49e7-9f25-d9e3e399b6fa" + "3cb6f3cc-75d8-4f09-9955-baf25664d963" ], "x-ms-correlation-request-id": [ - "5f9aa03a-bcdc-4d55-aa1d-d2e009284f92" + "35f3612d-9a08-41ba-baa1-6d3af634b25f" ], "x-ms-arm-service-request-id": [ - "72d5576b-e84f-4728-9c10-1bbcee22f1db" + "d2c29aeb-ddf1-4487-9f16-7aefb83404a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -507,16 +385,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11998" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045052Z:5f9aa03a-bcdc-4d55-aa1d-d2e009284f92" + "CENTRALUSEUAP:20210418T062210Z:35f3612d-9a08-41ba-baa1-6d3af634b25f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:50:52 GMT" + "Sun, 18 Apr 2021 06:22:10 GMT" ], "Content-Length": [ "29" @@ -532,28 +410,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2aVM347?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlZ3JvdXBzL2EyYVZNMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM347?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4d4602a4-40a4-4e15-982b-f1a9702f6f2e" + "e10cc342-39d1-471b-b603-aa3066a63757" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "35" + "28" ] }, "ResponseHeaders": { @@ -567,13 +445,13 @@ "1198" ], "x-ms-request-id": [ - "7c05f482-bbb7-4235-a337-f8baf8d78d77" + "58c1a870-c968-4b85-a94f-587b5c1dd367" ], "x-ms-correlation-request-id": [ - "7c05f482-bbb7-4235-a337-f8baf8d78d77" + "58c1a870-c968-4b85-a94f-587b5c1dd367" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045054Z:7c05f482-bbb7-4235-a337-f8baf8d78d77" + "CENTRALUSEUAP:20210418T062211Z:58c1a870-c968-4b85-a94f-587b5c1dd367" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -582,10 +460,10 @@ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:50:54 GMT" + "Sun, 18 Apr 2021 06:22:10 GMT" ], "Content-Length": [ - "176" + "169" ], "Content-Type": [ "application/json; charset=utf-8" @@ -594,32 +472,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347\",\r\n \"name\": \"a2aVM347\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347\",\r\n \"name\": \"a2aVM347\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Storage/storageAccounts/cache347?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvY2FjaGUzNDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Storage/storageAccounts/cache347?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvY2FjaGUzNDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "17a7af67-557a-4f10-ab8f-acb32dac9085" + "81528d95-2424-4422-a6e5-371539de0168" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "105" + "98" ] }, "ResponseHeaders": { @@ -630,13 +508,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/201fe77d-3476-4ce7-bf43-ddd34606b9de?monitor=true&api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/069e3a02-6d2d-4698-a784-7842336b90e4?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "201fe77d-3476-4ce7-bf43-ddd34606b9de" + "069e3a02-6d2d-4698-a784-7842336b90e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -645,82 +523,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "5c1ce292-c930-4a26-9c27-414d7f559ca9" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045117Z:5c1ce292-c930-4a26-9c27-414d7f559ca9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 02 May 2020 04:51:16 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/201fe77d-3476-4ce7-bf43-ddd34606b9de?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvMjAxZmU3N2QtMzQ3Ni00Y2U3LWJmNDMtZGRkMzQ2MDZiOWRlP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE3LTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.13" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/201fe77d-3476-4ce7-bf43-ddd34606b9de?monitor=true&api-version=2017-10-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "6cb660be-29ac-44f3-86a8-490307d0c409" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "1199" ], "x-ms-correlation-request-id": [ - "dd485656-f606-49d2-a1c0-e2627c1d3385" + "28d9dae3-497b-4796-981a-5789a82d66ea" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045134Z:dd485656-f606-49d2-a1c0-e2627c1d3385" + "CENTRALUSEUAP:20210418T062236Z:28d9dae3-497b-4796-981a-5789a82d66ea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:34 GMT" + "Sun, 18 Apr 2021 06:22:36 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -736,16 +551,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/201fe77d-3476-4ce7-bf43-ddd34606b9de?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvMjAxZmU3N2QtMzQ3Ni00Y2U3LWJmNDMtZGRkMzQ2MDZiOWRlP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/069e3a02-6d2d-4698-a784-7842336b90e4?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8wNjllM2EwMi02ZDJkLTQ2OTgtYTc4NC03ODQyMzM2YjkwZTQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -756,7 +571,7 @@ "no-cache" ], "x-ms-request-id": [ - "d5f2921c-e3ad-48f7-812f-cd1fedb10b6c" + "bbcce5c4-59ad-4b1c-b57a-200a16e9a21d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -765,22 +580,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11995" ], "x-ms-correlation-request-id": [ - "71d511d3-40f8-450b-bcc2-f56e8ca9231c" + "ef428386-6ad2-4ecb-b9f5-fdce27181531" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045137Z:71d511d3-40f8-450b-bcc2-f56e8ca9231c" + "CENTRALUSEUAP:20210418T062254Z:ef428386-6ad2-4ecb-b9f5-fdce27181531" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:37 GMT" + "Sun, 18 Apr 2021 06:22:54 GMT" ], "Content-Length": [ - "1041" + "1027" ], "Content-Type": [ "application/json" @@ -789,26 +604,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Storage/storageAccounts/cache347\",\r\n \"name\": \"cache347\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-02T04:51:16.1866839Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-02T04:51:16.1866839Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-05-02T04:51:16.0929541Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cache347.blob.core.windows.net/\",\r\n \"queue\": \"https://cache347.queue.core.windows.net/\",\r\n \"table\": \"https://cache347.table.core.windows.net/\",\r\n \"file\": \"https://cache347.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Storage/storageAccounts/cache347\",\r\n \"name\": \"cache347\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-18T06:22:34.8100147Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-18T06:22:34.8100147Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-04-18T06:22:34.6850241Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cache347.blob.core.windows.net/\",\r\n \"queue\": \"https://cache347.queue.core.windows.net/\",\r\n \"table\": \"https://cache347.table.core.windows.net/\",\r\n \"file\": \"https://cache347.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Compute/images/RHEL?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9pbWFnZXMvUkhFTD9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Compute/images/RHEL?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9pbWFnZXMvUkhFTD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4af3aa82-b9c0-4278-aca8-c65357b3847c" + "923133b3-5ddb-4d58-a446-09f296c3b6b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -822,13 +637,13 @@ "gateway" ], "x-ms-request-id": [ - "582e9881-4e68-497d-a7ec-70bab7448158" + "9df19865-abb3-421a-a080-46dee7c49e66" ], "x-ms-correlation-request-id": [ - "582e9881-4e68-497d-a7ec-70bab7448158" + "9df19865-abb3-421a-a080-46dee7c49e66" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045138Z:582e9881-4e68-497d-a7ec-70bab7448158" + "CENTRALUSEUAP:20210418T062255Z:9df19865-abb3-421a-a080-46dee7c49e66" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -837,7 +652,7 @@ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:38 GMT" + "Sun, 18 Apr 2021 06:22:55 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -846,29 +661,29 @@ "-1" ], "Content-Length": [ - "141" + "209" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/images/RHEL' under resource group 'a2aVM347' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/images/RHEL' under resource group 'a2aVM347' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Compute?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1e65ea6-c7e4-45b0-9cc8-6b3e681b5f81" + "923133b3-5ddb-4d58-a446-09f296c3b6b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -879,16 +694,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "9505fe3a-056b-4618-a41c-80b2e4f50591" + "86d8bc17-53d0-4b6b-a4b7-f058a2bda302" ], "x-ms-correlation-request-id": [ - "9505fe3a-056b-4618-a41c-80b2e4f50591" + "86d8bc17-53d0-4b6b-a4b7-f058a2bda302" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045138Z:9505fe3a-056b-4618-a41c-80b2e4f50591" + "CENTRALUSEUAP:20210418T062256Z:86d8bc17-53d0-4b6b-a4b7-f058a2bda302" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -897,7 +712,7 @@ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:38 GMT" + "Sun, 18 Apr 2021 06:22:56 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -906,29 +721,29 @@ "-1" ], "Content-Length": [ - "33191" + "59552" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/vsmoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Japan West\",\r\n \"France Central\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMExtensions\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMExtensions/versions\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n },\r\n {\r\n \"applicationId\": \"579d9c9d-4c83-4efc-8124-7eba65ed3356\",\r\n \"roleDefinitionId\": \"8c99c4ce-d744-4597-a2f0-0a0044d67560\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotEvictionRates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotPriceHistory\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/sharedGalleries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"diskAccesses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roles\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/csoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsVersions\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsFamilies\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/publicIPAddresses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups/capacityReservations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Compute/virtualMachines/a2aVM347?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Compute/virtualMachines/a2aVM347?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfe21bc0-5c5a-4920-b18e-8aafd169a85a" + "923133b3-5ddb-4d58-a446-09f296c3b6b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -942,13 +757,13 @@ "gateway" ], "x-ms-request-id": [ - "6d0770e3-e70a-4666-bedf-b2d86879ce55" + "a89ce204-2632-489f-8305-af2bd725fc06" ], "x-ms-correlation-request-id": [ - "6d0770e3-e70a-4666-bedf-b2d86879ce55" + "a89ce204-2632-489f-8305-af2bd725fc06" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045139Z:6d0770e3-e70a-4666-bedf-b2d86879ce55" + "CENTRALUSEUAP:20210418T062257Z:a89ce204-2632-489f-8305-af2bd725fc06" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -957,7 +772,7 @@ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:38 GMT" + "Sun, 18 Apr 2021 06:22:56 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -966,23 +781,26 @@ "-1" ], "Content-Length": [ - "154" + "222" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/a2aVM347' under resource group 'a2aVM347' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Compute/virtualMachines/a2aVM347' under resource group 'a2aVM347' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Compute/virtualMachines/a2aVM347?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Compute/virtualMachines/a2aVM347?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "923133b3-5ddb-4d58-a446-09f296c3b6b8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -993,35 +811,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31996" + "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31986" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "11ef8865-6941-43f5-be89-5b012f3c385e" + "f9a25a89-1dc3-45cf-a8a2-2fd3bea77eff" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11985" ], "x-ms-correlation-request-id": [ - "3df79329-3c7e-4bd1-8474-2c2e9b8cbbc2" + "9e535752-883a-4f2b-a3fb-3d0efa88ce2f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045313Z:3df79329-3c7e-4bd1-8474-2c2e9b8cbbc2" + "CENTRALUSEUAP:20210418T062506Z:9e535752-883a-4f2b-a3fb-3d0efa88ce2f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:53:13 GMT" + "Sun, 18 Apr 2021 06:25:06 GMT" ], "Content-Length": [ - "1718" + "1926" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1030,26 +848,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Compute/virtualMachines/a2aVM347\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"vmId\": \"8717bdbd-f3b4-41bb-8fcd-466ecef9be30\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2AVM347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM347\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Compute/virtualMachines/a2aVM347\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"a200794d-f23f-4c21-a447-2380e98f31fb\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM347\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Compute/virtualMachines/a2aVM347?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Compute/virtualMachines/a2aVM347?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc5bd1fb-e222-4dbc-b3dc-fd2328df2ba9" + "a1bbdbd9-cf79-4c90-998d-94899e66345d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -1060,35 +878,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31995" + "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31985" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "cb09b6fe-8bbe-4285-9913-8b85af7e87c1" + "e88599fe-fcc1-4faa-badf-d870902fd5a4" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11984" ], "x-ms-correlation-request-id": [ - "9c8bc5d8-018a-4ba9-85e6-e2ac1561f832" + "5adccdc3-5fae-4c9a-a668-3b1a27ecad58" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045314Z:9c8bc5d8-018a-4ba9-85e6-e2ac1561f832" + "CENTRALUSEUAP:20210418T062507Z:5adccdc3-5fae-4c9a-a668-3b1a27ecad58" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:53:13 GMT" + "Sun, 18 Apr 2021 06:25:06 GMT" ], "Content-Length": [ - "1718" + "1926" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1097,26 +915,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Compute/virtualMachines/a2aVM347\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"vmId\": \"8717bdbd-f3b4-41bb-8fcd-466ecef9be30\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2AVM347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM347\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Compute/virtualMachines/a2aVM347\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"a200794d-f23f-4c21-a447-2380e98f31fb\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM347\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2aVM347?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlZ3JvdXBzL2EyYVZNMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM347?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNMzQ3P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "374dc686-09b9-43de-8e96-27eb74bce3ea" + "923133b3-5ddb-4d58-a446-09f296c3b6b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1127,16 +945,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-request-id": [ - "8699808a-ae6f-47bd-b6af-3d2dd02c2c8c" + "73db5aa8-42ef-4e12-8cfc-8d7b85cedea6" ], "x-ms-correlation-request-id": [ - "8699808a-ae6f-47bd-b6af-3d2dd02c2c8c" + "73db5aa8-42ef-4e12-8cfc-8d7b85cedea6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045139Z:8699808a-ae6f-47bd-b6af-3d2dd02c2c8c" + "CENTRALUSEUAP:20210418T062257Z:73db5aa8-42ef-4e12-8cfc-8d7b85cedea6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1145,7 +963,7 @@ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:39 GMT" + "Sun, 18 Apr 2021 06:22:57 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1154,29 +972,29 @@ "-1" ], "Content-Length": [ - "176" + "169" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347\",\r\n \"name\": \"a2aVM347\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347\",\r\n \"name\": \"a2aVM347\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e3d339f-3ec2-4b52-8c59-b74dfe3a8c82" + "923133b3-5ddb-4d58-a446-09f296c3b6b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1190,13 +1008,13 @@ "gateway" ], "x-ms-request-id": [ - "d4bc917a-5eed-487d-8f68-2d5ece79a1dc" + "ba812537-5a4f-4e94-948f-c5ad2151f2d6" ], "x-ms-correlation-request-id": [ - "d4bc917a-5eed-487d-8f68-2d5ece79a1dc" + "ba812537-5a4f-4e94-948f-c5ad2151f2d6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045139Z:d4bc917a-5eed-487d-8f68-2d5ece79a1dc" + "CENTRALUSEUAP:20210418T062258Z:ba812537-5a4f-4e94-948f-c5ad2151f2d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1205,7 +1023,7 @@ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:39 GMT" + "Sun, 18 Apr 2021 06:22:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1214,23 +1032,26 @@ "-1" ], "Content-Length": [ - "156" + "224" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/a2aVM347' under resource group 'a2aVM347' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkInterfaces/a2aVM347' under resource group 'a2aVM347' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "923133b3-5ddb-4d58-a446-09f296c3b6b8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1241,16 +1062,16 @@ "no-cache" ], "ETag": [ - "W/\"95dad298-d920-46f9-adfc-eaf62cea2928\"" + "W/\"67a40932-9ebd-4628-9150-396d7fde23e8\"" ], "x-ms-request-id": [ - "158698fe-8790-4234-948a-6fff4abebed3" + "2cba1061-f753-4525-aaeb-57442e7b3ca0" ], "x-ms-correlation-request-id": [ - "e99d7956-9031-48a7-8c93-d78bc63f2ea2" + "7d038681-df4e-4432-8996-90d4283032e7" ], "x-ms-arm-service-request-id": [ - "08992bfb-daef-4abc-a2b2-ff53926f7015" + "d83e3c9e-1a0b-4d2e-a585-559fd0e340e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1260,19 +1081,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11990" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045150Z:e99d7956-9031-48a7-8c93-d78bc63f2ea2" + "CENTRALUSEUAP:20210418T062308Z:7d038681-df4e-4432-8996-90d4283032e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:50 GMT" + "Sun, 18 Apr 2021 06:23:07 GMT" ], "Content-Length": [ - "1920" + "1913" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1281,26 +1102,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\",\r\n \"etag\": \"W/\\\"95dad298-d920-46f9-adfc-eaf62cea2928\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b7b37889-d238-44cf-aaa9-aaff10a5c1ba\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347/ipConfigurations/a2aVM347\",\r\n \"etag\": \"W/\\\"95dad298-d920-46f9-adfc-eaf62cea2928\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/publicIPAddresses/a2aVM347\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347/subnets/a2aVM347\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"jpzcyvmcnixezbuvw3k0pejyjb.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\",\r\n \"etag\": \"W/\\\"67a40932-9ebd-4628-9150-396d7fde23e8\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"99248bcb-42b6-4204-8385-0b9d0d2946bc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347/ipConfigurations/a2aVM347\",\r\n \"etag\": \"W/\\\"67a40932-9ebd-4628-9150-396d7fde23e8\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/publicIPAddresses/a2aVM347\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347/subnets/a2aVM347\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"us35sg1glk0edf0rgnkerftjag.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fb7ed02-4983-47b4-a5db-92ea029a08ca" + "923133b3-5ddb-4d58-a446-09f296c3b6b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1314,13 +1135,13 @@ "gateway" ], "x-ms-request-id": [ - "45a810d7-766e-4d86-a34d-90a59d739240" + "75431d73-4c2a-4488-849a-0531ac21d57f" ], "x-ms-correlation-request-id": [ - "45a810d7-766e-4d86-a34d-90a59d739240" + "75431d73-4c2a-4488-849a-0531ac21d57f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045139Z:45a810d7-766e-4d86-a34d-90a59d739240" + "CENTRALUSEUAP:20210418T062258Z:75431d73-4c2a-4488-849a-0531ac21d57f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1329,7 +1150,7 @@ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:39 GMT" + "Sun, 18 Apr 2021 06:22:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1338,23 +1159,26 @@ "-1" ], "Content-Length": [ - "154" + "222" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/a2aVM347' under resource group 'a2aVM347' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/a2aVM347' under resource group 'a2aVM347' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "923133b3-5ddb-4d58-a446-09f296c3b6b8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1365,16 +1189,16 @@ "no-cache" ], "ETag": [ - "W/\"ef3af71d-5c3a-4394-ab71-d9b1811a4cab\"" + "W/\"9c9a4699-9134-49c8-9ebd-2aaae1e25d45\"" ], "x-ms-request-id": [ - "29af1b55-5fcf-4301-bd68-3ddde967442b" + "b5809e1d-2c63-4ac7-9bdf-8f1806a0465d" ], "x-ms-correlation-request-id": [ - "d688f5f0-2e22-4150-9412-9d053382206b" + "28812ad5-c314-4e06-9f59-8058aa9ee19c" ], "x-ms-arm-service-request-id": [ - "b9b917c0-557a-43b9-99ec-fe6ff836a922" + "ea37c653-3149-402f-953f-24fc03657eb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1387,16 +1211,16 @@ "11993" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045146Z:d688f5f0-2e22-4150-9412-9d053382206b" + "CENTRALUSEUAP:20210418T062306Z:28812ad5-c314-4e06-9f59-8058aa9ee19c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:46 GMT" + "Sun, 18 Apr 2021 06:23:05 GMT" ], "Content-Length": [ - "1115" + "1074" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1405,26 +1229,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347\",\r\n \"etag\": \"W/\\\"ef3af71d-5c3a-4394-ab71-d9b1811a4cab\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"552cf24b-6a82-4c2e-8695-b755a7913849\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347/subnets/a2aVM347\",\r\n \"etag\": \"W/\\\"ef3af71d-5c3a-4394-ab71-d9b1811a4cab\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347\",\r\n \"etag\": \"W/\\\"9c9a4699-9134-49c8-9ebd-2aaae1e25d45\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1bf9bba4-5a66-41b4-9751-335448966906\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347/subnets/a2aVM347\",\r\n \"etag\": \"W/\\\"9c9a4699-9134-49c8-9ebd-2aaae1e25d45\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/publicIPAddresses/a2aVM347?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "caf8804f-3ec4-4e7a-bd02-c4cbb26ebeea" + "923133b3-5ddb-4d58-a446-09f296c3b6b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1438,13 +1262,13 @@ "gateway" ], "x-ms-request-id": [ - "23e672c6-ed3b-48d5-9a03-dc7c9fdafadf" + "030ab39f-7477-4a21-a468-8cc2a0617e3f" ], "x-ms-correlation-request-id": [ - "23e672c6-ed3b-48d5-9a03-dc7c9fdafadf" + "030ab39f-7477-4a21-a468-8cc2a0617e3f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045140Z:23e672c6-ed3b-48d5-9a03-dc7c9fdafadf" + "CENTRALUSEUAP:20210418T062300Z:030ab39f-7477-4a21-a468-8cc2a0617e3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1453,7 +1277,7 @@ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:40 GMT" + "Sun, 18 Apr 2021 06:23:00 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1462,23 +1286,26 @@ "-1" ], "Content-Length": [ - "160" + "224" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/a2aVM347' under resource group 'a2aVM347' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/a2aVM347' under resource group 'a2aVM347' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/publicIPAddresses/a2aVM347?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "923133b3-5ddb-4d58-a446-09f296c3b6b8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1489,16 +1316,16 @@ "no-cache" ], "ETag": [ - "W/\"99437f87-eadc-4b1c-9d14-74f50ad0c6a9\"" + "W/\"7b868e24-2fdb-478f-9164-3a5f2d5bcf4e\"" ], "x-ms-request-id": [ - "90d821b5-471b-470c-bcae-b576c7b67bf9" + "14776155-6166-40d7-a8a6-14941abcd186" ], "x-ms-correlation-request-id": [ - "ef65a48c-89a3-4049-9cbb-f0d84065a93c" + "939c0338-3d0b-4711-9523-bd0114da1af0" ], "x-ms-arm-service-request-id": [ - "d856191d-0711-482e-8b09-e84a26d5a480" + "7d387868-0212-4099-92f6-561e179646ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1511,16 +1338,16 @@ "11991" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045146Z:ef65a48c-89a3-4049-9cbb-f0d84065a93c" + "CENTRALUSEUAP:20210418T062306Z:939c0338-3d0b-4711-9523-bd0114da1af0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:46 GMT" + "Sun, 18 Apr 2021 06:23:05 GMT" ], "Content-Length": [ - "7395" + "786" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1529,26 +1356,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347\",\r\n \"etag\": \"W/\\\"99437f87-eadc-4b1c-9d14-74f50ad0c6a9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"221e6819-5aeb-492b-afa7-df40bf266127\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM34722\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/securityRules/a2aVM34722\",\r\n \"etag\": \"W/\\\"99437f87-eadc-4b1c-9d14-74f50ad0c6a9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"99437f87-eadc-4b1c-9d14-74f50ad0c6a9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"99437f87-eadc-4b1c-9d14-74f50ad0c6a9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"99437f87-eadc-4b1c-9d14-74f50ad0c6a9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"99437f87-eadc-4b1c-9d14-74f50ad0c6a9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"99437f87-eadc-4b1c-9d14-74f50ad0c6a9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"99437f87-eadc-4b1c-9d14-74f50ad0c6a9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/publicIPAddresses/a2aVM347\",\r\n \"etag\": \"W/\\\"7b868e24-2fdb-478f-9164-3a5f2d5bcf4e\\\"\",\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e25b1fd4-2ba6-4dea-aafb-82d0968aff41\",\r\n \"ipAddress\": \"40.76.233.254\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain347\",\r\n \"fqdn\": \"domain347.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/publicIPAddresses/a2aVM347?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e668cf42-3dd2-40ea-b629-7edcbe24d9c9" + "923133b3-5ddb-4d58-a446-09f296c3b6b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1562,13 +1389,13 @@ "gateway" ], "x-ms-request-id": [ - "06932e25-2ece-487f-9df4-1f54868bff7c" + "577662f4-2f86-4054-83c1-4be6b47156ca" ], "x-ms-correlation-request-id": [ - "06932e25-2ece-487f-9df4-1f54868bff7c" + "577662f4-2f86-4054-83c1-4be6b47156ca" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045140Z:06932e25-2ece-487f-9df4-1f54868bff7c" + "CENTRALUSEUAP:20210418T062300Z:577662f4-2f86-4054-83c1-4be6b47156ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1577,7 +1404,7 @@ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:40 GMT" + "Sun, 18 Apr 2021 06:23:00 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1586,23 +1413,26 @@ "-1" ], "Content-Length": [ - "156" + "228" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/publicIPAddresses/a2aVM347' under resource group 'a2aVM347' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/networkSecurityGroups/a2aVM347' under resource group 'a2aVM347' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/publicIPAddresses/a2aVM347?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "923133b3-5ddb-4d58-a446-09f296c3b6b8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1613,16 +1443,16 @@ "no-cache" ], "ETag": [ - "W/\"10b01586-4e1c-4c93-94be-74534e744e96\"" + "W/\"6486bb80-ee81-4354-8210-82264a724fac\"" ], "x-ms-request-id": [ - "d20cd7e4-312a-4b9d-9c6f-30835d47e03b" + "89babdc6-148f-4265-a278-7dbe2bc3ef6b" ], "x-ms-correlation-request-id": [ - "16bf9525-ecd3-467d-a120-54511e0197fd" + "381ad8e0-c83d-4407-aba5-f6de2532a7f0" ], "x-ms-arm-service-request-id": [ - "8cfa4ca6-93ff-4ed9-8a67-8efd3bef9a09" + "5c865a2a-e244-4c0c-9450-e12d55214bfc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1632,19 +1462,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11995" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045149Z:16bf9525-ecd3-467d-a120-54511e0197fd" + "CENTRALUSEUAP:20210418T062304Z:381ad8e0-c83d-4407-aba5-f6de2532a7f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:48 GMT" + "Sun, 18 Apr 2021 06:23:04 GMT" ], "Content-Length": [ - "800" + "7388" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1653,32 +1483,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/publicIPAddresses/a2aVM347\",\r\n \"etag\": \"W/\\\"10b01586-4e1c-4c93-94be-74534e744e96\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d2b46fb2-f0d6-4401-9399-90f350c6c074\",\r\n \"ipAddress\": \"40.90.160.219\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain347\",\r\n \"fqdn\": \"domain347.southeastasia.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347\",\r\n \"etag\": \"W/\\\"6486bb80-ee81-4354-8210-82264a724fac\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"1f8842c7-1090-4ff0-97ab-ef9e40833af9\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM34722\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/securityRules/a2aVM34722\",\r\n \"etag\": \"W/\\\"6486bb80-ee81-4354-8210-82264a724fac\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"6486bb80-ee81-4354-8210-82264a724fac\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"6486bb80-ee81-4354-8210-82264a724fac\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"6486bb80-ee81-4354-8210-82264a724fac\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"6486bb80-ee81-4354-8210-82264a724fac\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"6486bb80-ee81-4354-8210-82264a724fac\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"6486bb80-ee81-4354-8210-82264a724fac\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"name\": \"a2aVM347\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"a2aVM34722\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b745caff-7cd6-4d16-bebd-163171cb2acd" + "923133b3-5ddb-4d58-a446-09f296c3b6b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "307" + "451" ] }, "ResponseHeaders": { @@ -1692,19 +1522,19 @@ "3" ], "x-ms-request-id": [ - "00f239f5-b4e4-4a77-a6c6-7c2067aee362" + "270d7bdc-91b2-4e35-b05a-603bcfad8fa4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/southeastasia/operations/00f239f5-b4e4-4a77-a6c6-7c2067aee362?api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/270d7bdc-91b2-4e35-b05a-603bcfad8fa4?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "10493271-9b8b-404f-80e8-9cbbc54eb5be" + "c368609c-2a78-444d-82bf-3c78e98de568" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "3ce8f08a-2dc7-4f9e-8fa0-45c3f9f8780d" + "935adf22-0e45-44de-a51d-38dc75b8f2f6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1714,19 +1544,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045143Z:10493271-9b8b-404f-80e8-9cbbc54eb5be" + "CENTRALUSEUAP:20210418T062301Z:c368609c-2a78-444d-82bf-3c78e98de568" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:42 GMT" + "Sun, 18 Apr 2021 06:23:01 GMT" ], "Content-Length": [ - "1113" + "7380" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1735,32 +1565,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347\",\r\n \"etag\": \"W/\\\"ad30ec69-4c94-47d9-9f04-852c46f5e765\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"552cf24b-6a82-4c2e-8695-b755a7913849\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347/subnets/a2aVM347\",\r\n \"etag\": \"W/\\\"ad30ec69-4c94-47d9-9f04-852c46f5e765\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347\",\r\n \"etag\": \"W/\\\"27364e16-ba67-4678-a6ad-8ec651ab65c4\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1f8842c7-1090-4ff0-97ab-ef9e40833af9\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM34722\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/securityRules/a2aVM34722\",\r\n \"etag\": \"W/\\\"27364e16-ba67-4678-a6ad-8ec651ab65c4\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"27364e16-ba67-4678-a6ad-8ec651ab65c4\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"27364e16-ba67-4678-a6ad-8ec651ab65c4\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"27364e16-ba67-4678-a6ad-8ec651ab65c4\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"27364e16-ba67-4678-a6ad-8ec651ab65c4\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"27364e16-ba67-4678-a6ad-8ec651ab65c4\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"27364e16-ba67-4678-a6ad-8ec651ab65c4\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"a2aVM34722\"\r\n }\r\n ]\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"name\": \"a2aVM347\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "493c81ca-ae63-4bb2-83c4-fbd80cbca7e8" + "923133b3-5ddb-4d58-a446-09f296c3b6b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "458" + "300" ] }, "ResponseHeaders": { @@ -1774,19 +1604,19 @@ "3" ], "x-ms-request-id": [ - "4ac1fa65-6233-40db-87c3-54882e543ab9" + "af930b1a-4c61-4a6d-9206-7c756df2b2b0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/southeastasia/operations/4ac1fa65-6233-40db-87c3-54882e543ab9?api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/af930b1a-4c61-4a6d-9206-7c756df2b2b0?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "31a4866b-5373-4bf5-b9cd-d575cc4bf0cc" + "8618cbb6-1fd3-4367-abb3-b68ee6dd422d" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "14c3c882-9e9a-4287-b948-e823a65a02e6" + "e9b1cec5-5db3-4bb4-913a-300069f1330d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1796,19 +1626,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045143Z:31a4866b-5373-4bf5-b9cd-d575cc4bf0cc" + "CENTRALUSEUAP:20210418T062302Z:8618cbb6-1fd3-4367-abb3-b68ee6dd422d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:42 GMT" + "Sun, 18 Apr 2021 06:23:02 GMT" ], "Content-Length": [ - "7387" + "1072" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1817,32 +1647,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347\",\r\n \"etag\": \"W/\\\"302bfa9a-c01a-4da6-a5b4-827667d22740\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"221e6819-5aeb-492b-afa7-df40bf266127\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM34722\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/securityRules/a2aVM34722\",\r\n \"etag\": \"W/\\\"302bfa9a-c01a-4da6-a5b4-827667d22740\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"302bfa9a-c01a-4da6-a5b4-827667d22740\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"302bfa9a-c01a-4da6-a5b4-827667d22740\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"302bfa9a-c01a-4da6-a5b4-827667d22740\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"302bfa9a-c01a-4da6-a5b4-827667d22740\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"302bfa9a-c01a-4da6-a5b4-827667d22740\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"302bfa9a-c01a-4da6-a5b4-827667d22740\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347\",\r\n \"etag\": \"W/\\\"a0988539-fbbd-4ba3-ac56-5b8e71cf3c75\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"1bf9bba4-5a66-41b4-9751-335448966906\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347/subnets/a2aVM347\",\r\n \"etag\": \"W/\\\"a0988539-fbbd-4ba3-ac56-5b8e71cf3c75\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/publicIPAddresses/a2aVM347?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/publicIPAddresses/a2aVM347?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain347\"\r\n }\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain347\"\r\n }\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f68ebc00-9387-4253-ad98-438749f1759f" + "923133b3-5ddb-4d58-a446-09f296c3b6b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "241" + "234" ] }, "ResponseHeaders": { @@ -1856,19 +1686,19 @@ "1" ], "x-ms-request-id": [ - "761f60ba-b311-413c-9829-c6cd5cfaf5af" + "e2caff43-5066-44d4-bfc5-fcb351d1d3d3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/southeastasia/operations/761f60ba-b311-413c-9829-c6cd5cfaf5af?api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/e2caff43-5066-44d4-bfc5-fcb351d1d3d3?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "4e00073c-3eef-4c66-b386-e63ac10c38ce" + "17a567ac-5d3d-46e2-a4fd-0b7806109ba4" ], "Azure-AsyncNotification": [ "Enabled" ], "x-ms-arm-service-request-id": [ - "8a95707e-6cfc-4fe0-aef6-266e9fa46e74" + "7f34ed3e-3a3e-47c2-a3f8-ddcc1f002a22" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1881,16 +1711,16 @@ "1198" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045143Z:4e00073c-3eef-4c66-b386-e63ac10c38ce" + "CENTRALUSEUAP:20210418T062302Z:17a567ac-5d3d-46e2-a4fd-0b7806109ba4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:43 GMT" + "Sun, 18 Apr 2021 06:23:02 GMT" ], "Content-Length": [ - "764" + "750" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1899,20 +1729,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/publicIPAddresses/a2aVM347\",\r\n \"etag\": \"W/\\\"b8f4c647-edda-49a0-8d51-3f68906886ed\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d2b46fb2-f0d6-4401-9399-90f350c6c074\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain347\",\r\n \"fqdn\": \"domain347.southeastasia.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/publicIPAddresses/a2aVM347\",\r\n \"etag\": \"W/\\\"2378ccea-6f7a-4ccf-a1df-a79e415f012f\\\"\",\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e25b1fd4-2ba6-4dea-aafb-82d0968aff41\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain347\",\r\n \"fqdn\": \"domain347.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/southeastasia/operations/761f60ba-b311-413c-9829-c6cd5cfaf5af?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc2MWY2MGJhLWIzMTEtNDEzYy05ODI5LWM2Y2Q1Y2ZhZjVhZj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/e2caff43-5066-44d4-bfc5-fcb351d1d3d3?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZTJjYWZmNDMtNTA2Ni00NGQ0LWJmYzUtZmNiMzUxZDFkM2QzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "923133b3-5ddb-4d58-a446-09f296c3b6b8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1926,13 +1759,13 @@ "2" ], "x-ms-request-id": [ - "f0bf4c8a-e8c4-4da3-871b-a24d13e8f451" + "d93e658d-ce0b-4445-a965-95461f88fc69" ], "x-ms-correlation-request-id": [ - "47882728-f477-4071-b600-1162c0492e3a" + "2df7d95e-b852-45ca-86d2-b11678458818" ], "x-ms-arm-service-request-id": [ - "08bb0cd9-85ea-44ff-a302-63f2bbfe0fa2" + "224fa365-fe93-47e7-9507-cc541a19a616" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1942,16 +1775,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045145Z:47882728-f477-4071-b600-1162c0492e3a" + "CENTRALUSEUAP:20210418T062304Z:2df7d95e-b852-45ca-86d2-b11678458818" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:44 GMT" + "Sun, 18 Apr 2021 06:23:03 GMT" ], "Content-Length": [ "30" @@ -1967,16 +1800,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/southeastasia/operations/761f60ba-b311-413c-9829-c6cd5cfaf5af?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc2MWY2MGJhLWIzMTEtNDEzYy05ODI5LWM2Y2Q1Y2ZhZjVhZj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/e2caff43-5066-44d4-bfc5-fcb351d1d3d3?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZTJjYWZmNDMtNTA2Ni00NGQ0LWJmYzUtZmNiMzUxZDFkM2QzP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "923133b3-5ddb-4d58-a446-09f296c3b6b8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1986,17 +1822,14 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "2" - ], "x-ms-request-id": [ - "706acc9b-3ae3-4c9b-99ea-d23098437e7d" + "2ec6805b-1e92-47e7-9df6-226946799411" ], "x-ms-correlation-request-id": [ - "ed39398e-e2da-4d4c-a641-36ceacf5ef24" + "8e73034a-bbc4-49ff-8765-76b0738f8538" ], "x-ms-arm-service-request-id": [ - "1b1de161-1ebf-48d5-9388-98f37876835d" + "54df1d95-2288-41b2-bcfb-72178e068ed7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2006,19 +1839,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11992" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045147Z:ed39398e-e2da-4d4c-a641-36ceacf5ef24" + "CENTRALUSEUAP:20210418T062306Z:8e73034a-bbc4-49ff-8765-76b0738f8538" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:46 GMT" + "Sun, 18 Apr 2021 06:23:05 GMT" ], "Content-Length": [ - "30" + "29" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2027,20 +1860,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/southeastasia/operations/761f60ba-b311-413c-9829-c6cd5cfaf5af?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzc2MWY2MGJhLWIzMTEtNDEzYy05ODI5LWM2Y2Q1Y2ZhZjVhZj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/270d7bdc-91b2-4e35-b05a-603bcfad8fa4?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjcwZDdiZGMtOTFiMi00ZTM1LWIwNWEtNjAzYmNmYWQ4ZmE0P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "923133b3-5ddb-4d58-a446-09f296c3b6b8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -2051,13 +1887,13 @@ "no-cache" ], "x-ms-request-id": [ - "da678a9c-f499-4562-9092-cf50e509ab3b" + "82d39583-b66f-4fb4-b919-7cfbd84dee76" ], "x-ms-correlation-request-id": [ - "700d0087-ac4e-4c3f-97e4-60eb6a0993c2" + "56f4fe91-bb7f-44ef-b07b-7d6ca310cd14" ], "x-ms-arm-service-request-id": [ - "3e36d0f1-30cb-4a14-ba12-7a0efc1259c6" + "97cb4702-b45c-4cbc-acd7-b4842da8e7ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2067,16 +1903,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11996" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045149Z:700d0087-ac4e-4c3f-97e4-60eb6a0993c2" + "CENTRALUSEUAP:20210418T062304Z:56f4fe91-bb7f-44ef-b07b-7d6ca310cd14" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:48 GMT" + "Sun, 18 Apr 2021 06:23:03 GMT" ], "Content-Length": [ "29" @@ -2092,16 +1928,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/southeastasia/operations/00f239f5-b4e4-4a77-a6c6-7c2067aee362?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzAwZjIzOWY1LWI0ZTQtNGE3Ny1hNmM2LTdjMjA2N2FlZTM2Mj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/af930b1a-4c61-4a6d-9206-7c756df2b2b0?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYWY5MzBiMWEtNGM2MS00YTZkLTkyMDYtN2M3NTZkZjJiMmIwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "923133b3-5ddb-4d58-a446-09f296c3b6b8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -2112,13 +1951,13 @@ "no-cache" ], "x-ms-request-id": [ - "afe614a4-3edf-4ac8-98f3-781ed845e7e2" + "eb4124e4-68ef-484d-ae02-8467b3345635" ], "x-ms-correlation-request-id": [ - "e9172b1e-1ba2-4079-8ffa-bca3b5c9994b" + "ac387469-7bd0-4600-b134-029b11eeea9d" ], "x-ms-arm-service-request-id": [ - "5ed3c687-1d9b-4561-acc3-2fa80dd0d874" + "bd08b508-968e-42b0-830e-ad0d36b1620f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2131,13 +1970,13 @@ "11994" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045146Z:e9172b1e-1ba2-4079-8ffa-bca3b5c9994b" + "CENTRALUSEUAP:20210418T062305Z:ac387469-7bd0-4600-b134-029b11eeea9d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:45 GMT" + "Sun, 18 Apr 2021 06:23:05 GMT" ], "Content-Length": [ "29" @@ -2153,16 +1992,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/southeastasia/operations/4ac1fa65-6233-40db-87c3-54882e543ab9?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzRhYzFmYTY1LTYyMzMtNDBkYi04N2MzLTU0ODgyZTU0M2FiOT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347/subnets/a2aVM347\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/publicIPAddresses/a2aVM347\"\r\n }\r\n },\r\n \"name\": \"a2aVM347\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "923133b3-5ddb-4d58-a446-09f296c3b6b8" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "803" ] }, "ResponseHeaders": { @@ -2173,13 +2024,19 @@ "no-cache" ], "x-ms-request-id": [ - "529f154e-05f6-48de-b7e6-fc6237e9604d" + "b22edc8e-d521-42ce-ba07-1e84960ed747" + ], + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/b22edc8e-d521-42ce-ba07-1e84960ed747?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "1d726d92-a9cc-4610-8a4d-c976b3ac2212" + "b2e76577-f183-4664-bd80-e9c264661354" + ], + "Azure-AsyncNotification": [ + "Enabled" ], "x-ms-arm-service-request-id": [ - "edbde6de-d963-4aca-b830-dd51b25c0d2d" + "a30be715-e199-4d19-b848-7b9a50bbf2b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2188,20 +2045,20 @@ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045146Z:1d726d92-a9cc-4610-8a4d-c976b3ac2212" + "CENTRALUSEUAP:20210418T062307Z:b2e76577-f183-4664-bd80-e9c264661354" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:46 GMT" + "Sun, 18 Apr 2021 06:23:07 GMT" ], "Content-Length": [ - "29" + "1913" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2210,32 +2067,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\",\r\n \"etag\": \"W/\\\"67a40932-9ebd-4628-9150-396d7fde23e8\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"99248bcb-42b6-4204-8385-0b9d0d2946bc\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347/ipConfigurations/a2aVM347\",\r\n \"etag\": \"W/\\\"67a40932-9ebd-4628-9150-396d7fde23e8\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/publicIPAddresses/a2aVM347\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347/subnets/a2aVM347\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"us35sg1glk0edf0rgnkerftjag.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Compute/virtualMachines/a2aVM347?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347/subnets/a2aVM347\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/publicIPAddresses/a2aVM347\"\r\n }\r\n },\r\n \"name\": \"a2aVM347\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM347\",\r\n \"adminUsername\": \"adminUser\",\r\n \"adminPassword\": \"System.Security.SecureString\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\"\r\n }\r\n ]\r\n }\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6955b1da-942b-48f3-9163-f43248127692" + "923133b3-5ddb-4d58-a446-09f296c3b6b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "810" + "763" ] }, "ResponseHeaders": { @@ -2245,42 +2102,45 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "c7560052-bb74-4177-8a71-19c26605f93f" + "Retry-After": [ + "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Network/locations/southeastasia/operations/c7560052-bb74-4177-8a71-19c26605f93f?api-version=2017-10-01" - ], - "x-ms-correlation-request-id": [ - "f741a52f-f82c-450e-95d9-c03dd4f01ede" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/cb02184c-2a3d-4cbd-83de-5a8711405928?api-version=2020-12-01" ], "Azure-AsyncNotification": [ "Enabled" ], - "x-ms-arm-service-request-id": [ - "5ced0c20-8ee5-439e-94cf-a0915a1f3d13" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "cb02184c-2a3d-4cbd-83de-5a8711405928" + ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" + ], + "x-ms-correlation-request-id": [ + "b04d1b8a-03b7-4e25-969c-7be2dfa00013" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045150Z:f741a52f-f82c-450e-95d9-c03dd4f01ede" + "CENTRALUSEUAP:20210418T062310Z:b04d1b8a-03b7-4e25-969c-7be2dfa00013" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:49 GMT" + "Sun, 18 Apr 2021 06:23:09 GMT" ], "Content-Length": [ - "1920" + "1673" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2289,32 +2149,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\",\r\n \"etag\": \"W/\\\"95dad298-d920-46f9-adfc-eaf62cea2928\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b7b37889-d238-44cf-aaa9-aaff10a5c1ba\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347/ipConfigurations/a2aVM347\",\r\n \"etag\": \"W/\\\"95dad298-d920-46f9-adfc-eaf62cea2928\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/publicIPAddresses/a2aVM347\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347/subnets/a2aVM347\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"jpzcyvmcnixezbuvw3k0pejyjb.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkSecurityGroups/a2aVM347\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Compute/virtualMachines/a2aVM347\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"a200794d-f23f-4c21-a447-2380e98f31fb\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM347\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Compute/virtualMachines/a2aVM347?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL2EyYVZNMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM347\",\r\n \"adminUsername\": \"adminUser\",\r\n \"adminPassword\": \"System.Security.SecureString\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\"\r\n }\r\n ]\r\n }\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"southeastasia\"\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/cb02184c-2a3d-4cbd-83de-5a8711405928?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvY2IwMjE4NGMtMmEzZC00Y2JkLTgzZGUtNWE4NzExNDA1OTI4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7a5e132-ae20-4514-8f94-9f64283bcaf1" - ], - "Accept-Language": [ - "en-US" + "923133b3-5ddb-4d58-a446-09f296c3b6b8" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "770" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2325,44 +2176,38 @@ "no-cache" ], "Retry-After": [ - "10" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Compute/locations/southeastasia/operations/1588ecf2-b86b-409d-812a-f745bef87411?api-version=2019-12-01" - ], - "Azure-AsyncNotification": [ - "Enabled" + "35" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/PutVM3Min;429,Microsoft.Compute/PutVM30Min;2149" + "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "1588ecf2-b86b-409d-812a-f745bef87411" + "8e027dba-aa70-4d07-900a-32630720bb30" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" ], "x-ms-correlation-request-id": [ - "fefdfe3c-cc1b-4d37-b3a5-0d95415b266b" + "36242088-c842-4768-9836-d0e916c5c284" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045153Z:fefdfe3c-cc1b-4d37-b3a5-0d95415b266b" + "CENTRALUSEUAP:20210418T062320Z:36242088-c842-4768-9836-d0e916c5c284" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:51:53 GMT" + "Sun, 18 Apr 2021 06:23:19 GMT" ], "Content-Length": [ - "1465" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2371,20 +2216,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Compute/virtualMachines/a2aVM347\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"vmId\": \"8717bdbd-f3b4-41bb-8fcd-466ecef9be30\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM347\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"startTime\": \"2021-04-18T11:53:09.3944934+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cb02184c-2a3d-4cbd-83de-5a8711405928\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Compute/locations/southeastasia/operations/1588ecf2-b86b-409d-812a-f745bef87411?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE1ODhlY2YyLWI4NmItNDA5ZC04MTJhLWY3NDViZWY4NzQxMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/cb02184c-2a3d-4cbd-83de-5a8711405928?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvY2IwMjE4NGMtMmEzZC00Y2JkLTgzZGUtNWE4NzExNDA1OTI4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "923133b3-5ddb-4d58-a446-09f296c3b6b8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2394,36 +2242,33 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "35" - ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29994" + "Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "970eb59a-2493-491c-af5f-34f71bdaabb4" + "9d80b79f-034f-419f-a611-383a3edac289" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11988" ], "x-ms-correlation-request-id": [ - "8d0560f7-e0b8-47e7-a416-bf7958813497" + "39091ab9-290c-43ed-9d62-866b5e363178" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045203Z:8d0560f7-e0b8-47e7-a416-bf7958813497" + "CENTRALUSEUAP:20210418T062355Z:39091ab9-290c-43ed-9d62-866b5e363178" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:52:02 GMT" + "Sun, 18 Apr 2021 06:23:55 GMT" ], "Content-Length": [ "134" @@ -2435,20 +2280,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-05-02T10:21:52.4882063+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1588ecf2-b86b-409d-812a-f745bef87411\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-04-18T11:53:09.3944934+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cb02184c-2a3d-4cbd-83de-5a8711405928\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Compute/locations/southeastasia/operations/1588ecf2-b86b-409d-812a-f745bef87411?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE1ODhlY2YyLWI4NmItNDA5ZC04MTJhLWY3NDViZWY4NzQxMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/cb02184c-2a3d-4cbd-83de-5a8711405928?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvY2IwMjE4NGMtMmEzZC00Y2JkLTgzZGUtNWE4NzExNDA1OTI4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "923133b3-5ddb-4d58-a446-09f296c3b6b8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2459,32 +2307,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29992" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "eb7b0b70-3c0d-4ede-ba94-d95657fa2c78" + "9ed130c8-53d3-45bc-a2cb-a6ea6114501e" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11987" ], "x-ms-correlation-request-id": [ - "72045b53-bb6f-4904-af1e-60b60616b01f" + "98a9a0f1-d868-4dba-8748-58116906a2df" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045238Z:72045b53-bb6f-4904-af1e-60b60616b01f" + "CENTRALUSEUAP:20210418T062431Z:98a9a0f1-d868-4dba-8748-58116906a2df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:52:37 GMT" + "Sun, 18 Apr 2021 06:24:31 GMT" ], "Content-Length": [ "134" @@ -2496,20 +2344,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-05-02T10:21:52.4882063+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"1588ecf2-b86b-409d-812a-f745bef87411\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-04-18T11:53:09.3944934+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"cb02184c-2a3d-4cbd-83de-5a8711405928\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/providers/Microsoft.Compute/locations/southeastasia/operations/1588ecf2-b86b-409d-812a-f745bef87411?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzE1ODhlY2YyLWI4NmItNDA5ZC04MTJhLWY3NDViZWY4NzQxMT9hcGktdmVyc2lvbj0yMDE5LTEyLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/cb02184c-2a3d-4cbd-83de-5a8711405928?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvY2IwMjE4NGMtMmEzZC00Y2JkLTgzZGUtNWE4NzExNDA1OTI4P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "923133b3-5ddb-4d58-a446-09f296c3b6b8" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2520,32 +2371,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29990" + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29992" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "9957b05b-c4e6-4283-9d42-a2b5172b7630" + "7eee1593-f497-4e08-a550-b06429f59b0f" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11986" ], "x-ms-correlation-request-id": [ - "6dc1668f-5336-40cf-aea1-69f1c3dfae30" + "c890cda1-fdda-4f34-a463-8a6a5c23fdff" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045313Z:6dc1668f-5336-40cf-aea1-69f1c3dfae30" + "CENTRALUSEUAP:20210418T062506Z:c890cda1-fdda-4f34-a463-8a6a5c23fdff" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:53:12 GMT" + "Sun, 18 Apr 2021 06:25:06 GMT" ], "Content-Length": [ "184" @@ -2557,26 +2408,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-05-02T10:21:52.4882063+05:30\",\r\n \"endTime\": \"2020-05-02T10:22:51.0820015+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"1588ecf2-b86b-409d-812a-f745bef87411\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-04-18T11:53:09.3944934+05:30\",\r\n \"endTime\": \"2021-04-18T11:54:32.0039647+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"cb02184c-2a3d-4cbd-83de-5a8711405928\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/A2APowershellTestRg347?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/A2APowershellTestRg347?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4c1e16f9-e0be-4d89-adf2-46400d31dab2" + "ad935c78-1bde-49c5-a20c-6ba85063eb16" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2593,16 +2444,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1191" ], "x-ms-request-id": [ - "682d707a-5cb6-4c0d-9dfc-182afc4b01a6" + "3ea2db69-9bc0-4e58-9023-fd2adf125d53" ], "x-ms-correlation-request-id": [ - "682d707a-5cb6-4c0d-9dfc-182afc4b01a6" + "3ea2db69-9bc0-4e58-9023-fd2adf125d53" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045315Z:682d707a-5cb6-4c0d-9dfc-182afc4b01a6" + "CENTRALUSEUAP:20210418T062508Z:3ea2db69-9bc0-4e58-9023-fd2adf125d53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2611,7 +2462,7 @@ "nosniff" ], "Date": [ - "Sat, 02 May 2020 04:53:14 GMT" + "Sun, 18 Apr 2021 06:25:08 GMT" ], "Content-Length": [ "204" @@ -2623,26 +2474,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347\",\r\n \"name\": \"A2APowershellTestRg347\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347\",\r\n \"name\": \"A2APowershellTestRg347\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c3814293-6400-483e-aed8-03772e0afdca-2020-05-02 04:53:35Z-P" + "deecda78-b063-4489-bd14-5abb17a779e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2662,10 +2513,10 @@ "nosniff" ], "x-ms-request-id": [ - "485a61c0-ae32-428c-8168-185aa2333915" + "08bffb9d-a870-451e-8ccf-4a10d7bc2aff" ], "x-ms-client-request-id": [ - "c3814293-6400-483e-aed8-03772e0afdca-2020-05-02 04:53:35Z-P" + "deecda78-b063-4489-bd14-5abb17a779e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2674,16 +2525,16 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "199" + "209" ], "x-ms-correlation-request-id": [ - "485a61c0-ae32-428c-8168-185aa2333915" + "08bffb9d-a870-451e-8ccf-4a10d7bc2aff" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045339Z:485a61c0-ae32-428c-8168-185aa2333915" + "CENTRALUSEUAP:20210418T062532Z:08bffb9d-a870-451e-8ccf-4a10d7bc2aff" ], "Date": [ - "Sat, 02 May 2020 04:53:38 GMT" + "Sun, 18 Apr 2021 06:25:32 GMT" ], "Content-Length": [ "478" @@ -2695,26 +2546,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"A2APowershellTest347\",\r\n \"etag\": \"W/\\\"datetime'2020-05-02T04%3A53%3A38.8401222Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest347\",\r\n \"etag\": \"W/\\\"datetime'2021-04-18T06%3A25%3A32.1974944Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3354a93c-2689-491f-99b8-b8368566e0af-2020-05-02 04:53:59Z-P" + "f7878872-d16b-4eaf-9af3-591b5a0f86d6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, "ResponseHeaders": { @@ -2728,10 +2579,10 @@ "nosniff" ], "x-ms-request-id": [ - "953c5d98-8071-4821-ae11-223536e859e9" + "ea03f0a4-d40a-4c86-ad43-8f03acafd898" ], "x-ms-client-request-id": [ - "3354a93c-2689-491f-99b8-b8368566e0af-2020-05-02 04:53:59Z-P" + "f7878872-d16b-4eaf-9af3-591b5a0f86d6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2740,16 +2591,16 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11983" ], "x-ms-correlation-request-id": [ - "953c5d98-8071-4821-ae11-223536e859e9" + "ea03f0a4-d40a-4c86-ad43-8f03acafd898" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045359Z:953c5d98-8071-4821-ae11-223536e859e9" + "CENTRALUSEUAP:20210418T062552Z:ea03f0a4-d40a-4c86-ad43-8f03acafd898" ], "Date": [ - "Sat, 02 May 2020 04:53:58 GMT" + "Sun, 18 Apr 2021 06:25:52 GMT" ], "Content-Length": [ "478" @@ -2761,17 +2612,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"southeastasia\",\r\n \"name\": \"A2APowershellTest347\",\r\n \"etag\": \"W/\\\"datetime'2020-05-02T04%3A53%3A38.8401222Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest347\",\r\n \"etag\": \"W/\\\"datetime'2021-04-18T06%3A25%3A32.1974944Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9leHRlbmRlZEluZm9ybWF0aW9uL3ZhdWx0RXh0ZW5kZWRJbmZvP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9leHRlbmRlZEluZm9ybWF0aW9uL3ZhdWx0RXh0ZW5kZWRJbmZvP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6228a16c-a600-450c-a664-b8bd770c5d4a-2020-05-02 04:53:59Z-Ps" + "b48bca26-0223-4857-89ae-d27e6c7aa876" ], "Accept-Language": [ "en-US" @@ -2780,10 +2631,10 @@ "" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, "ResponseHeaders": { @@ -2797,10 +2648,10 @@ "nosniff" ], "x-ms-request-id": [ - "8b306a5f-4057-4b00-a855-37fe98a80a0b" + "e5f98f1e-768a-4bb1-a99f-76bff5d4ab5c" ], "x-ms-client-request-id": [ - "6228a16c-a600-450c-a664-b8bd770c5d4a-2020-05-02 04:53:59Z-Ps" + "b48bca26-0223-4857-89ae-d27e6c7aa876" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2809,16 +2660,16 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11982" ], "x-ms-correlation-request-id": [ - "8b306a5f-4057-4b00-a855-37fe98a80a0b" + "e5f98f1e-768a-4bb1-a99f-76bff5d4ab5c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045359Z:8b306a5f-4057-4b00-a855-37fe98a80a0b" + "CENTRALUSEUAP:20210418T062553Z:e5f98f1e-768a-4bb1-a99f-76bff5d4ab5c" ], "Date": [ - "Sat, 02 May 2020 04:53:59 GMT" + "Sun, 18 Apr 2021 06:25:52 GMT" ], "Content-Length": [ "86" @@ -2834,13 +2685,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9leHRlbmRlZEluZm9ybWF0aW9uL3ZhdWx0RXh0ZW5kZWRJbmZvP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9leHRlbmRlZEluZm9ybWF0aW9uL3ZhdWx0RXh0ZW5kZWRJbmZvP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"uUml5H4hgknUDDy+WL5KCw==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"DRVXATasw42YJzREjf2kAA==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2f75a6a9-4167-4637-8292-4bb58da2f4d5-2020-05-02 04:54:00Z-Ps" + "b48bca26-0223-4857-89ae-d27e6c7aa876" ], "Accept-Language": [ "en-US" @@ -2849,10 +2700,10 @@ "" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2872,10 +2723,10 @@ "nosniff" ], "x-ms-request-id": [ - "179b9c6a-415f-482a-8b90-737ad70ab361" + "dbf74750-e7ed-43ba-bdc0-2294da25b534" ], "x-ms-client-request-id": [ - "2f75a6a9-4167-4637-8292-4bb58da2f4d5-2020-05-02 04:54:00Z-Ps" + "b48bca26-0223-4857-89ae-d27e6c7aa876" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2884,16 +2735,16 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-correlation-request-id": [ - "179b9c6a-415f-482a-8b90-737ad70ab361" + "dbf74750-e7ed-43ba-bdc0-2294da25b534" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045400Z:179b9c6a-415f-482a-8b90-737ad70ab361" + "CENTRALUSEUAP:20210418T062553Z:dbf74750-e7ed-43ba-bdc0-2294da25b534" ], "Date": [ - "Sat, 02 May 2020 04:53:59 GMT" + "Sun, 18 Apr 2021 06:25:53 GMT" ], "Content-Length": [ "412" @@ -2905,26 +2756,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"31c328bd-300f-4dde-967c-bca12f6a740d\",\r\n \"properties\": {\r\n \"integrityKey\": \"uUml5H4hgknUDDy+WL5KCw==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"65970d14-18ee-4597-8a32-919f3be541fd\",\r\n \"properties\": {\r\n \"integrityKey\": \"DRVXATasw42YJzREjf2kAA==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50a1701f-1252-4c71-a709-05c5be7c0907" + "b48bca26-0223-4857-89ae-d27e6c7aa876" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, "ResponseHeaders": { @@ -2938,10 +2789,10 @@ "nosniff" ], "x-ms-request-id": [ - "ce7d3fb5-f174-4fb6-94d7-eb76905cd027" + "062e7f36-f9a7-4171-b42c-6a6b0bac4fb8" ], "x-ms-client-request-id": [ - "50a1701f-1252-4c71-a709-05c5be7c0907" + "b48bca26-0223-4857-89ae-d27e6c7aa876" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2950,16 +2801,16 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11981" ], "x-ms-correlation-request-id": [ - "ce7d3fb5-f174-4fb6-94d7-eb76905cd027" + "062e7f36-f9a7-4171-b42c-6a6b0bac4fb8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045400Z:ce7d3fb5-f174-4fb6-94d7-eb76905cd027" + "CENTRALUSEUAP:20210418T062554Z:062e7f36-f9a7-4171-b42c-6a6b0bac4fb8" ], "Date": [ - "Sat, 02 May 2020 04:54:00 GMT" + "Sun, 18 Apr 2021 06:25:53 GMT" ], "Content-Length": [ "490" @@ -2971,35 +2822,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"A2APowershellTest347\",\r\n \"etag\": \"W/\\\"datetime'2020-05-02T04%3A54%3A00.5158833Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347\",\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\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest347\",\r\n \"etag\": \"W/\\\"datetime'2021-04-18T06%3A25%3A53.8020198Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347\",\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/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Nz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Nz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"southeastasia\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"EastUS\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3ac30aef-53cf-49ca-8326-87c6890594b1-2020-05-02 04:54:00Z-Ps" + "a366fc6c-cd43-4dfb-ab9e-4bfc43901e0e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391640995)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996440995)\\/\",\"ClientRequestId\":\"3ac30aef-53cf-49ca-8326-87c6890594b1-2020-05-02 04:54:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5Xl1Xbh7ZoGMQuLSYqOsjh4/isCHaK99cw5XEdMP/+A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723554429)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328354429)\\/\",\"ClientRequestId\":\"873d4327-cebc-4052-be25-ddf5c3efc79a-2021-04-18 06:25:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Wtvkxv/V0VoBr++x/Sj67r7rlcpxWgKnduJ3RWTUztw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "126" + "119" ] }, "ResponseHeaders": { @@ -3010,41 +2861,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/operationresults/045c8105-ea66-4d0a-a8d6-e9db05564ee3?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/operationresults/52b5dcd8-dedc-44ff-91c6-7b689fa751fb?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3", - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationOperationStatus/045c8105-ea66-4d0a-a8d6-e9db05564ee3?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationOperationStatus/52b5dcd8-dedc-44ff-91c6-7b689fa751fb?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3ac30aef-53cf-49ca-8326-87c6890594b1-2020-05-02 04:54:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "a366fc6c-cd43-4dfb-ab9e-4bfc43901e0e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-correlation-request-id": [ - "bf117163-e74d-4cfd-9b61-4052f32876b9" + "5fa61556-10a3-47f3-9818-60cdcb69cc6e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045402Z:bf117163-e74d-4cfd-9b61-4052f32876b9" + "CENTRALUSEUAP:20210418T062556Z:5fa61556-10a3-47f3-9818-60cdcb69cc6e" ], "Date": [ - "Sat, 02 May 2020 04:54:01 GMT" + "Sun, 18 Apr 2021 06:25:56 GMT" ], "Expires": [ "-1" @@ -3057,25 +2905,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMDQ1YzgxMDUtZWE2Ni00ZDBhLWE4ZDYtZTlkYjA1NTY0ZWUzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNTJiNWRjZDgtZGVkYy00NGZmLTkxYzYtN2I2ODlmYTc1MWZiP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "259d3b30-db24-4240-a63b-3df224fa751a-2020-05-02 04:54:02Z-Ps" + "a366fc6c-cd43-4dfb-ab9e-4bfc43901e0e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391642483)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996442483)\\/\",\"ClientRequestId\":\"259d3b30-db24-4240-a63b-3df224fa751a-2020-05-02 04:54:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"N3NaG5qJRwIg/ONEzUH1RfBl22N/rfK0jyxco/q/O+4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723556662)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328356662)\\/\",\"ClientRequestId\":\"8ae0cfe9-edc7-4559-9c00-3b829b798e04-2021-04-18 06:25:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zdO9+38z7RxCyx/SXf5886T1lAH7o7uhOwF5hyuKqBo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3086,38 +2934,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11985" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "259d3b30-db24-4240-a63b-3df224fa751a-2020-05-02 04:54:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a366fc6c-cd43-4dfb-ab9e-4bfc43901e0e" ], "x-ms-correlation-request-id": [ - "c39cea04-441a-48d0-bd12-e4b7e4e53df8" + "af8550f2-c234-46e0-a4df-ce117d7dbf57" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045402Z:c39cea04-441a-48d0-bd12-e4b7e4e53df8" + "CENTRALUSEUAP:20210418T062556Z:af8550f2-c234-46e0-a4df-ce117d7dbf57" ], "Date": [ - "Sat, 02 May 2020 04:54:02 GMT" + "Sun, 18 Apr 2021 06:25:56 GMT" ], "Content-Length": [ - "1343" + "1319" ], "Content-Type": [ "application/json" @@ -3126,29 +2971,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3ac30aef-53cf-49ca-8326-87c6890594b1-2020-05-02 04:54:00Z-Ps ActivityId: bf117163-e74d-4cfd-9b61-4052f32876b9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-05-02T04:54:02.1468109Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric347\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a366fc6c-cd43-4dfb-ab9e-4bfc43901e0e ActivityId: 5fa61556-10a3-47f3-9818-60cdcb69cc6e\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T06:25:56.4922221Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric347\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMDQ1YzgxMDUtZWE2Ni00ZDBhLWE4ZDYtZTlkYjA1NTY0ZWUzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNTJiNWRjZDgtZGVkYy00NGZmLTkxYzYtN2I2ODlmYTc1MWZiP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f711172f-264b-4565-bb6d-a1751cf62bda-2020-05-02 04:54:02Z-Ps" + "3397c3d1-2567-4b8d-a2bb-57b4a5bb9dfa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391642824)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996442824)\\/\",\"ClientRequestId\":\"f711172f-264b-4565-bb6d-a1751cf62bda-2020-05-02 04:54:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7XdtctCYJcv2UZllDgJMjqhO+HmbYwDGUZA0tuRc8uI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723557089)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328357089)\\/\",\"ClientRequestId\":\"72f06446-9d4c-4075-b71c-09a4a25bb6ba-2021-04-18 06:25:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dngcGfjp91ka1WQ5NoP8RkkxtcKoM/9cJVZiNsXZRcg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3159,38 +3004,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11984" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f711172f-264b-4565-bb6d-a1751cf62bda-2020-05-02 04:54:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3397c3d1-2567-4b8d-a2bb-57b4a5bb9dfa" ], "x-ms-correlation-request-id": [ - "b56f0073-6eec-49bf-8393-16408a7253f1" + "0899b51c-2db4-42a3-a769-1f46895a8d8c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045402Z:b56f0073-6eec-49bf-8393-16408a7253f1" + "CENTRALUSEUAP:20210418T062557Z:0899b51c-2db4-42a3-a769-1f46895a8d8c" ], "Date": [ - "Sat, 02 May 2020 04:54:02 GMT" + "Sun, 18 Apr 2021 06:25:57 GMT" ], "Content-Length": [ - "1343" + "1319" ], "Content-Type": [ "application/json" @@ -3199,29 +3041,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3ac30aef-53cf-49ca-8326-87c6890594b1-2020-05-02 04:54:00Z-Ps ActivityId: bf117163-e74d-4cfd-9b61-4052f32876b9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-05-02T04:54:02.1468109Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric347\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a366fc6c-cd43-4dfb-ab9e-4bfc43901e0e ActivityId: 5fa61556-10a3-47f3-9818-60cdcb69cc6e\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T06:25:56.4922221Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric347\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMDQ1YzgxMDUtZWE2Ni00ZDBhLWE4ZDYtZTlkYjA1NTY0ZWUzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNTJiNWRjZDgtZGVkYy00NGZmLTkxYzYtN2I2ODlmYTc1MWZiP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a70a7cad-a2fb-445d-ab73-e571321e697a-2020-05-02 04:54:23Z-Ps" + "bd124c8c-8d9f-4e8b-80f8-6f7e180dfa15" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391663181)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996463181)\\/\",\"ClientRequestId\":\"a70a7cad-a2fb-445d-ab73-e571321e697a-2020-05-02 04:54:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MXykVAsabs1aOKi6eDEMTWsN2p8biz4SyD0oznSc8HQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723577440)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328377440)\\/\",\"ClientRequestId\":\"6532908a-cad7-4e40-8aa7-eb6d202e5a36-2021-04-18 06:26:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"d4m7W6YUSSgCIUYr2iHgzKERei1S68fwThxf1cxpDzk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3232,38 +3074,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11981" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a70a7cad-a2fb-445d-ab73-e571321e697a-2020-05-02 04:54:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bd124c8c-8d9f-4e8b-80f8-6f7e180dfa15" ], "x-ms-correlation-request-id": [ - "27f9f2f4-8fbd-4b81-9ef0-4c15832f1c7a" + "b02ace3c-932b-4649-88fb-cd4ad88170a0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045423Z:27f9f2f4-8fbd-4b81-9ef0-4c15832f1c7a" + "CENTRALUSEUAP:20210418T062617Z:b02ace3c-932b-4649-88fb-cd4ad88170a0" ], "Date": [ - "Sat, 02 May 2020 04:54:22 GMT" + "Sun, 18 Apr 2021 06:26:17 GMT" ], "Content-Length": [ - "1343" + "1319" ], "Content-Type": [ "application/json" @@ -3272,29 +3111,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3ac30aef-53cf-49ca-8326-87c6890594b1-2020-05-02 04:54:00Z-Ps ActivityId: bf117163-e74d-4cfd-9b61-4052f32876b9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-05-02T04:54:02.1468109Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric347\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a366fc6c-cd43-4dfb-ab9e-4bfc43901e0e ActivityId: 5fa61556-10a3-47f3-9818-60cdcb69cc6e\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T06:25:56.4922221Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric347\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMDQ1YzgxMDUtZWE2Ni00ZDBhLWE4ZDYtZTlkYjA1NTY0ZWUzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNTJiNWRjZDgtZGVkYy00NGZmLTkxYzYtN2I2ODlmYTc1MWZiP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c58fbd60-9c6f-4660-baf6-eccc4a4fd5fa-2020-05-02 04:54:43Z-Ps" + "4a504666-92e4-4f71-9af7-adc499f22324" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391683536)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996483536)\\/\",\"ClientRequestId\":\"c58fbd60-9c6f-4660-baf6-eccc4a4fd5fa-2020-05-02 04:54:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8HsNqTLFYujC3rDml67zhYj+8J6+cutl3+czB+Vhtk4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723597770)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328397770)\\/\",\"ClientRequestId\":\"82bc6777-5fc3-4652-88e6-0c9f04a2e4b7-2021-04-18 06:26:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xvRCbHsCDyujbYoRbLBuLmGtSMt/hbUyxeNbySl1jXM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3304,39 +3143,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c58fbd60-9c6f-4660-baf6-eccc4a4fd5fa-2020-05-02 04:54:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "4a504666-92e4-4f71-9af7-adc499f22324" ], "x-ms-correlation-request-id": [ - "0b0574f3-aa1c-4b65-b6b7-965ceb961d0a" + "a67dcb64-2b6b-42cf-b3c1-90f222813547" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045443Z:0b0574f3-aa1c-4b65-b6b7-965ceb961d0a" + "CENTRALUSEUAP:20210418T062637Z:a67dcb64-2b6b-42cf-b3c1-90f222813547" ], "Date": [ - "Sat, 02 May 2020 04:54:42 GMT" + "Sun, 18 Apr 2021 06:26:37 GMT" ], "Content-Length": [ - "1343" + "1319" ], "Content-Type": [ "application/json" @@ -3345,29 +3181,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3ac30aef-53cf-49ca-8326-87c6890594b1-2020-05-02 04:54:00Z-Ps ActivityId: bf117163-e74d-4cfd-9b61-4052f32876b9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-05-02T04:54:02.1468109Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric347\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a366fc6c-cd43-4dfb-ab9e-4bfc43901e0e ActivityId: 5fa61556-10a3-47f3-9818-60cdcb69cc6e\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T06:25:56.4922221Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric347\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMDQ1YzgxMDUtZWE2Ni00ZDBhLWE4ZDYtZTlkYjA1NTY0ZWUzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNTJiNWRjZDgtZGVkYy00NGZmLTkxYzYtN2I2ODlmYTc1MWZiP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb5c0a99-062d-4392-99f2-a46d9d7da7af-2020-05-02 04:55:03Z-Ps" + "d5e466a6-6fd0-4946-b330-5d7ed1e4176f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391703888)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996503888)\\/\",\"ClientRequestId\":\"cb5c0a99-062d-4392-99f2-a46d9d7da7af-2020-05-02 04:55:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lNJfmCiSlC+Qc4BG73Dis4GeKSev1lfMa72MHmb8IZE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723618092)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328418092)\\/\",\"ClientRequestId\":\"68c32b18-538a-4a37-b97f-7304ec3db1ce-2021-04-18 06:26:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"llWvM0o/3mSVPsRbURGqBXhdKaCb5/KCQmz6e1bwh88=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3378,38 +3214,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11977" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "cb5c0a99-062d-4392-99f2-a46d9d7da7af-2020-05-02 04:55:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d5e466a6-6fd0-4946-b330-5d7ed1e4176f" ], "x-ms-correlation-request-id": [ - "8d7e750a-491c-472a-b1cd-aa2c5a4ee043" + "552d4f17-c51c-40af-8e0d-56ee7309e997" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045504Z:8d7e750a-491c-472a-b1cd-aa2c5a4ee043" + "CENTRALUSEUAP:20210418T062658Z:552d4f17-c51c-40af-8e0d-56ee7309e997" ], "Date": [ - "Sat, 02 May 2020 04:55:03 GMT" + "Sun, 18 Apr 2021 06:26:57 GMT" ], "Content-Length": [ - "1343" + "1319" ], "Content-Type": [ "application/json" @@ -3418,29 +3251,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3ac30aef-53cf-49ca-8326-87c6890594b1-2020-05-02 04:54:00Z-Ps ActivityId: bf117163-e74d-4cfd-9b61-4052f32876b9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-05-02T04:54:02.1468109Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric347\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a366fc6c-cd43-4dfb-ab9e-4bfc43901e0e ActivityId: 5fa61556-10a3-47f3-9818-60cdcb69cc6e\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T06:26:46.2226669Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric347\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMDQ1YzgxMDUtZWE2Ni00ZDBhLWE4ZDYtZTlkYjA1NTY0ZWUzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNTJiNWRjZDgtZGVkYy00NGZmLTkxYzYtN2I2ODlmYTc1MWZiP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78a3bfca-45bd-4209-83d1-476f52f7fcbd-2020-05-02 04:55:24Z-Ps" + "df5b637a-5032-48b6-881d-72f7f5849cf7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391724433)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996524433)\\/\",\"ClientRequestId\":\"78a3bfca-45bd-4209-83d1-476f52f7fcbd-2020-05-02 04:55:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MUuRUnlyfRelgTvQ6mIph57LrIw783ZZpPEbJAkn854=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723638408)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328438408)\\/\",\"ClientRequestId\":\"2cbec8a6-0928-4317-8147-7b9edf386486-2021-04-18 06:27:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"g9l3n64yU4TMGJTiSfUWHqOOV+mbNA1E48t+rIGsV0U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3451,38 +3284,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11975" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "78a3bfca-45bd-4209-83d1-476f52f7fcbd-2020-05-02 04:55:24Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "df5b637a-5032-48b6-881d-72f7f5849cf7" ], "x-ms-correlation-request-id": [ - "79fabde0-b68a-4709-8026-e1514344a1c5" + "70d52ac7-bfa2-4049-bdf9-aaa7c873173a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045524Z:79fabde0-b68a-4709-8026-e1514344a1c5" + "CENTRALUSEUAP:20210418T062718Z:70d52ac7-bfa2-4049-bdf9-aaa7c873173a" ], "Date": [ - "Sat, 02 May 2020 04:55:24 GMT" + "Sun, 18 Apr 2021 06:27:18 GMT" ], "Content-Length": [ - "1380" + "1319" ], "Content-Type": [ "application/json" @@ -3491,29 +3321,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3ac30aef-53cf-49ca-8326-87c6890594b1-2020-05-02 04:54:00Z-Ps ActivityId: bf117163-e74d-4cfd-9b61-4052f32876b9\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-05-02T04:55:06.471374Z\",\r\n \"endTime\": \"2020-05-02T04:55:06.6901445Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric347\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a366fc6c-cd43-4dfb-ab9e-4bfc43901e0e ActivityId: 5fa61556-10a3-47f3-9818-60cdcb69cc6e\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T06:26:46.2226669Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric347\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Nz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNTJiNWRjZDgtZGVkYy00NGZmLTkxYzYtN2I2ODlmYTc1MWZiP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f673129-e282-43c8-ad61-5dc165e02e1e-2020-05-02 04:55:24Z-Ps" + "2e432904-e8cc-4160-8485-b480b84eb877" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391724833)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996524833)\\/\",\"ClientRequestId\":\"9f673129-e282-43c8-ad61-5dc165e02e1e-2020-05-02 04:55:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"n9KxLqODPfnALo5cJlK15e07FF8Pr8QHiHen03e83YQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723658735)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328458735)\\/\",\"ClientRequestId\":\"435100df-303b-46d6-a29f-a73847a918bf-2021-04-18 06:27:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZbUdmXgUkxZwjdnCLLzKL4myhSoiDtyiZC8wLnIZx7k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3524,38 +3354,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11970" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "9f673129-e282-43c8-ad61-5dc165e02e1e-2020-05-02 04:55:24Z-Ps 5/2/2020 4:55:25 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9f673129-e282-43c8-ad61-5dc165e02e1e-2020-05-02 04:55:24Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2e432904-e8cc-4160-8485-b480b84eb877" ], "x-ms-correlation-request-id": [ - "efd87023-b511-4a30-98e9-d332cffcb678" + "fbd51f30-5a4c-4248-81ff-e053268b907d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045525Z:efd87023-b511-4a30-98e9-d332cffcb678" + "CENTRALUSEUAP:20210418T062738Z:fbd51f30-5a4c-4248-81ff-e053268b907d" ], "Date": [ - "Sat, 02 May 2020 04:55:25 GMT" + "Sun, 18 Apr 2021 06:27:38 GMT" ], "Content-Length": [ - "697" + "1319" ], "Content-Type": [ "application/json" @@ -3564,29 +3391,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"properties\": {\r\n \"friendlyName\": \"Southeast Asia\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"southeastasia\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a366fc6c-cd43-4dfb-ab9e-4bfc43901e0e ActivityId: 5fa61556-10a3-47f3-9818-60cdcb69cc6e\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T06:26:46.2226669Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric347\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Nz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNTJiNWRjZDgtZGVkYy00NGZmLTkxYzYtN2I2ODlmYTc1MWZiP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a48e024d-34fd-4deb-89c2-885b544ce936-2020-05-02 04:55:25Z-Ps" + "7b5e2ca1-8a1e-4ab5-bb61-b26a2a5195b9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391725305)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996525305)\\/\",\"ClientRequestId\":\"a48e024d-34fd-4deb-89c2-885b544ce936-2020-05-02 04:55:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+KcpIwr3wQw33nWOYVhcBUPCDGkhT0jiFhRpsY7srx0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723679110)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328479110)\\/\",\"ClientRequestId\":\"61e65b0b-e670-4b56-b135-9ba8b9e51399-2021-04-18 06:27:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VCg9Ft9RveYQI3dmKMtHt5I2y3wOcf4ucY1eHYW+c8c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3597,38 +3424,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11968" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "a48e024d-34fd-4deb-89c2-885b544ce936-2020-05-02 04:55:25Z-Ps 5/2/2020 4:55:25 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a48e024d-34fd-4deb-89c2-885b544ce936-2020-05-02 04:55:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7b5e2ca1-8a1e-4ab5-bb61-b26a2a5195b9" ], "x-ms-correlation-request-id": [ - "6cab49d4-a950-4148-8547-9b0796e4c9f9" + "612988a6-9dcb-46fc-b679-9ab8afe247d6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045525Z:6cab49d4-a950-4148-8547-9b0796e4c9f9" + "CENTRALUSEUAP:20210418T062759Z:612988a6-9dcb-46fc-b679-9ab8afe247d6" ], "Date": [ - "Sat, 02 May 2020 04:55:25 GMT" + "Sun, 18 Apr 2021 06:27:58 GMT" ], "Content-Length": [ - "697" + "1357" ], "Content-Type": [ "application/json" @@ -3637,35 +3461,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"properties\": {\r\n \"friendlyName\": \"Southeast Asia\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"southeastasia\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a366fc6c-cd43-4dfb-ab9e-4bfc43901e0e ActivityId: 5fa61556-10a3-47f3-9818-60cdcb69cc6e\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T06:26:46.2226669Z\",\r\n \"endTime\": \"2021-04-18T06:27:51.9231614Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric347\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzNDc/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {}\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Nz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59388df1-5f7d-4ef3-9cbc-e8b3d433610a-2020-05-02 04:55:25Z-Ps" + "f8c0f60e-af1f-4b1e-8e7c-de6fe3841ae5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391725632)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996525632)\\/\",\"ClientRequestId\":\"59388df1-5f7d-4ef3-9cbc-e8b3d433610a-2020-05-02 04:55:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"T3i00UZgzL8+GpEBTxVJLrQd/ohsRf70JC3DtVoeccU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723679452)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328479452)\\/\",\"ClientRequestId\":\"00420ee3-0061-4a22-9111-adb6ba8838ae-2021-04-18 06:27:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nWrgHutPIGTKaX57KRa11k+dTIi2Pv+rn/NpjcPNHMQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "24" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3675,73 +3493,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/operationresults/46ffe3bb-e211-46da-8d49-dc386140309d?api-version=2018-07-10" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" ], - "Retry-After": [ - "30" + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d", - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationOperationStatus/46ffe3bb-e211-46da-8d49-dc386140309d?api-version=2018-07-10" + "x-ms-request-id": [ + "f8c0f60e-af1f-4b1e-8e7c-de6fe3841ae5 4/18/2021 6:27:59 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "59388df1-5f7d-4ef3-9cbc-e8b3d433610a-2020-05-02 04:55:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "f8c0f60e-af1f-4b1e-8e7c-de6fe3841ae5" ], "x-ms-correlation-request-id": [ - "f617362e-8be2-4300-9bf2-7e5782a539b6" + "56dc1727-b354-4a9f-b6d2-f8b72731b46e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045526Z:f617362e-8be2-4300-9bf2-7e5782a539b6" + "CENTRALUSEUAP:20210418T062759Z:56dc1727-b354-4a9f-b6d2-f8b72731b46e" ], "Date": [ - "Sat, 02 May 2020 04:55:26 GMT" + "Sun, 18 Apr 2021 06:27:58 GMT" + ], + "Content-Length": [ + "683" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNDZmZmUzYmItZTIxMS00NmRhLThkNDktZGMzODYxNDAzMDlkP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Nz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b697e16d-a9ff-4b45-a1e7-6f09f5827bdb-2020-05-02 04:55:26Z-Ps" + "a55869dd-8476-46cd-b1fc-571721277ff1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391726372)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996526372)\\/\",\"ClientRequestId\":\"b697e16d-a9ff-4b45-a1e7-6f09f5827bdb-2020-05-02 04:55:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Qdr2Ve9FmU9QFOXgit3fIAzfMIx7W74tR6RhG8IU7G8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723679881)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328479881)\\/\",\"ClientRequestId\":\"ce796488-6f71-42f0-996d-bca2bccf98fc-2021-04-18 06:27:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"54MyvVo9299LnCf/a7OQluEH5avjDILhy1B7MfmO33k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3752,38 +3564,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11966" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "a55869dd-8476-46cd-b1fc-571721277ff1 4/18/2021 6:28:00 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b697e16d-a9ff-4b45-a1e7-6f09f5827bdb-2020-05-02 04:55:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a55869dd-8476-46cd-b1fc-571721277ff1" ], "x-ms-correlation-request-id": [ - "f1ce4ab1-dea6-441a-bd75-ae51922afb00" + "a9aa4c54-c429-41a1-9efa-28d86b4dde0a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045526Z:f1ce4ab1-dea6-441a-bd75-ae51922afb00" + "CENTRALUSEUAP:20210418T062800Z:a9aa4c54-c429-41a1-9efa-28d86b4dde0a" ], "Date": [ - "Sat, 02 May 2020 04:55:26 GMT" + "Sun, 18 Apr 2021 06:27:59 GMT" ], "Content-Length": [ - "1800" + "683" ], "Content-Type": [ "application/json" @@ -3792,29 +3601,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"59388df1-5f7d-4ef3-9cbc-e8b3d433610a-2020-05-02 04:55:25Z-Ps ActivityId: f617362e-8be2-4300-9bf2-7e5782a539b6\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-05-02T04:55:26.4060201Z\",\r\n \"endTime\": \"2020-05-02T04:55:26.4372442Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-05-02T04:55:26.4372442Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNDZmZmUzYmItZTIxMS00NmRhLThkNDktZGMzODYxNDAzMDlkP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzNDc/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "82f94145-b6dc-4108-a290-3d7ae864d702-2020-05-02 04:55:26Z-Ps" + "099e4712-5e83-4927-a5e3-b6cdef321249" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391726643)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996526643)\\/\",\"ClientRequestId\":\"82f94145-b6dc-4108-a290-3d7ae864d702-2020-05-02 04:55:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BLNJVs4znvCg910CjMyBq5pfMx2sjRSqRm4z5FWKpwU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723680230)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328480230)\\/\",\"ClientRequestId\":\"074f2309-984f-45b3-9995-f47da3d8129e-2021-04-18 06:28:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wpC2xufdt4qEW33Amt9/k2G/gv9yTQn3faDAfgkEsiU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "24" ] }, "ResponseHeaders": { @@ -3824,70 +3639,70 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/operationresults/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe?api-version=2021-02-10" ], - "Server": [ - "Microsoft-IIS/10.0", - "Kestrel" + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe" ], - "X-Powered-By": [ - "ASP.NET" + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationOperationStatus/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "82f94145-b6dc-4108-a290-3d7ae864d702-2020-05-02 04:55:26Z-Ps" + "099e4712-5e83-4927-a5e3-b6cdef321249" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" ], "x-ms-correlation-request-id": [ - "44bd44b2-b0eb-4e52-acbb-ef6f74b528aa" + "d26874ba-0d4d-4808-a222-0ba58fad2f00" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045526Z:44bd44b2-b0eb-4e52-acbb-ef6f74b528aa" + "CENTRALUSEUAP:20210418T062800Z:d26874ba-0d4d-4808-a222-0ba58fad2f00" ], "Date": [ - "Sat, 02 May 2020 04:55:26 GMT" - ], - "Content-Length": [ - "1838" - ], - "Content-Type": [ - "application/json" + "Sun, 18 Apr 2021 06:27:59 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"59388df1-5f7d-4ef3-9cbc-e8b3d433610a-2020-05-02 04:55:25Z-Ps ActivityId: f617362e-8be2-4300-9bf2-7e5782a539b6\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-05-02T04:55:26.4060201Z\",\r\n \"endTime\": \"2020-05-02T04:55:26.4685566Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-05-02T04:55:26.4685566Z\",\r\n \"endTime\": \"2020-05-02T04:55:26.4685566Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzNDc/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvODAyOTFlMGYtM2JmZC00NmE2LTg3YzYtOGRmYzFmOWRmNWZlP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93e0dbc3-c907-4172-933c-ad37c36360d5-2020-05-02 04:55:26Z-Ps" + "099e4712-5e83-4927-a5e3-b6cdef321249" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391726965)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996526965)\\/\",\"ClientRequestId\":\"93e0dbc3-c907-4172-933c-ad37c36360d5-2020-05-02 04:55:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CHEIJyniTtaJOA+lZ+oAX672o/h4tOgxg1pSmqmcsVI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723680837)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328480837)\\/\",\"ClientRequestId\":\"bb74daf4-86c1-4bc3-b776-25c8cac4dbd3-2021-04-18 06:28:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fNtEeiVv4VploGvmph6WiRzyH0bJ+e0ZGIAJ7ji41xQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3898,38 +3713,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11965" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "93e0dbc3-c907-4172-933c-ad37c36360d5-2020-05-02 04:55:26Z-Ps 5/2/2020 4:55:27 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "93e0dbc3-c907-4172-933c-ad37c36360d5-2020-05-02 04:55:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "099e4712-5e83-4927-a5e3-b6cdef321249" ], "x-ms-correlation-request-id": [ - "a80b0600-945a-4348-93ee-13cc904a15d8" + "38ea0abe-ded9-4940-8988-e1b711e1e1eb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045527Z:a80b0600-945a-4348-93ee-13cc904a15d8" + "CENTRALUSEUAP:20210418T062800Z:38ea0abe-ded9-4940-8988-e1b711e1e1eb" ], "Date": [ - "Sat, 02 May 2020 04:55:26 GMT" + "Sun, 18 Apr 2021 06:28:00 GMT" ], "Content-Length": [ - "587" + "1807" ], "Content-Type": [ "application/json" @@ -3938,29 +3750,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347\",\r\n \"name\": \"A2APrimaryContainer347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"Southeast Asia\",\r\n \"friendlyName\": \"A2APrimaryContainer347\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"099e4712-5e83-4927-a5e3-b6cdef321249 ActivityId: d26874ba-0d4d-4808-a222-0ba58fad2f00\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-18T06:28:00.7381678Z\",\r\n \"endTime\": \"2021-04-18T06:28:00.7981618Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-18T06:28:00.7981618Z\",\r\n \"endTime\": \"2021-04-18T06:28:00.7981618Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectionContainerMappings?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzNDcvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvODAyOTFlMGYtM2JmZC00NmE2LTg3YzYtOGRmYzFmOWRmNWZlP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c22cd7af-b66d-4372-8bb7-e07330b59157-2020-05-02 04:55:27Z-Ps" + "1a51997e-2169-4c2a-aeb1-ea05429a568e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391727238)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996527238)\\/\",\"ClientRequestId\":\"c22cd7af-b66d-4372-8bb7-e07330b59157-2020-05-02 04:55:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TZgq4K86MKi28G0LnZuby2ypvY4kktkFZzNj+OYgCxs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723681157)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328481157)\\/\",\"ClientRequestId\":\"69cadafa-ab02-4899-b066-733eafad9d85-2021-04-18 06:28:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"y/02V3V7+gK5Xnxy8Mw9zuZkDEShku751D3uTYKiPUQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3971,38 +3783,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11964" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "c22cd7af-b66d-4372-8bb7-e07330b59157-2020-05-02 04:55:27Z-Ps 5/2/2020 4:55:27 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c22cd7af-b66d-4372-8bb7-e07330b59157-2020-05-02 04:55:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1a51997e-2169-4c2a-aeb1-ea05429a568e" ], "x-ms-correlation-request-id": [ - "a445115e-f5b9-4aaa-9b8c-454e6287a49f" + "a8791a51-486c-407f-924c-f42ec7f607c4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045527Z:a445115e-f5b9-4aaa-9b8c-454e6287a49f" + "CENTRALUSEUAP:20210418T062801Z:a8791a51-486c-407f-924c-f42ec7f607c4" ], "Date": [ - "Sat, 02 May 2020 04:55:27 GMT" + "Sun, 18 Apr 2021 06:28:00 GMT" ], "Content-Length": [ - "28" + "1807" ], "Content-Type": [ "application/json" @@ -4011,29 +3820,169 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"099e4712-5e83-4927-a5e3-b6cdef321249 ActivityId: d26874ba-0d4d-4808-a222-0ba58fad2f00\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-18T06:28:00.7381678Z\",\r\n \"endTime\": \"2021-04-18T06:28:00.7981618Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-18T06:28:00.7981618Z\",\r\n \"endTime\": \"2021-04-18T06:28:00.7981618Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVJlY292ZXJ5Q29udGFpbmVyMzQ3P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {}\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzNDc/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca72390a-f07e-4d26-9a6b-6d2df53b86f6-2020-05-02 04:55:27Z-Ps" + "44c81a7e-74b5-438e-b279-84e8ba3c52ab" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391727554)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996527554)\\/\",\"ClientRequestId\":\"ca72390a-f07e-4d26-9a6b-6d2df53b86f6-2020-05-02 04:55:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MkZHa9FbkcfxONpSnMHP73y3RKPuozlXA/6x4F0Dq2M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723681484)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328481484)\\/\",\"ClientRequestId\":\"c47b7f0b-85e6-4050-a884-d4d1edc1a748-2021-04-18 06:28:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"R/+ZPLmGX/rXFBgfi24ou3BmgKUgwHNvnbQaCT0M5rI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "44c81a7e-74b5-438e-b279-84e8ba3c52ab 4/18/2021 6:28:01 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "44c81a7e-74b5-438e-b279-84e8ba3c52ab" + ], + "x-ms-correlation-request-id": [ + "6b0a8267-bb8b-469e-b6b2-fda25578be99" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T062801Z:6b0a8267-bb8b-469e-b6b2-fda25578be99" + ], + "Date": [ + "Sun, 18 Apr 2021 06:28:00 GMT" + ], + "Content-Length": [ + "580" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347\",\r\n \"name\": \"A2APrimaryContainer347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"East US\",\r\n \"friendlyName\": \"A2APrimaryContainer347\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectionContainerMappings?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzNDcvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "44c81a7e-74b5-438e-b279-84e8ba3c52ab" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618723681924)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328481924)\\/\",\"ClientRequestId\":\"3e0f1904-b99d-4b9e-a778-8506c0fb86e1-2021-04-18 06:28:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"G/hYPPzExLz5+q/GBxTu4Vz10GeIoHtGHr05R1ufCHI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "44c81a7e-74b5-438e-b279-84e8ba3c52ab 4/18/2021 6:28:02 AM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "44c81a7e-74b5-438e-b279-84e8ba3c52ab" + ], + "x-ms-correlation-request-id": [ + "b1b8c63e-60d6-4c87-addb-8eacbf1480a7" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T062802Z:b1b8c63e-60d6-4c87-addb-8eacbf1480a7" + ], + "Date": [ + "Sun, 18 Apr 2021 06:28:01 GMT" + ], + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVJlY292ZXJ5Q29udGFpbmVyMzQ3P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {}\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "578f2ef6-6bb4-4cab-90f2-21fcfc81cc57" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618723682318)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328482318)\\/\",\"ClientRequestId\":\"c61a0fbf-5027-4015-a05a-96df6e8c30cd-2021-04-18 06:28:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uj7RZZiNEF44lZ4DqQPvfhUHmvdKbUCHHkd9TF2jxkM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4050,41 +3999,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347/operationresults/e3825524-e2d0-4b32-b174-eb491fcea816?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347/operationresults/2b5a3023-7624-4dac-81ea-f78f1a6edb83?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816", - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationOperationStatus/e3825524-e2d0-4b32-b174-eb491fcea816?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationOperationStatus/2b5a3023-7624-4dac-81ea-f78f1a6edb83?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ca72390a-f07e-4d26-9a6b-6d2df53b86f6-2020-05-02 04:55:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "578f2ef6-6bb4-4cab-90f2-21fcfc81cc57" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1186" ], "x-ms-correlation-request-id": [ - "59a438b9-6f57-4159-be35-78f2d1fbafb8" + "7cb2a90b-960a-4f05-bfe0-1e944b40f6be" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045527Z:59a438b9-6f57-4159-be35-78f2d1fbafb8" + "CENTRALUSEUAP:20210418T062802Z:7cb2a90b-960a-4f05-bfe0-1e944b40f6be" ], "Date": [ - "Sat, 02 May 2020 04:55:27 GMT" + "Sun, 18 Apr 2021 06:28:01 GMT" ], "Expires": [ "-1" @@ -4097,25 +4043,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZTM4MjU1MjQtZTJkMC00YjMyLWIxNzQtZWI0OTFmY2VhODE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMmI1YTMwMjMtNzYyNC00ZGFjLTgxZWEtZjc4ZjFhNmVkYjgzP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a0477f4-b5ca-46d0-9bf1-6b992880c149-2020-05-02 04:55:28Z-Ps" + "578f2ef6-6bb4-4cab-90f2-21fcfc81cc57" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391728029)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996528029)\\/\",\"ClientRequestId\":\"4a0477f4-b5ca-46d0-9bf1-6b992880c149-2020-05-02 04:55:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uESGImsm4oAA4g0dwPqmCMpdSyhUnoMENI71/v+uZDk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723682889)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328482889)\\/\",\"ClientRequestId\":\"9e1352cb-9b16-411d-9871-388f2ad1feae-2021-04-18 06:28:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"i98Y5qWC0P6OMl3n+SkX4KMg1H/ORAhdGGdAL3Ht9zY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4126,38 +4072,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11961" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "4a0477f4-b5ca-46d0-9bf1-6b992880c149-2020-05-02 04:55:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "578f2ef6-6bb4-4cab-90f2-21fcfc81cc57" ], "x-ms-correlation-request-id": [ - "cee47990-f654-40b6-a00f-3c90b4612fa4" + "276bb806-925b-4f31-8c7c-86940cc27d62" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045528Z:cee47990-f654-40b6-a00f-3c90b4612fa4" + "CENTRALUSEUAP:20210418T062803Z:276bb806-925b-4f31-8c7c-86940cc27d62" ], "Date": [ - "Sat, 02 May 2020 04:55:27 GMT" + "Sun, 18 Apr 2021 06:28:03 GMT" ], "Content-Length": [ - "1797" + "1808" ], "Content-Type": [ "application/json" @@ -4166,29 +4109,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ca72390a-f07e-4d26-9a6b-6d2df53b86f6-2020-05-02 04:55:27Z-Ps ActivityId: 59a438b9-6f57-4159-be35-78f2d1fbafb8\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-05-02T04:55:27.9897191Z\",\r\n \"endTime\": \"2020-05-02T04:55:28.06788Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-05-02T04:55:28.06788Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"578f2ef6-6bb4-4cab-90f2-21fcfc81cc57 ActivityId: 7cb2a90b-960a-4f05-bfe0-1e944b40f6be\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-18T06:28:02.7431641Z\",\r\n \"endTime\": \"2021-04-18T06:28:02.8081665Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-18T06:28:02.8081665Z\",\r\n \"endTime\": \"2021-04-18T06:28:02.8081665Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZTM4MjU1MjQtZTJkMC00YjMyLWIxNzQtZWI0OTFmY2VhODE2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMmI1YTMwMjMtNzYyNC00ZGFjLTgxZWEtZjc4ZjFhNmVkYjgzP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4997ee69-7267-4ef3-b1ef-8da467820e1a-2020-05-02 04:55:28Z-Ps" + "2fa620d3-343f-4ecf-9348-0aaf03f4c8bd" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391728281)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996528281)\\/\",\"ClientRequestId\":\"4997ee69-7267-4ef3-b1ef-8da467820e1a-2020-05-02 04:55:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WUhYP3ZF/8qUBCzI4W1qiS96LluCttYzl73JwWoz8oQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723683219)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328483219)\\/\",\"ClientRequestId\":\"f350afc9-eed6-4d31-bf89-e645ca82b9d9-2021-04-18 06:28:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"m49texfdioyFjcrRMpW/D9now+f+IvxPnkkpMucfRoI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4199,38 +4142,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11960" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "4997ee69-7267-4ef3-b1ef-8da467820e1a-2020-05-02 04:55:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2fa620d3-343f-4ecf-9348-0aaf03f4c8bd" ], "x-ms-correlation-request-id": [ - "7bceb9f0-812c-4d46-9efc-16e96dbbe9ce" + "4445d4a2-2e58-44bb-9289-911f793fd51c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045528Z:7bceb9f0-812c-4d46-9efc-16e96dbbe9ce" + "CENTRALUSEUAP:20210418T062803Z:4445d4a2-2e58-44bb-9289-911f793fd51c" ], "Date": [ - "Sat, 02 May 2020 04:55:28 GMT" + "Sun, 18 Apr 2021 06:28:03 GMT" ], "Content-Length": [ - "1839" + "1808" ], "Content-Type": [ "application/json" @@ -4239,29 +4179,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"ca72390a-f07e-4d26-9a6b-6d2df53b86f6-2020-05-02 04:55:27Z-Ps ActivityId: 59a438b9-6f57-4159-be35-78f2d1fbafb8\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-05-02T04:55:27.9897191Z\",\r\n \"endTime\": \"2020-05-02T04:55:28.1147585Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-05-02T04:55:28.1147585Z\",\r\n \"endTime\": \"2020-05-02T04:55:28.1147585Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"578f2ef6-6bb4-4cab-90f2-21fcfc81cc57 ActivityId: 7cb2a90b-960a-4f05-bfe0-1e944b40f6be\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-18T06:28:02.7431641Z\",\r\n \"endTime\": \"2021-04-18T06:28:02.8081665Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-18T06:28:02.8081665Z\",\r\n \"endTime\": \"2021-04-18T06:28:02.8081665Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVJlY292ZXJ5Q29udGFpbmVyMzQ3P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVJlY292ZXJ5Q29udGFpbmVyMzQ3P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3db83f51-3648-4b78-9948-7bc27a320156-2020-05-02 04:55:28Z-Ps" + "6354c574-bb08-4a26-b9f5-cede00be7267" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391728566)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996528566)\\/\",\"ClientRequestId\":\"3db83f51-3648-4b78-9948-7bc27a320156-2020-05-02 04:55:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"K+u7oS1Xh+bxhv+B7rsvEq9uuThYA3qfdXyE/u5XO4g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723683541)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328483541)\\/\",\"ClientRequestId\":\"6320ffdf-9f73-4122-98b6-b816488fc2a0-2021-04-18 06:28:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JOPW4+E9FBFMn8ECUFuQRCQqmEZ8ZHRic3UOiJk1DH8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4272,38 +4212,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11959" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "3db83f51-3648-4b78-9948-7bc27a320156-2020-05-02 04:55:28Z-Ps 5/2/2020 4:55:28 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "6354c574-bb08-4a26-b9f5-cede00be7267 4/18/2021 6:28:03 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3db83f51-3648-4b78-9948-7bc27a320156-2020-05-02 04:55:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6354c574-bb08-4a26-b9f5-cede00be7267" ], "x-ms-correlation-request-id": [ - "35a664d8-dda0-4efc-9626-92fd67566c4f" + "31eb6b7b-48c4-4c6b-b957-ed70bf99b208" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045528Z:35a664d8-dda0-4efc-9626-92fd67566c4f" + "CENTRALUSEUAP:20210418T062803Z:31eb6b7b-48c4-4c6b-b957-ed70bf99b208" ], "Date": [ - "Sat, 02 May 2020 04:55:28 GMT" + "Sun, 18 Apr 2021 06:28:03 GMT" ], "Content-Length": [ - "590" + "583" ], "Content-Type": [ "application/json" @@ -4312,29 +4249,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"name\": \"A2ARecoveryContainer347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"Southeast Asia\",\r\n \"friendlyName\": \"A2ARecoveryContainer347\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"name\": \"A2ARecoveryContainer347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"East US\",\r\n \"friendlyName\": \"A2ARecoveryContainer347\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347/replicationProtectionContainerMappings?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVJlY292ZXJ5Q29udGFpbmVyMzQ3L3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347/replicationProtectionContainerMappings?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVJlY292ZXJ5Q29udGFpbmVyMzQ3L3JlcGxpY2F0aW9uUHJvdGVjdGlvbkNvbnRhaW5lck1hcHBpbmdzP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60fb8929-f86e-4fc1-8957-cfe4bdaa3807-2020-05-02 04:55:28Z-Ps" + "6354c574-bb08-4a26-b9f5-cede00be7267" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391728833)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996528833)\\/\",\"ClientRequestId\":\"60fb8929-f86e-4fc1-8957-cfe4bdaa3807-2020-05-02 04:55:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EGAgx05fda4GljFrkbmO8jWK6yC+LByNrCf3x+OF398=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723683868)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328483868)\\/\",\"ClientRequestId\":\"7771a947-a3b1-433e-bd35-932f2bc294c7-2021-04-18 06:28:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OPNHIG2O6J6cTfKQ1Qg9mfvaAADAHFD7SnjyRhrtMmw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4345,35 +4282,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11958" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "60fb8929-f86e-4fc1-8957-cfe4bdaa3807-2020-05-02 04:55:28Z-Ps 5/2/2020 4:55:30 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "6354c574-bb08-4a26-b9f5-cede00be7267 4/18/2021 6:28:04 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "60fb8929-f86e-4fc1-8957-cfe4bdaa3807-2020-05-02 04:55:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6354c574-bb08-4a26-b9f5-cede00be7267" ], "x-ms-correlation-request-id": [ - "7d595a6c-c4fa-4969-b9ae-13db0eeec476" + "0bb0917c-4d2f-45ff-a7bb-fcc6929c516c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045530Z:7d595a6c-c4fa-4969-b9ae-13db0eeec476" + "CENTRALUSEUAP:20210418T062804Z:0bb0917c-4d2f-45ff-a7bb-fcc6929c516c" ], "Date": [ - "Sat, 02 May 2020 04:55:29 GMT" + "Sun, 18 Apr 2021 06:28:04 GMT" ], "Content-Length": [ "28" @@ -4389,25 +4323,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxMzQ3P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxMzQ3P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointHistory\": 720,\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enable\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2d79be6c-4246-411f-adab-ed0b60c2bdff-2020-05-02 04:55:30Z-Ps" + "27e207d7-dbac-4c39-be95-8d59a836b0c0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391730219)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996530219)\\/\",\"ClientRequestId\":\"2d79be6c-4246-411f-adab-ed0b60c2bdff-2020-05-02 04:55:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SKikzRYpkVvw3+PuuCtxBkgh4vRM74ZWLgNhhTqOc3g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723684293)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328484293)\\/\",\"ClientRequestId\":\"b55b3de1-771b-4ea2-8345-0bc5a228f197-2021-04-18 06:28:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xIlBPIKaqRTH7GzeTE8GIFzKT/ze+IL+Lnag0O/bVWQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4424,40 +4358,37 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347/operationresults/142e3700-1814-4874-b1b7-8acd5c674ca9?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347/operationresults/4ffae285-9a83-45f2-b6f9-aa6b5310536c?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "2d79be6c-4246-411f-adab-ed0b60c2bdff-2020-05-02 04:55:30Z-Ps 5/2/2020 4:55:32 AM" + "27e207d7-dbac-4c39-be95-8d59a836b0c0 4/18/2021 6:28:04 AM" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationOperationStatus/142e3700-1814-4874-b1b7-8acd5c674ca9?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationOperationStatus/4ffae285-9a83-45f2-b6f9-aa6b5310536c?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2d79be6c-4246-411f-adab-ed0b60c2bdff-2020-05-02 04:55:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "27e207d7-dbac-4c39-be95-8d59a836b0c0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1185" ], "x-ms-correlation-request-id": [ - "0522bd8e-2915-4477-aeb0-7417f4551b53" + "beaed161-5dbd-4c63-805d-6e84058f3ecd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045532Z:0522bd8e-2915-4477-aeb0-7417f4551b53" + "CENTRALUSEUAP:20210418T062804Z:beaed161-5dbd-4c63-805d-6e84058f3ecd" ], "Date": [ - "Sat, 02 May 2020 04:55:31 GMT" + "Sun, 18 Apr 2021 06:28:04 GMT" ], "Expires": [ "-1" @@ -4470,25 +4401,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMTQyZTM3MDAtMTgxNC00ODc0LWIxYjctOGFjZDVjNjc0Y2E5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNGZmYWUyODUtOWE4My00NWYyLWI2ZjktYWE2YjUzMTA1MzZjP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af41eaf3-162a-4c94-a3d2-da401586ca92-2020-05-02 04:55:32Z-Ps" + "27e207d7-dbac-4c39-be95-8d59a836b0c0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391732308)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996532308)\\/\",\"ClientRequestId\":\"af41eaf3-162a-4c94-a3d2-da401586ca92-2020-05-02 04:55:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VY19I+zEyafdLRAkCxTzx7kXu65AJwVAqWTAfT60Q3Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723684818)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328484818)\\/\",\"ClientRequestId\":\"9aba91cc-f21c-4fd3-9c75-c50d08d7870a-2021-04-18 06:28:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Ytq8RWPgKH/TN1w7G+IL4GGpLzcqRoprxGpaP6PXpSE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4499,38 +4430,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11957" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "af41eaf3-162a-4c94-a3d2-da401586ca92-2020-05-02 04:55:32Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "27e207d7-dbac-4c39-be95-8d59a836b0c0" ], "x-ms-correlation-request-id": [ - "97b2ae3f-69ae-45c9-a5a1-3f76d23d629a" + "86725121-75dd-4097-aa8d-553623afcbb4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045532Z:97b2ae3f-69ae-45c9-a5a1-3f76d23d629a" + "CENTRALUSEUAP:20210418T062804Z:86725121-75dd-4097-aa8d-553623afcbb4" ], "Date": [ - "Sat, 02 May 2020 04:55:32 GMT" + "Sun, 18 Apr 2021 06:28:04 GMT" ], "Content-Length": [ - "1726" + "1732" ], "Content-Type": [ "application/json" @@ -4539,29 +4467,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"2d79be6c-4246-411f-adab-ed0b60c2bdff-2020-05-02 04:55:30Z-Ps ActivityId: 0522bd8e-2915-4477-aeb0-7417f4551b53\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2020-05-02T04:55:32.3341758Z\",\r\n \"endTime\": \"2020-05-02T04:55:32.3967004Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2020-05-02T04:55:32.3967004Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"27e207d7-dbac-4c39-be95-8d59a836b0c0 ActivityId: beaed161-5dbd-4c63-805d-6e84058f3ecd\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2021-04-18T06:28:04.7481683Z\",\r\n \"endTime\": \"2021-04-18T06:28:04.8281675Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2021-04-18T06:28:04.8281675Z\",\r\n \"endTime\": \"2021-04-18T06:28:04.8281675Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMTQyZTM3MDAtMTgxNC00ODc0LWIxYjctOGFjZDVjNjc0Y2E5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNGZmYWUyODUtOWE4My00NWYyLWI2ZjktYWE2YjUzMTA1MzZjP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5d48130-76ab-490e-a251-0652518e7635-2020-05-02 04:55:32Z-Ps" + "52b525fc-7174-4fd4-a482-e691fb6243d4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391732596)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996532596)\\/\",\"ClientRequestId\":\"c5d48130-76ab-490e-a251-0652518e7635-2020-05-02 04:55:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DsXXhJVDJFMy4Nl9IMTMJJzIhTwLKs/YGt70kxHjX6U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723685140)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328485140)\\/\",\"ClientRequestId\":\"98d29f8e-5626-4e9c-9866-62ec139fbe8c-2021-04-18 06:28:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"D4JG04m+AeQc/ADhNxn53zRvSzcXs8N74ado0wpzAsg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4572,38 +4500,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11956" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c5d48130-76ab-490e-a251-0652518e7635-2020-05-02 04:55:32Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "52b525fc-7174-4fd4-a482-e691fb6243d4" ], "x-ms-correlation-request-id": [ - "e44e7810-8b6f-46ea-9896-0a21f55b3b2a" + "e8eeb66c-ffe0-4310-9d20-42d2aabf0989" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045532Z:e44e7810-8b6f-46ea-9896-0a21f55b3b2a" + "CENTRALUSEUAP:20210418T062805Z:e8eeb66c-ffe0-4310-9d20-42d2aabf0989" ], "Date": [ - "Sat, 02 May 2020 04:55:32 GMT" + "Sun, 18 Apr 2021 06:28:05 GMT" ], "Content-Length": [ - "1756" + "1732" ], "Content-Type": [ "application/json" @@ -4612,29 +4537,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"2d79be6c-4246-411f-adab-ed0b60c2bdff-2020-05-02 04:55:30Z-Ps ActivityId: 0522bd8e-2915-4477-aeb0-7417f4551b53\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2020-05-02T04:55:32.3341758Z\",\r\n \"endTime\": \"2020-05-02T04:55:32.4790328Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2020-05-02T04:55:32.4790328Z\",\r\n \"endTime\": \"2020-05-02T04:55:32.4790328Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"27e207d7-dbac-4c39-be95-8d59a836b0c0 ActivityId: beaed161-5dbd-4c63-805d-6e84058f3ecd\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2021-04-18T06:28:04.7481683Z\",\r\n \"endTime\": \"2021-04-18T06:28:04.8281675Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2021-04-18T06:28:04.8281675Z\",\r\n \"endTime\": \"2021-04-18T06:28:04.8281675Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxMzQ3P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxMzQ3P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "770cc69a-10bd-427a-9d45-f080d2053967-2020-05-02 04:55:32Z-Ps" + "3462fe8f-71a4-41fd-9fbd-32bde95a7815" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391732892)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996532892)\\/\",\"ClientRequestId\":\"770cc69a-10bd-427a-9d45-f080d2053967-2020-05-02 04:55:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MqSWc8/aIgQNENoAK/2Biu0wbQaEj4eH3A1/xEWYubE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723685490)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328485490)\\/\",\"ClientRequestId\":\"83938e94-7bc2-48e7-a3cd-afaaa37c57f2-2021-04-18 06:28:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QxpcxCVKJfprCmNKSVsHyLsFkwAPdI9187PhMoYlL5w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4645,35 +4570,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11955" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "770cc69a-10bd-427a-9d45-f080d2053967-2020-05-02 04:55:32Z-Ps 5/2/2020 4:55:33 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "3462fe8f-71a4-41fd-9fbd-32bde95a7815 4/18/2021 6:28:05 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "770cc69a-10bd-427a-9d45-f080d2053967-2020-05-02 04:55:32Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3462fe8f-71a4-41fd-9fbd-32bde95a7815" ], "x-ms-correlation-request-id": [ - "60aa576f-5291-4ed7-bed5-8bb0cdfce000" + "9d993555-a3d9-462d-ba1d-4fbb571368d3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045533Z:60aa576f-5291-4ed7-bed5-8bb0cdfce000" + "CENTRALUSEUAP:20210418T062805Z:9d993555-a3d9-462d-ba1d-4fbb571368d3" ], "Date": [ - "Sat, 02 May 2020 04:55:32 GMT" + "Sun, 18 Apr 2021 06:28:05 GMT" ], "Content-Length": [ "557" @@ -4685,29 +4607,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"name\": \"TestA2APolicy1347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestA2APolicy1347\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"name\": \"TestA2APolicy1347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestA2APolicy1347\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxMzQ3P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxMzQ3P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1f27758-849a-4f1e-ba16-73e1c0539711-2020-05-02 04:56:56Z-Ps" + "c38cdc87-175a-4ca9-a200-e7db57b68465" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391816449)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996616449)\\/\",\"ClientRequestId\":\"a1f27758-849a-4f1e-ba16-73e1c0539711-2020-05-02 04:56:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hxKdtdNB++D5rLxqCVs8ba37Hz9jrCIRTCPBSdHQNdo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723769424)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328569424)\\/\",\"ClientRequestId\":\"548707e8-7485-4fd2-beeb-17c7d6a9bfb7-2021-04-18 06:29:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JrR1BrLi3CVv114ITXastCqKoe0CXTLMe6EsNMV5874=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4718,35 +4640,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11927" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "a1f27758-849a-4f1e-ba16-73e1c0539711-2020-05-02 04:56:56Z-Ps 5/2/2020 4:56:56 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "c38cdc87-175a-4ca9-a200-e7db57b68465 4/18/2021 6:29:29 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a1f27758-849a-4f1e-ba16-73e1c0539711-2020-05-02 04:56:56Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c38cdc87-175a-4ca9-a200-e7db57b68465" ], "x-ms-correlation-request-id": [ - "4ad0946b-8ddb-4ffe-bf4b-efb5aa4da0b9" + "78d1ed70-47db-466b-bacf-b1bee7c161a6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045656Z:4ad0946b-8ddb-4ffe-bf4b-efb5aa4da0b9" + "CENTRALUSEUAP:20210418T062929Z:78d1ed70-47db-466b-bacf-b1bee7c161a6" ], "Date": [ - "Sat, 02 May 2020 04:56:56 GMT" + "Sun, 18 Apr 2021 06:29:29 GMT" ], "Content-Length": [ "557" @@ -4758,29 +4677,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"name\": \"TestA2APolicy1347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestA2APolicy1347\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"name\": \"TestA2APolicy1347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationPolicies\",\r\n \"properties\": {\r\n \"friendlyName\": \"TestA2APolicy1347\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointThresholdInMinutes\": 0,\r\n \"recoveryPointHistory\": 720,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enabled\",\r\n \"crashConsistentFrequencyInMinutes\": 5\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectionContainerMappings/A2APCM347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzNDcvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUENNMzQ3P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectionContainerMappings/A2APCM347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzNDcvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUENNMzQ3P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"policyId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"ReplicationProviderSpecificContainerMappingInput\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"ReplicationProviderSpecificContainerMappingInput\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "101ee810-4f8f-4e13-9b5e-d5bee37bed7f-2020-05-02 04:55:33Z-Ps" + "6a9bd626-6747-48e5-bbc9-82c78e1fdf09" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391733192)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996533192)\\/\",\"ClientRequestId\":\"101ee810-4f8f-4e13-9b5e-d5bee37bed7f-2020-05-02 04:55:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nuo+gFikQa0tnm09sOW+66NL23OLcHI4+1HBMtPBeaA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723685860)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328485860)\\/\",\"ClientRequestId\":\"544dacfe-30db-4e0b-8b50-aa77ba54bcf8-2021-04-18 06:28:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"algZSQqUKUISNMwbp54QIkqC1wp6yFiz28LVB4xDN4A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4797,41 +4716,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectionContainerMappings/A2APCM347/operationresults/9a72e768-1b62-48d4-8971-4fd4d4c81cb3?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectionContainerMappings/A2APCM347/operationresults/598fde85-d7be-4b5a-80ea-12eab2723699?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3", - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationOperationStatus/9a72e768-1b62-48d4-8971-4fd4d4c81cb3?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationOperationStatus/598fde85-d7be-4b5a-80ea-12eab2723699?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "101ee810-4f8f-4e13-9b5e-d5bee37bed7f-2020-05-02 04:55:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "6a9bd626-6747-48e5-bbc9-82c78e1fdf09" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1184" ], "x-ms-correlation-request-id": [ - "040a111e-aba0-43d5-baed-246e3d5a19c6" + "feb0d433-266d-43db-8b3c-26ef184ba74c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045533Z:040a111e-aba0-43d5-baed-246e3d5a19c6" + "CENTRALUSEUAP:20210418T062806Z:feb0d433-266d-43db-8b3c-26ef184ba74c" ], "Date": [ - "Sat, 02 May 2020 04:55:33 GMT" + "Sun, 18 Apr 2021 06:28:06 GMT" ], "Expires": [ "-1" @@ -4844,25 +4760,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOWE3MmU3NjgtMWI2Mi00OGQ0LTg5NzEtNGZkNGQ0YzgxY2IzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNTk4ZmRlODUtZDdiZS00YjVhLTgwZWEtMTJlYWIyNzIzNjk5P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f95cf46a-5af6-4e2e-9df5-c77a9a4ecd3b-2020-05-02 04:55:33Z-Ps" + "6a9bd626-6747-48e5-bbc9-82c78e1fdf09" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391733796)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996533796)\\/\",\"ClientRequestId\":\"f95cf46a-5af6-4e2e-9df5-c77a9a4ecd3b-2020-05-02 04:55:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rx5nKVW88Rl3xsAtl4Mi+ERzxmtlv1ojKF1YU/TcPis=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723686503)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328486503)\\/\",\"ClientRequestId\":\"bf982d89-62bf-4253-adf3-782b6d2e8cbf-2021-04-18 06:28:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vd8EpH90utL/ce3RgQx1Hsa1PuzM69cS1Heh8JRsRPw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4873,38 +4789,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11954" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f95cf46a-5af6-4e2e-9df5-c77a9a4ecd3b-2020-05-02 04:55:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6a9bd626-6747-48e5-bbc9-82c78e1fdf09" ], "x-ms-correlation-request-id": [ - "b29847d7-602a-4f3e-b2b0-142e9d1a5488" + "935a9fed-b1d4-4571-ac30-c7538ce1006d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045533Z:b29847d7-602a-4f3e-b2b0-142e9d1a5488" + "CENTRALUSEUAP:20210418T062806Z:935a9fed-b1d4-4571-ac30-c7538ce1006d" ], "Date": [ - "Sat, 02 May 2020 04:55:33 GMT" + "Sun, 18 Apr 2021 06:28:06 GMT" ], "Content-Length": [ - "2907" + "2853" ], "Content-Type": [ "application/json" @@ -4913,29 +4826,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"101ee810-4f8f-4e13-9b5e-d5bee37bed7f-2020-05-02 04:55:33Z-Ps ActivityId: 040a111e-aba0-43d5-baed-246e3d5a19c6\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:55:33.8971434Z\",\r\n \"endTime\": \"2020-05-02T04:55:33.7721458Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-05-02T04:55:33.7721458Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"6a9bd626-6747-48e5-bbc9-82c78e1fdf09 ActivityId: feb0d433-266d-43db-8b3c-26ef184ba74c\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:28:06.5566322Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOWE3MmU3NjgtMWI2Mi00OGQ0LTg5NzEtNGZkNGQ0YzgxY2IzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNTk4ZmRlODUtZDdiZS00YjVhLTgwZWEtMTJlYWIyNzIzNjk5P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84d0329d-b213-4f0f-8789-23428ffa16fc-2020-05-02 04:55:34Z-Ps" + "6352d28e-befa-4e3d-a925-e580aae0818e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391734098)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996534098)\\/\",\"ClientRequestId\":\"84d0329d-b213-4f0f-8789-23428ffa16fc-2020-05-02 04:55:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"e+fTrWoHHD/BREs2w9vJyopt2YqJ1OrrpQKGmXR9XRU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723686834)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328486834)\\/\",\"ClientRequestId\":\"d7dc770f-c33a-4884-9e06-dda0f84c4ddb-2021-04-18 06:28:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lPAsGZOszQo9UEBs1M32ZwL2vhNn0cehyJHY+IabPQQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4946,38 +4859,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11953" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "84d0329d-b213-4f0f-8789-23428ffa16fc-2020-05-02 04:55:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6352d28e-befa-4e3d-a925-e580aae0818e" ], "x-ms-correlation-request-id": [ - "7cb9c78a-e14a-44ac-b865-73dca77c53c1" + "8f944c5a-560e-48c4-9ed9-8daa7e77e7f5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045534Z:7cb9c78a-e14a-44ac-b865-73dca77c53c1" + "CENTRALUSEUAP:20210418T062806Z:8f944c5a-560e-48c4-9ed9-8daa7e77e7f5" ], "Date": [ - "Sat, 02 May 2020 04:55:33 GMT" + "Sun, 18 Apr 2021 06:28:06 GMT" ], "Content-Length": [ - "2921" + "2884" ], "Content-Type": [ "application/json" @@ -4986,29 +4896,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"101ee810-4f8f-4e13-9b5e-d5bee37bed7f-2020-05-02 04:55:33Z-Ps ActivityId: 040a111e-aba0-43d5-baed-246e3d5a19c6\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:55:33.8971434Z\",\r\n \"endTime\": \"2020-05-02T04:55:34.0065505Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-05-02T04:55:34.0065505Z\",\r\n \"endTime\": \"2020-05-02T04:55:34.053399Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-05-02T04:55:34.053399Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"6a9bd626-6747-48e5-bbc9-82c78e1fdf09 ActivityId: feb0d433-266d-43db-8b3c-26ef184ba74c\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:28:06.726693Z\",\r\n \"endTime\": \"2021-04-18T06:28:06.8866636Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T06:28:06.8866636Z\",\r\n \"endTime\": \"2021-04-18T06:28:06.9216426Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T06:28:06.9216426Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOWE3MmU3NjgtMWI2Mi00OGQ0LTg5NzEtNGZkNGQ0YzgxY2IzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNTk4ZmRlODUtZDdiZS00YjVhLTgwZWEtMTJlYWIyNzIzNjk5P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c4e0db6-70a4-4cfb-868a-3024de048b3c-2020-05-02 04:55:54Z-Ps" + "74427f41-2ecb-48e7-9a35-5b9c74b26adb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391754470)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996554470)\\/\",\"ClientRequestId\":\"5c4e0db6-70a4-4cfb-868a-3024de048b3c-2020-05-02 04:55:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1DB/E+9CUXP168e3+00bJt8u94k2Lm8/7VA9Xg6dt1w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723707160)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328507160)\\/\",\"ClientRequestId\":\"b92b37f3-be5b-474a-aa6a-bf32183cd641-2021-04-18 06:28:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"52ehnPpipWnq9p1cHBziZL/TiPKb6XtTZUXv5MPcyGk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5019,38 +4929,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11951" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "5c4e0db6-70a4-4cfb-868a-3024de048b3c-2020-05-02 04:55:54Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "74427f41-2ecb-48e7-9a35-5b9c74b26adb" ], "x-ms-correlation-request-id": [ - "30cd20b8-c65d-49cf-8b58-e4b66b0589b7" + "ee24329c-c63f-4cfc-b770-2ae7081c6ed0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045554Z:30cd20b8-c65d-49cf-8b58-e4b66b0589b7" + "CENTRALUSEUAP:20210418T062827Z:ee24329c-c63f-4cfc-b770-2ae7081c6ed0" ], "Date": [ - "Sat, 02 May 2020 04:55:53 GMT" + "Sun, 18 Apr 2021 06:28:27 GMT" ], "Content-Length": [ - "2921" + "2884" ], "Content-Type": [ "application/json" @@ -5059,29 +4966,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"101ee810-4f8f-4e13-9b5e-d5bee37bed7f-2020-05-02 04:55:33Z-Ps ActivityId: 040a111e-aba0-43d5-baed-246e3d5a19c6\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:55:33.8971434Z\",\r\n \"endTime\": \"2020-05-02T04:55:34.0065505Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-05-02T04:55:34.0065505Z\",\r\n \"endTime\": \"2020-05-02T04:55:34.053399Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-05-02T04:55:34.053399Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"6a9bd626-6747-48e5-bbc9-82c78e1fdf09 ActivityId: feb0d433-266d-43db-8b3c-26ef184ba74c\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:28:06.726693Z\",\r\n \"endTime\": \"2021-04-18T06:28:06.8866636Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T06:28:06.8866636Z\",\r\n \"endTime\": \"2021-04-18T06:28:06.9216426Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T06:28:06.9216426Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOWE3MmU3NjgtMWI2Mi00OGQ0LTg5NzEtNGZkNGQ0YzgxY2IzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNTk4ZmRlODUtZDdiZS00YjVhLTgwZWEtMTJlYWIyNzIzNjk5P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c183d62a-6f68-4f78-9623-3c8b00cafa24-2020-05-02 04:56:14Z-Ps" + "1d4a64dd-b384-4a8d-b42c-942aad42e05d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391774836)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996574836)\\/\",\"ClientRequestId\":\"c183d62a-6f68-4f78-9623-3c8b00cafa24-2020-05-02 04:56:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6gi+cXDjiCpCiMZC4C4vj+lCtDiLcOCukD35xzBR2N4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723727547)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328527547)\\/\",\"ClientRequestId\":\"e7a34440-15b9-439c-a707-a1cccf9d44ab-2021-04-18 06:28:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hNCFO74vox2x+vSk4IjAK+3ISpSpFjcpiTuQIvcC218=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5092,38 +4999,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11949" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c183d62a-6f68-4f78-9623-3c8b00cafa24-2020-05-02 04:56:14Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1d4a64dd-b384-4a8d-b42c-942aad42e05d" ], "x-ms-correlation-request-id": [ - "fd66e947-4751-4a0a-b6cd-1aa3629d49c9" + "aa7f58a4-b900-4960-bd93-4ef7775d9b47" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045615Z:fd66e947-4751-4a0a-b6cd-1aa3629d49c9" + "CENTRALUSEUAP:20210418T062847Z:aa7f58a4-b900-4960-bd93-4ef7775d9b47" ], "Date": [ - "Sat, 02 May 2020 04:56:14 GMT" + "Sun, 18 Apr 2021 06:28:47 GMT" ], "Content-Length": [ - "2921" + "2884" ], "Content-Type": [ "application/json" @@ -5132,29 +5036,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"101ee810-4f8f-4e13-9b5e-d5bee37bed7f-2020-05-02 04:55:33Z-Ps ActivityId: 040a111e-aba0-43d5-baed-246e3d5a19c6\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:55:33.8971434Z\",\r\n \"endTime\": \"2020-05-02T04:55:34.0065505Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-05-02T04:55:34.0065505Z\",\r\n \"endTime\": \"2020-05-02T04:55:34.053399Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-05-02T04:55:34.053399Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"6a9bd626-6747-48e5-bbc9-82c78e1fdf09 ActivityId: feb0d433-266d-43db-8b3c-26ef184ba74c\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:28:06.726693Z\",\r\n \"endTime\": \"2021-04-18T06:28:06.8866636Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T06:28:06.8866636Z\",\r\n \"endTime\": \"2021-04-18T06:28:06.9216426Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T06:28:06.9216426Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOWE3MmU3NjgtMWI2Mi00OGQ0LTg5NzEtNGZkNGQ0YzgxY2IzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNTk4ZmRlODUtZDdiZS00YjVhLTgwZWEtMTJlYWIyNzIzNjk5P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bac97cbc-276d-43d5-9e06-54dbdeaeb550-2020-05-02 04:56:35Z-Ps" + "e4cf8826-5ced-4580-8b38-dd146778069b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391795392)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996595392)\\/\",\"ClientRequestId\":\"bac97cbc-276d-43d5-9e06-54dbdeaeb550-2020-05-02 04:56:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OCfcsC9999DvMYpKibCbPqziFr4xNiLxLXq78yjPA04=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723747877)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328547877)\\/\",\"ClientRequestId\":\"f33ff4f7-996b-47be-9272-18ad3469e09e-2021-04-18 06:29:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gbK4uTosaGOsn6Gmup90M/UjppnRVfm4bQ/bcwERh5Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5165,38 +5069,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11932" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "bac97cbc-276d-43d5-9e06-54dbdeaeb550-2020-05-02 04:56:35Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e4cf8826-5ced-4580-8b38-dd146778069b" ], "x-ms-correlation-request-id": [ - "21b438de-155c-4677-bfc8-b421676462b9" + "2121acf5-f0e2-4938-8abd-235f34cd72bb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045635Z:21b438de-155c-4677-bfc8-b421676462b9" + "CENTRALUSEUAP:20210418T062908Z:2121acf5-f0e2-4938-8abd-235f34cd72bb" ], "Date": [ - "Sat, 02 May 2020 04:56:34 GMT" + "Sun, 18 Apr 2021 06:29:07 GMT" ], "Content-Length": [ - "2921" + "2884" ], "Content-Type": [ "application/json" @@ -5205,29 +5106,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"101ee810-4f8f-4e13-9b5e-d5bee37bed7f-2020-05-02 04:55:33Z-Ps ActivityId: 040a111e-aba0-43d5-baed-246e3d5a19c6\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:55:33.8971434Z\",\r\n \"endTime\": \"2020-05-02T04:55:34.0065505Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-05-02T04:55:34.0065505Z\",\r\n \"endTime\": \"2020-05-02T04:55:34.053399Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-05-02T04:55:34.053399Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"6a9bd626-6747-48e5-bbc9-82c78e1fdf09 ActivityId: feb0d433-266d-43db-8b3c-26ef184ba74c\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:28:06.726693Z\",\r\n \"endTime\": \"2021-04-18T06:28:06.8866636Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T06:28:06.8866636Z\",\r\n \"endTime\": \"2021-04-18T06:28:06.9216426Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T06:28:06.9216426Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOWE3MmU3NjgtMWI2Mi00OGQ0LTg5NzEtNGZkNGQ0YzgxY2IzP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNTk4ZmRlODUtZDdiZS00YjVhLTgwZWEtMTJlYWIyNzIzNjk5P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c61ac0b-9b36-4970-9bf3-ffb7be15be9d-2020-05-02 04:56:55Z-Ps" + "e637848b-23d1-4771-bd0a-4b7b12e58600" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391815762)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996615762)\\/\",\"ClientRequestId\":\"6c61ac0b-9b36-4970-9bf3-ffb7be15be9d-2020-05-02 04:56:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZOXHrR/kZYnlantZR+7q/SJy13rcc2+lfQjN2EEAf1I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723768615)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328568615)\\/\",\"ClientRequestId\":\"727380c7-0f41-4d0b-b765-f4cd4be09641-2021-04-18 06:29:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JPQugKfq+LofH0fbnnuQBg1Sw04V5+hjh2evK7M5dr0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5238,38 +5139,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11930" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "6c61ac0b-9b36-4970-9bf3-ffb7be15be9d-2020-05-02 04:56:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e637848b-23d1-4771-bd0a-4b7b12e58600" ], "x-ms-correlation-request-id": [ - "edfc8669-dd35-44ab-b4b9-a2670c3a92cc" + "95d10c8d-4441-4c63-ae1b-97d8cc497f8b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045655Z:edfc8669-dd35-44ab-b4b9-a2670c3a92cc" + "CENTRALUSEUAP:20210418T062928Z:95d10c8d-4441-4c63-ae1b-97d8cc497f8b" ], "Date": [ - "Sat, 02 May 2020 04:56:55 GMT" + "Sun, 18 Apr 2021 06:29:28 GMT" ], "Content-Length": [ - "2969" + "2930" ], "Content-Type": [ "application/json" @@ -5278,29 +5176,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"101ee810-4f8f-4e13-9b5e-d5bee37bed7f-2020-05-02 04:55:33Z-Ps ActivityId: 040a111e-aba0-43d5-baed-246e3d5a19c6\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:55:33.8971434Z\",\r\n \"endTime\": \"2020-05-02T04:55:34.0065505Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-05-02T04:55:34.0065505Z\",\r\n \"endTime\": \"2020-05-02T04:56:38.6593161Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-05-02T04:56:38.6593161Z\",\r\n \"endTime\": \"2020-05-02T04:56:38.7843064Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"2020-05-02T04:56:38.7843064Z\",\r\n \"endTime\": \"2020-05-02T04:56:38.7843064Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"6a9bd626-6747-48e5-bbc9-82c78e1fdf09 ActivityId: feb0d433-266d-43db-8b3c-26ef184ba74c\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:28:06.726693Z\",\r\n \"endTime\": \"2021-04-18T06:28:06.8866636Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T06:28:06.8866636Z\",\r\n \"endTime\": \"2021-04-18T06:29:18.9139249Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T06:29:18.9139249Z\",\r\n \"endTime\": \"2021-04-18T06:29:19.0289242Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"2021-04-18T06:29:19.0289242Z\",\r\n \"endTime\": \"2021-04-18T06:29:19.0289242Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectionContainerMappings/A2APCM347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzNDcvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUENNMzQ3P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectionContainerMappings/A2APCM347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzNDcvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUENNMzQ3P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ddd1332-ee41-4c4c-a969-b6c0965b4ab6-2020-05-02 04:56:56Z-Ps" + "6670d72c-9676-4369-b0ba-ae68c43a36b1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391816051)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996616051)\\/\",\"ClientRequestId\":\"7ddd1332-ee41-4c4c-a969-b6c0965b4ab6-2020-05-02 04:56:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6qqOkxV2xrHCgZZoeMQBiiVT0dcN1iZ/uFC2cV+yC2w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723768962)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328568962)\\/\",\"ClientRequestId\":\"9baa2267-6fa5-43b4-8c04-9f10ee0c7530-2021-04-18 06:29:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7wfsdT5aTjMH6eW2X9yi7EbRHtBdTrTB3SpgSNqGURs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5311,38 +5209,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11928" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "7ddd1332-ee41-4c4c-a969-b6c0965b4ab6-2020-05-02 04:56:56Z-Ps 5/2/2020 4:56:56 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "6670d72c-9676-4369-b0ba-ae68c43a36b1 4/18/2021 6:29:29 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7ddd1332-ee41-4c4c-a969-b6c0965b4ab6-2020-05-02 04:56:56Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6670d72c-9676-4369-b0ba-ae68c43a36b1" ], "x-ms-correlation-request-id": [ - "58765b93-6c1e-444b-b3b6-12a11838462a" + "133178b5-8ab5-4742-a18b-2e2ea00188c7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045656Z:58765b93-6c1e-444b-b3b6-12a11838462a" + "CENTRALUSEUAP:20210418T062929Z:133178b5-8ab5-4742-a18b-2e2ea00188c7" ], "Date": [ - "Sat, 02 May 2020 04:56:55 GMT" + "Sun, 18 Apr 2021 06:29:28 GMT" ], "Content-Length": [ - "1437" + "1423" ], "Content-Type": [ "application/json" @@ -5351,29 +5246,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectionContainerMappings/A2APCM347\",\r\n \"name\": \"A2APCM347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"targetProtectionContainerFriendlyName\": \"A2ARecoveryContainer347\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"agentAutoUpdateStatus\": \"Disabled\",\r\n \"automationAccountArmId\": null,\r\n \"scheduleName\": null,\r\n \"jobScheduleName\": null\r\n },\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"A2APrimaryContainer347\",\r\n \"sourceFabricFriendlyName\": \"Southeast Asia\",\r\n \"targetFabricFriendlyName\": \"Southeast Asia\",\r\n \"policyFriendlyName\": \"TestA2APolicy1347\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectionContainerMappings/A2APCM347\",\r\n \"name\": \"A2APCM347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"targetProtectionContainerFriendlyName\": \"A2ARecoveryContainer347\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"agentAutoUpdateStatus\": \"Disabled\",\r\n \"automationAccountArmId\": null,\r\n \"scheduleName\": null,\r\n \"jobScheduleName\": null\r\n },\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"A2APrimaryContainer347\",\r\n \"sourceFabricFriendlyName\": \"East US\",\r\n \"targetFabricFriendlyName\": \"East US\",\r\n \"policyFriendlyName\": \"TestA2APolicy1347\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzNDcvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzNDcvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"policyId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Compute/virtualMachines/a2aVM347\",\r\n \"recoveryContainerId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347\",\r\n \"vmDisks\": [],\r\n \"vmManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2AVM347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Storage/storageAccounts/cache347\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\"\r\n }\r\n ],\r\n \"recoveryAvailabilityZone\": \"2\",\r\n \"recoveryAzureNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"recoverySubnetName\": \"frontendSubnet\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Compute/virtualMachines/a2aVM347\",\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347\",\r\n \"vmDisks\": [],\r\n \"vmManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Storage/storageAccounts/cache347\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\"\r\n }\r\n ],\r\n \"recoveryAvailabilityZone\": \"2\",\r\n \"recoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"recoverySubnetName\": \"frontendSubnet\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps" + "c38cdc87-175a-4ca9-a200-e7db57b68465" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391816646)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996616646)\\/\",\"ClientRequestId\":\"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"c7QCdHkuQjt/Ox5BpWnQhF3KIrWYo01JwSy6CgcKHFY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723769724)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328569724)\\/\",\"ClientRequestId\":\"1ac3483b-4110-49ee-9b13-25b69ca50285-2021-04-18 06:29:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mDtFAe6mhjQbexHhxrK0N+p+Q2lRLnGD+daTgf/0Zbg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5390,41 +5285,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347/operationresults/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347/operationresults/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff", - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationOperationStatus/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationOperationStatus/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "c38cdc87-175a-4ca9-a200-e7db57b68465" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1179" ], "x-ms-correlation-request-id": [ - "1c1a63c0-d19a-4aee-bd30-a076b10054e4" + "6954c8ac-f40b-45af-9f5c-26ae147925c7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045657Z:1c1a63c0-d19a-4aee-bd30-a076b10054e4" + "CENTRALUSEUAP:20210418T062930Z:6954c8ac-f40b-45af-9f5c-26ae147925c7" ], "Date": [ - "Sat, 02 May 2020 04:56:56 GMT" + "Sun, 18 Apr 2021 06:29:29 GMT" ], "Expires": [ "-1" @@ -5437,25 +5329,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cee7ee3-c3e8-4f76-9bee-d19888acd6ce-2020-05-02 04:56:57Z-Ps" + "c38cdc87-175a-4ca9-a200-e7db57b68465" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391817348)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996617348)\\/\",\"ClientRequestId\":\"2cee7ee3-c3e8-4f76-9bee-d19888acd6ce-2020-05-02 04:56:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"G6a8LwNnWG2dXDnz8SAgkfno+53kLDXru+roS658VKQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723770469)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328570469)\\/\",\"ClientRequestId\":\"0cb980e7-b649-4a97-8625-3be04c60595c-2021-04-18 06:29:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CC6SYw3cz36JF+nSat/YkksP18RI3ntR7skgabIVqLQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5466,38 +5358,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11926" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2cee7ee3-c3e8-4f76-9bee-d19888acd6ce-2020-05-02 04:56:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c38cdc87-175a-4ca9-a200-e7db57b68465" ], "x-ms-correlation-request-id": [ - "e48bb173-fb87-4cee-8c53-412766758cb7" + "a7b5f929-902e-4a0a-af19-faeb95b43c60" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045657Z:e48bb173-fb87-4cee-8c53-412766758cb7" + "CENTRALUSEUAP:20210418T062930Z:a7b5f929-902e-4a0a-af19-faeb95b43c60" ], "Date": [ - "Sat, 02 May 2020 04:56:56 GMT" + "Sun, 18 Apr 2021 06:29:30 GMT" ], "Content-Length": [ - "3393" + "3355" ], "Content-Type": [ "application/json" @@ -5506,29 +5395,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "514ffa6f-07d5-41f8-95dd-0b3f67e81639-2020-05-02 04:56:57Z-Ps" + "abee7a49-c6d8-4b29-baa8-7a2d81640d53" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391817654)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996617654)\\/\",\"ClientRequestId\":\"514ffa6f-07d5-41f8-95dd-0b3f67e81639-2020-05-02 04:56:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qindjBtg3Lfq2l2S1+SBoVT0672Pi9atTAfrcXt8HgM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723770798)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328570798)\\/\",\"ClientRequestId\":\"f8b2fce6-96ef-4d33-8e3e-91edac6d1813-2021-04-18 06:29:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"x5JavUkx+Frt3MkkUKTUJS1eE2z5wI7XFNG7GP77x9s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5539,38 +5428,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11925" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "514ffa6f-07d5-41f8-95dd-0b3f67e81639-2020-05-02 04:56:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "abee7a49-c6d8-4b29-baa8-7a2d81640d53" ], "x-ms-correlation-request-id": [ - "5cc4275b-892f-4248-974a-c0587588721b" + "490eb873-845a-4a52-981a-cee20db661fb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045657Z:5cc4275b-892f-4248-974a-c0587588721b" + "CENTRALUSEUAP:20210418T062930Z:490eb873-845a-4a52-981a-cee20db661fb" ], "Date": [ - "Sat, 02 May 2020 04:56:57 GMT" + "Sun, 18 Apr 2021 06:29:30 GMT" ], "Content-Length": [ - "3393" + "3355" ], "Content-Type": [ "application/json" @@ -5579,29 +5465,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ec03c21-05f6-43ef-8ef9-da68d57b5639-2020-05-02 04:57:17Z-Ps" + "89eec987-1add-4d79-a71f-64f70bc58bf3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391837997)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996637997)\\/\",\"ClientRequestId\":\"3ec03c21-05f6-43ef-8ef9-da68d57b5639-2020-05-02 04:57:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RxvCmPhh0ohbuJUf4bsH2sRAUvzeB5NhXrIzyC7oT3Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723791143)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328591143)\\/\",\"ClientRequestId\":\"dff5571b-4704-485e-9b44-e273bcbbbf02-2021-04-18 06:29:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XwsqabvPnuKCdgTx+61Wy7/SERPXfzlcrUEcLW0tc8c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5611,39 +5497,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11923" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3ec03c21-05f6-43ef-8ef9-da68d57b5639-2020-05-02 04:57:17Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "89eec987-1add-4d79-a71f-64f70bc58bf3" ], "x-ms-correlation-request-id": [ - "70f9037b-4ce1-4496-abda-7f94de69d2a4" + "03a3de61-0845-4da7-943b-8dc1bbe79413" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045718Z:70f9037b-4ce1-4496-abda-7f94de69d2a4" + "CENTRALUSEUAP:20210418T062951Z:03a3de61-0845-4da7-943b-8dc1bbe79413" ], "Date": [ - "Sat, 02 May 2020 04:57:17 GMT" + "Sun, 18 Apr 2021 06:29:50 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -5652,29 +5535,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4bbd5628-7a77-441a-9b60-d1a0f3b05c0f-2020-05-02 04:57:38Z-Ps" + "7ad778b3-1f2d-4623-a4db-6444ac485db7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391858417)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996658417)\\/\",\"ClientRequestId\":\"4bbd5628-7a77-441a-9b60-d1a0f3b05c0f-2020-05-02 04:57:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EpJR8OFSOfXtEZFVnsiM9/dCgeX8ZaVHSRMxXWTqaV0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723811474)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328611474)\\/\",\"ClientRequestId\":\"cba4da2f-1315-4363-8aa0-f6639b1418c4-2021-04-18 06:30:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uNINkWMWDT5UdOoBt4foiV821weAx4G9o+E77VneeHc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5685,38 +5568,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11921" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "4bbd5628-7a77-441a-9b60-d1a0f3b05c0f-2020-05-02 04:57:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7ad778b3-1f2d-4623-a4db-6444ac485db7" ], "x-ms-correlation-request-id": [ - "7e138073-987e-44eb-ba10-6ca35560d1f4" + "454b6cab-4f94-4726-bfde-b70d7b97b9b3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045738Z:7e138073-987e-44eb-ba10-6ca35560d1f4" + "CENTRALUSEUAP:20210418T063011Z:454b6cab-4f94-4726-bfde-b70d7b97b9b3" ], "Date": [ - "Sat, 02 May 2020 04:57:38 GMT" + "Sun, 18 Apr 2021 06:30:11 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -5725,29 +5605,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "439e680c-b6d9-4b3a-b186-3eeb1bb41cc4-2020-05-02 04:57:59Z-Ps" + "4c7b310d-7068-4a9e-a47f-b24b8ff72249" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391879021)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996679021)\\/\",\"ClientRequestId\":\"439e680c-b6d9-4b3a-b186-3eeb1bb41cc4-2020-05-02 04:57:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qACEqdlFW002U8TyJozmdjYps3VcHDOmiPD7sVaNwf4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723832069)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328632069)\\/\",\"ClientRequestId\":\"c47a4c00-96da-46bd-8c09-93a469d93d8b-2021-04-18 06:30:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1tqomj/6ZdyqgOsySyhVRxBAy7lvjaW046F+WiLdvwQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5758,38 +5638,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11916" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "439e680c-b6d9-4b3a-b186-3eeb1bb41cc4-2020-05-02 04:57:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4c7b310d-7068-4a9e-a47f-b24b8ff72249" ], "x-ms-correlation-request-id": [ - "694e7ec4-9a9b-4717-bb52-1580f10bb944" + "449b67ff-3e4c-4b9c-a40b-7ced5d99a3d3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045759Z:694e7ec4-9a9b-4717-bb52-1580f10bb944" + "CENTRALUSEUAP:20210418T063032Z:449b67ff-3e4c-4b9c-a40b-7ced5d99a3d3" ], "Date": [ - "Sat, 02 May 2020 04:57:59 GMT" + "Sun, 18 Apr 2021 06:30:31 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -5798,29 +5675,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed31ba81-4bae-46b5-ace0-3b9b70667e71-2020-05-02 04:58:19Z-Ps" + "b81403ed-0ee0-4e47-871a-c272427c193d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391899428)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996699428)\\/\",\"ClientRequestId\":\"ed31ba81-4bae-46b5-ace0-3b9b70667e71-2020-05-02 04:58:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gDUL2Jo/YuG+eokWp5pP2UxHzCUIJMUUA7LeMVXWGao=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723852407)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328652407)\\/\",\"ClientRequestId\":\"d3f77190-e947-4c69-9511-0c5626287f24-2021-04-18 06:30:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WykZdj46D2NE29cWxTCv5oDoeuf2OpMVaQmHddEqUuI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5831,38 +5708,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11914" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ed31ba81-4bae-46b5-ace0-3b9b70667e71-2020-05-02 04:58:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b81403ed-0ee0-4e47-871a-c272427c193d" ], "x-ms-correlation-request-id": [ - "3ac1c9d0-20bf-40d4-a8a0-094fb1995830" + "9d2022c4-a3c6-4f69-a03b-ee85baec3703" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045819Z:3ac1c9d0-20bf-40d4-a8a0-094fb1995830" + "CENTRALUSEUAP:20210418T063052Z:9d2022c4-a3c6-4f69-a03b-ee85baec3703" ], "Date": [ - "Sat, 02 May 2020 04:58:18 GMT" + "Sun, 18 Apr 2021 06:30:52 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -5871,29 +5745,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3c5f566-a285-481a-8c66-0db4c98ddbce-2020-05-02 04:58:39Z-Ps" + "1fb44a35-1a2a-4876-876f-bf5acb85d04f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391919793)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996719793)\\/\",\"ClientRequestId\":\"e3c5f566-a285-481a-8c66-0db4c98ddbce-2020-05-02 04:58:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BagS9L8g87Pf7gKd8dk/0CYQv9soRHDUhj4qjmG+VEQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723872844)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328672844)\\/\",\"ClientRequestId\":\"7d00c98a-d02e-4073-a06b-6b674396f2bb-2021-04-18 06:31:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wnjdGNBBp7HZKn7hECc+pn8mS/YPW7a2Iia5m937z5Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5903,39 +5777,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e3c5f566-a285-481a-8c66-0db4c98ddbce-2020-05-02 04:58:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "1fb44a35-1a2a-4876-876f-bf5acb85d04f" ], "x-ms-correlation-request-id": [ - "c2563cc9-3e15-4079-a69f-1ba68c963274" + "005759d8-489d-4e10-a66e-51ef9302466e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045839Z:c2563cc9-3e15-4079-a69f-1ba68c963274" + "CENTRALUSEUAP:20210418T063112Z:005759d8-489d-4e10-a66e-51ef9302466e" ], "Date": [ - "Sat, 02 May 2020 04:58:39 GMT" + "Sun, 18 Apr 2021 06:31:12 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -5944,29 +5815,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32f5830e-7e3a-4b4d-879b-75d1afa93964-2020-05-02 04:59:00Z-Ps" + "b289f6fe-be1e-47b8-92c5-b42b6bfeef4c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391940164)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996740164)\\/\",\"ClientRequestId\":\"32f5830e-7e3a-4b4d-879b-75d1afa93964-2020-05-02 04:59:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8u4GzEHbxnMl8RTn04SCVUcrQRR4P+dEpX7nSTTOnFc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723893180)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328693180)\\/\",\"ClientRequestId\":\"08522514-f166-40d1-b5a3-77254f0b84d1-2021-04-18 06:31:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OzJn3XNTGLob4ZxV6uWkV81Bj68162dMZalaOiy/3TU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5977,38 +5848,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11909" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "32f5830e-7e3a-4b4d-879b-75d1afa93964-2020-05-02 04:59:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b289f6fe-be1e-47b8-92c5-b42b6bfeef4c" ], "x-ms-correlation-request-id": [ - "a1b009ff-f346-4fdd-aaa4-b2fbbf7ac237" + "6807629a-61c4-4498-8779-395772336fdb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045900Z:a1b009ff-f346-4fdd-aaa4-b2fbbf7ac237" + "CENTRALUSEUAP:20210418T063133Z:6807629a-61c4-4498-8779-395772336fdb" ], "Date": [ - "Sat, 02 May 2020 04:59:00 GMT" + "Sun, 18 Apr 2021 06:31:33 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -6017,29 +5885,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23403633-21c4-4b83-8ca4-8fdafbd01dd8-2020-05-02 04:59:20Z-Ps" + "c29ff0e4-75e5-41da-8120-9083c789e695" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391960955)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996760955)\\/\",\"ClientRequestId\":\"23403633-21c4-4b83-8ca4-8fdafbd01dd8-2020-05-02 04:59:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hJkXzu4MCXbtDxORd7mrlq341JhWkkFhZVZafcyj+nk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723913529)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328713529)\\/\",\"ClientRequestId\":\"e8af69f4-3e18-4613-b598-d8e7e456eb11-2021-04-18 06:31:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xwlE4dJvD5QGsgCB45JoKnFvcEJWpEAWNMD0UHtMKGE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6050,38 +5918,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11907" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "23403633-21c4-4b83-8ca4-8fdafbd01dd8-2020-05-02 04:59:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c29ff0e4-75e5-41da-8120-9083c789e695" ], "x-ms-correlation-request-id": [ - "7b0aa7ae-01a2-43e3-b52e-616a232cd457" + "cb2fef9e-5850-4730-b1b1-b26c041ad88a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045921Z:7b0aa7ae-01a2-43e3-b52e-616a232cd457" + "CENTRALUSEUAP:20210418T063153Z:cb2fef9e-5850-4730-b1b1-b26c041ad88a" ], "Date": [ - "Sat, 02 May 2020 04:59:20 GMT" + "Sun, 18 Apr 2021 06:31:53 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -6090,29 +5955,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcc22aeb-e43c-44a6-adf1-4589749c657c-2020-05-02 04:59:41Z-Ps" + "1dda182a-5ea0-4f99-93f4-dfb66569175e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588391981343)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996781343)\\/\",\"ClientRequestId\":\"fcc22aeb-e43c-44a6-adf1-4589749c657c-2020-05-02 04:59:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"R//yTtJvouKEK4Gy+4HRLLshlir14W8eJNOFqtfQNyI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723933864)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328733864)\\/\",\"ClientRequestId\":\"595e4a66-5f61-4e1a-97a8-0f5031818631-2021-04-18 06:32:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DHU/taSXg+DkIhHKvs998OvQGMM0DBj6fGW87nzDEmc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6123,38 +5988,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11905" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "fcc22aeb-e43c-44a6-adf1-4589749c657c-2020-05-02 04:59:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1dda182a-5ea0-4f99-93f4-dfb66569175e" ], "x-ms-correlation-request-id": [ - "63dc1d7a-dcae-4305-bedf-0e55f81b4ffa" + "8112f65b-054a-4f82-9aaa-48856f936103" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T045941Z:63dc1d7a-dcae-4305-bedf-0e55f81b4ffa" + "CENTRALUSEUAP:20210418T063214Z:8112f65b-054a-4f82-9aaa-48856f936103" ], "Date": [ - "Sat, 02 May 2020 04:59:41 GMT" + "Sun, 18 Apr 2021 06:32:13 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -6163,29 +6025,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5032e578-d849-4aa5-b442-018b70b29aa4-2020-05-02 05:00:01Z-Ps" + "abb8b925-368f-4245-813f-a25b8ac91373" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392001685)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996801685)\\/\",\"ClientRequestId\":\"5032e578-d849-4aa5-b442-018b70b29aa4-2020-05-02 05:00:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yuG3Aek+zlvXT360h22zMVMarfIR00jDZV7Sst12Dsk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723954222)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328754222)\\/\",\"ClientRequestId\":\"80ba80d1-d081-4f64-b98b-f755ed271294-2021-04-18 06:32:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"a4+HQuRv4EJeZvKQCPAKwT2mOYAaaros9TaLlK88U7o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6195,39 +6057,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11900" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "5032e578-d849-4aa5-b442-018b70b29aa4-2020-05-02 05:00:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "abb8b925-368f-4245-813f-a25b8ac91373" ], "x-ms-correlation-request-id": [ - "6c67c138-90cc-44c9-98b7-45b72fb47db6" + "85c922f2-ab94-413b-849f-7e0278ae7a03" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050001Z:6c67c138-90cc-44c9-98b7-45b72fb47db6" + "CENTRALUSEUAP:20210418T063234Z:85c922f2-ab94-413b-849f-7e0278ae7a03" ], "Date": [ - "Sat, 02 May 2020 05:00:01 GMT" + "Sun, 18 Apr 2021 06:32:33 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -6236,29 +6095,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2fb6dd36-2031-4e8d-9b46-879ebab431e5-2020-05-02 05:00:22Z-Ps" + "97acf786-a0cd-4ffb-86bc-87b350b2010b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392022087)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996822087)\\/\",\"ClientRequestId\":\"2fb6dd36-2031-4e8d-9b46-879ebab431e5-2020-05-02 05:00:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"40gXpHLkcRJ36Xdh7nc8EZ7eSLMaoybsHs1HgNfdxYc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723974581)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328774581)\\/\",\"ClientRequestId\":\"b7f37192-5013-4e86-824d-653abf26e9d1-2021-04-18 06:32:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"aOSHrDWyK1y4hcOsrd0ZZwEEKWFCPn8shpxCjf9oiZ4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6269,38 +6128,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11895" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2fb6dd36-2031-4e8d-9b46-879ebab431e5-2020-05-02 05:00:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "97acf786-a0cd-4ffb-86bc-87b350b2010b" ], "x-ms-correlation-request-id": [ - "60e4603c-0387-4a1c-bd02-e9baf020bfc5" + "ec40365e-8939-410e-8fa2-615453320e98" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050022Z:60e4603c-0387-4a1c-bd02-e9baf020bfc5" + "CENTRALUSEUAP:20210418T063254Z:ec40365e-8939-410e-8fa2-615453320e98" ], "Date": [ - "Sat, 02 May 2020 05:00:21 GMT" + "Sun, 18 Apr 2021 06:32:54 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -6309,29 +6165,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e21fd6d-6cc8-4fba-995b-742252c91adf-2020-05-02 05:00:42Z-Ps" + "52a28158-8ff4-4fe4-b7ed-70d62e6d92bc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392042665)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996842665)\\/\",\"ClientRequestId\":\"3e21fd6d-6cc8-4fba-995b-742252c91adf-2020-05-02 05:00:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"su2OBhi9epWH4f1kKAU0DU8aLXAzOohe8ymrHDEbLm0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618723995014)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328795014)\\/\",\"ClientRequestId\":\"95b9d231-6425-41ed-97c3-093bece92fda-2021-04-18 06:33:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EQNS3XKs60Lhq4XnZaGrni+ktshK/RDpYk4OvWfjca0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6342,38 +6198,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11893" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3e21fd6d-6cc8-4fba-995b-742252c91adf-2020-05-02 05:00:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "52a28158-8ff4-4fe4-b7ed-70d62e6d92bc" ], "x-ms-correlation-request-id": [ - "3df77ca8-e12c-4317-880a-e38a7d23ed30" + "ca6cd934-9245-4d95-9824-b7de461f9fba" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050042Z:3df77ca8-e12c-4317-880a-e38a7d23ed30" + "CENTRALUSEUAP:20210418T063315Z:ca6cd934-9245-4d95-9824-b7de461f9fba" ], "Date": [ - "Sat, 02 May 2020 05:00:42 GMT" + "Sun, 18 Apr 2021 06:33:14 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -6382,29 +6235,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1217b856-32f0-4956-80d8-ef9467f30e73-2020-05-02 05:01:03Z-Ps" + "31016eaf-d9e3-4df9-b911-ed0be63061fa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392063038)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996863038)\\/\",\"ClientRequestId\":\"1217b856-32f0-4956-80d8-ef9467f30e73-2020-05-02 05:01:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lyZLLzUucVelTPxLsVypB3IdVFC1m9XcE+uNx32jMXk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724015386)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328815386)\\/\",\"ClientRequestId\":\"7e1a13e4-401d-4b26-a214-c469657f265a-2021-04-18 06:33:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IMDgPbIaS2E4g33qqchjNuHB3Tgqw6LPlkfc80pkqRQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6415,38 +6268,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11891" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1217b856-32f0-4956-80d8-ef9467f30e73-2020-05-02 05:01:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "31016eaf-d9e3-4df9-b911-ed0be63061fa" ], "x-ms-correlation-request-id": [ - "9c4cd7ad-55ed-4104-a70f-79d2644d626b" + "66d75984-66e7-4b37-8aeb-3685839893c9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050103Z:9c4cd7ad-55ed-4104-a70f-79d2644d626b" + "CENTRALUSEUAP:20210418T063335Z:66d75984-66e7-4b37-8aeb-3685839893c9" ], "Date": [ - "Sat, 02 May 2020 05:01:02 GMT" + "Sun, 18 Apr 2021 06:33:35 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -6455,29 +6305,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6f59745-7f4b-4416-9b2e-6b70985932ef-2020-05-02 05:01:23Z-Ps" + "50beb32e-f693-4236-9bb4-6f38eaf65016" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392083443)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996883443)\\/\",\"ClientRequestId\":\"c6f59745-7f4b-4416-9b2e-6b70985932ef-2020-05-02 05:01:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DygGAyXWux9kflHsfOnuuEkFWXwwILvEAJrfwg/x868=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724035783)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328835783)\\/\",\"ClientRequestId\":\"5ce42d43-e95f-47e6-b351-ef90f09324c2-2021-04-18 06:33:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3ncab718oC2fKjG4vDU1cykUnwEyvnrqQKdX/6kZX2w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6487,39 +6337,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11889" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c6f59745-7f4b-4416-9b2e-6b70985932ef-2020-05-02 05:01:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "50beb32e-f693-4236-9bb4-6f38eaf65016" ], "x-ms-correlation-request-id": [ - "b7afc907-02e8-421c-9242-214508d48ac3" + "acabeaf1-a606-4f11-bf78-dd562a6b905b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050124Z:b7afc907-02e8-421c-9242-214508d48ac3" + "CENTRALUSEUAP:20210418T063355Z:acabeaf1-a606-4f11-bf78-dd562a6b905b" ], "Date": [ - "Sat, 02 May 2020 05:01:23 GMT" + "Sun, 18 Apr 2021 06:33:55 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -6528,29 +6375,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3d5ec59-5f6f-4c70-9d0f-ef89db1a8b43-2020-05-02 05:01:44Z-Ps" + "a5018716-73b4-4c61-be4a-46612eb681f9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392104425)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996904425)\\/\",\"ClientRequestId\":\"c3d5ec59-5f6f-4c70-9d0f-ef89db1a8b43-2020-05-02 05:01:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JsrWMdnA6sWlCjYcl/HGB+CawD18Q21ouCebROBZ1qU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724056152)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328856152)\\/\",\"ClientRequestId\":\"1830d54b-da32-4d36-a75d-719c7f2beb35-2021-04-18 06:34:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"E3hCfkgeOZXBGi11JGBFDOtTr/NCCGDcDqMrMiQ4ka0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6561,38 +6408,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11887" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c3d5ec59-5f6f-4c70-9d0f-ef89db1a8b43-2020-05-02 05:01:44Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a5018716-73b4-4c61-be4a-46612eb681f9" ], "x-ms-correlation-request-id": [ - "b9444925-d58e-46cf-af44-af3b53722000" + "6f2cf22f-bcbb-4f16-98b9-b943dffb1085" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050144Z:b9444925-d58e-46cf-af44-af3b53722000" + "CENTRALUSEUAP:20210418T063416Z:6f2cf22f-bcbb-4f16-98b9-b943dffb1085" ], "Date": [ - "Sat, 02 May 2020 05:01:43 GMT" + "Sun, 18 Apr 2021 06:34:15 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -6601,29 +6445,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd368329-cb0a-47f2-8d43-59999354a543-2020-05-02 05:02:05Z-Ps" + "c12bb0a6-b4e3-42b2-badb-168e7d767e63" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392125007)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996925007)\\/\",\"ClientRequestId\":\"cd368329-cb0a-47f2-8d43-59999354a543-2020-05-02 05:02:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ui1hPrkPLWjXXwEOFNu9SHppJvhQ/peobYritBLqL/Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724076533)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328876533)\\/\",\"ClientRequestId\":\"ec31d663-6849-4ff6-b900-954ec5698e3f-2021-04-18 06:34:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sAUrfN2FGwYZvGAOLFWl9gEFFlGsZioHHu+f2aqR5oU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6634,38 +6478,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11885" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "cd368329-cb0a-47f2-8d43-59999354a543-2020-05-02 05:02:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c12bb0a6-b4e3-42b2-badb-168e7d767e63" ], "x-ms-correlation-request-id": [ - "b54473ee-bb3d-41c4-9666-cd2e3b5530fc" + "99a34415-0b96-4eaa-8896-9dadd29dac2e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050205Z:b54473ee-bb3d-41c4-9666-cd2e3b5530fc" + "CENTRALUSEUAP:20210418T063436Z:99a34415-0b96-4eaa-8896-9dadd29dac2e" ], "Date": [ - "Sat, 02 May 2020 05:02:04 GMT" + "Sun, 18 Apr 2021 06:34:36 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -6674,29 +6515,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "611da70c-eb08-4e04-9966-19647fc72105-2020-05-02 05:02:25Z-Ps" + "6731979f-b6a2-4818-9a6f-29fcb1b47c41" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392145501)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996945501)\\/\",\"ClientRequestId\":\"611da70c-eb08-4e04-9966-19647fc72105-2020-05-02 05:02:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tc0K7jWmSJiydKWPCJ5OhapwhKN3A4X4ymobqMYngkU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724096874)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328896874)\\/\",\"ClientRequestId\":\"00c1bc1a-4cce-4306-8248-9051d503d240-2021-04-18 06:34:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tIlcE+ZAWr0eDM3b8L4b52KneJeOvPyZHS4UXBamaiQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6707,38 +6548,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11883" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "611da70c-eb08-4e04-9966-19647fc72105-2020-05-02 05:02:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6731979f-b6a2-4818-9a6f-29fcb1b47c41" ], "x-ms-correlation-request-id": [ - "4c0e8e79-c3ea-47f2-b874-89d422f79732" + "47511e02-fe7a-4e41-8665-ed72eea496f5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050225Z:4c0e8e79-c3ea-47f2-b874-89d422f79732" + "CENTRALUSEUAP:20210418T063457Z:47511e02-fe7a-4e41-8665-ed72eea496f5" ], "Date": [ - "Sat, 02 May 2020 05:02:25 GMT" + "Sun, 18 Apr 2021 06:34:56 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -6747,29 +6585,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7120d30c-43a4-41c1-850a-e50b0a07dd71-2020-05-02 05:02:45Z-Ps" + "13f7f766-40e5-4a3c-9004-0b9904b765da" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392165913)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996965913)\\/\",\"ClientRequestId\":\"7120d30c-43a4-41c1-850a-e50b0a07dd71-2020-05-02 05:02:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bvhmmXZOmUCH+I/75MCTXOMeSDJAIWS/OmgnMIaqqh4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724117276)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328917276)\\/\",\"ClientRequestId\":\"c9e2cd67-fe51-413c-93b0-02fcfe508026-2021-04-18 06:35:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"C7BeERztk/+gp36FHI7uz1RwG6nICxMgBbVlRrv0dXk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6779,39 +6617,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11881" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7120d30c-43a4-41c1-850a-e50b0a07dd71-2020-05-02 05:02:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "13f7f766-40e5-4a3c-9004-0b9904b765da" ], "x-ms-correlation-request-id": [ - "39c3885e-10fb-48cc-b71b-e053151a0732" + "b1b7d4b8-c31c-41a3-bf4e-aa2531ee875d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050246Z:39c3885e-10fb-48cc-b71b-e053151a0732" + "CENTRALUSEUAP:20210418T063517Z:b1b7d4b8-c31c-41a3-bf4e-aa2531ee875d" ], "Date": [ - "Sat, 02 May 2020 05:02:45 GMT" + "Sun, 18 Apr 2021 06:35:17 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -6820,29 +6655,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd2fcd07-9ed6-4ca3-8a52-14aa1d23770b-2020-05-02 05:03:06Z-Ps" + "9ebc205e-7d4e-47d9-9284-f83276afbb23" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392186275)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588996986275)\\/\",\"ClientRequestId\":\"bd2fcd07-9ed6-4ca3-8a52-14aa1d23770b-2020-05-02 05:03:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"l8PQYsKbcAW6y9K0+1U5KVqgqRYslZ8Hk2l4jbZYxRI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724137649)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328937649)\\/\",\"ClientRequestId\":\"a0522d40-0c01-4c55-bf7a-5f682da569c7-2021-04-18 06:35:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PGIo988SB3GgikyYHNSAguoCYv/cJ1nZTk1gVYUda5Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6853,38 +6688,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" + "11879" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "bd2fcd07-9ed6-4ca3-8a52-14aa1d23770b-2020-05-02 05:03:06Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9ebc205e-7d4e-47d9-9284-f83276afbb23" ], "x-ms-correlation-request-id": [ - "a185d781-344d-4f05-83c9-afb46283e7ea" + "5bdb4bc8-62f1-4f9f-b4c0-78f3c2acb335" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050306Z:a185d781-344d-4f05-83c9-afb46283e7ea" + "CENTRALUSEUAP:20210418T063537Z:5bdb4bc8-62f1-4f9f-b4c0-78f3c2acb335" ], "Date": [ - "Sat, 02 May 2020 05:03:05 GMT" + "Sun, 18 Apr 2021 06:35:37 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -6893,29 +6725,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a21380e4-ec5a-473b-8c90-a7e5d12ab005-2020-05-02 05:03:26Z-Ps" + "fd9f8a04-48a5-43d7-99b7-ee3de99252d0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392206823)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997006823)\\/\",\"ClientRequestId\":\"a21380e4-ec5a-473b-8c90-a7e5d12ab005-2020-05-02 05:03:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8rSQKyrj6Z87N/EB00dtqy1Iu11K0e+9ppWdI6ifmbY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724157983)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328957983)\\/\",\"ClientRequestId\":\"236dbe60-6af7-488a-b3ac-143a90f28f70-2021-04-18 06:35:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RAV2/YFqpQbiFfmCYkXkuboIwRGoX8977j4ovr1mzNQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6925,39 +6757,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a21380e4-ec5a-473b-8c90-a7e5d12ab005-2020-05-02 05:03:26Z-Ps" + "fd9f8a04-48a5-43d7-99b7-ee3de99252d0" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11877" ], "x-ms-correlation-request-id": [ - "c213bd07-a51e-46ed-ab8a-0e221a93c655" + "04a60048-5381-4bd4-8865-12430dd5a11a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050326Z:c213bd07-a51e-46ed-ab8a-0e221a93c655" + "CENTRALUSEUAP:20210418T063558Z:04a60048-5381-4bd4-8865-12430dd5a11a" ], "Date": [ - "Sat, 02 May 2020 05:03:26 GMT" + "Sun, 18 Apr 2021 06:35:58 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -6966,29 +6795,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79872912-1f1c-46d2-9184-c658f194fc79-2020-05-02 05:03:47Z-Ps" + "0c6ff9e7-cef7-428d-878a-956461038d27" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392227176)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997027176)\\/\",\"ClientRequestId\":\"79872912-1f1c-46d2-9184-c658f194fc79-2020-05-02 05:03:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"e7fzI+m1S41WvhAKJaqKM6Gs8gq0DhEunh2bwxHxiLE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724178389)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619328978389)\\/\",\"ClientRequestId\":\"b8961929-7072-4711-b852-1d635e58ca95-2021-04-18 06:36:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yWvFno0Frb/lVkcJj/OjYVZoKz1zgQKsPK06AI2GCsw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6999,38 +6828,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" + "11999" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "79872912-1f1c-46d2-9184-c658f194fc79-2020-05-02 05:03:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0c6ff9e7-cef7-428d-878a-956461038d27" ], "x-ms-correlation-request-id": [ - "b9fa2629-32ae-4534-8d5b-0137f6ea48e6" + "8b64a146-7667-464a-ac6b-f3895d8e9634" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050347Z:b9fa2629-32ae-4534-8d5b-0137f6ea48e6" + "CENTRALUSEUAP:20210418T063622Z:8b64a146-7667-464a-ac6b-f3895d8e9634" ], "Date": [ - "Sat, 02 May 2020 05:03:46 GMT" + "Sun, 18 Apr 2021 06:36:21 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -7039,29 +6865,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1983427e-a353-414f-89d4-02cecd5d6847-2020-05-02 05:04:07Z-Ps" + "51eeae3a-5a5a-4d14-8972-6e2afd32ac8b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392247559)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997047559)\\/\",\"ClientRequestId\":\"1983427e-a353-414f-89d4-02cecd5d6847-2020-05-02 05:04:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+l1ZkJQfhmX9cCqrFOeNmWfYIQekdFZg4Cy4y8g3Nr4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724202951)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329002951)\\/\",\"ClientRequestId\":\"37292932-eaca-49e3-9ba4-e52e3f720bf3-2021-04-18 06:36:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RhevgHceEtpvsVAn8CCUGT3E72KQnGEVK6GjNgbpa0k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7071,39 +6897,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1983427e-a353-414f-89d4-02cecd5d6847-2020-05-02 05:04:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" + "51eeae3a-5a5a-4d14-8972-6e2afd32ac8b" ], "x-ms-correlation-request-id": [ - "61eafef8-2404-4edc-913e-3abf3b463d06" + "ffa63670-ff2c-425c-a3b4-832c8f9b9c4d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050407Z:61eafef8-2404-4edc-913e-3abf3b463d06" + "CENTRALUSEUAP:20210418T063643Z:ffa63670-ff2c-425c-a3b4-832c8f9b9c4d" ], "Date": [ - "Sat, 02 May 2020 05:04:07 GMT" + "Sun, 18 Apr 2021 06:36:42 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -7112,29 +6935,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12e53b30-d9cb-4a69-9680-586261142c01-2020-05-02 05:04:27Z-Ps" + "bb5c4fb9-0503-4873-a6c2-d6165871cdda" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392267946)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997067946)\\/\",\"ClientRequestId\":\"12e53b30-d9cb-4a69-9680-586261142c01-2020-05-02 05:04:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5xkxjh9BoskTAIro33Us82XCtNRRdICcPx/5Qby6oTs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724223335)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329023335)\\/\",\"ClientRequestId\":\"4752d9f9-ef7e-4502-894d-b366b5e1f6d2-2021-04-18 06:37:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"l/PhvE3z6SJZ/o5uRxqkfFI8jhXxvLToeNq/cYgsaCo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7145,38 +6968,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" + "11995" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "12e53b30-d9cb-4a69-9680-586261142c01-2020-05-02 05:04:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bb5c4fb9-0503-4873-a6c2-d6165871cdda" ], "x-ms-correlation-request-id": [ - "09b0963b-041f-461f-89e6-0c4180d2da8b" + "ff355262-7626-4275-9305-d1dc25ce378c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050428Z:09b0963b-041f-461f-89e6-0c4180d2da8b" + "CENTRALUSEUAP:20210418T063703Z:ff355262-7626-4275-9305-d1dc25ce378c" ], "Date": [ - "Sat, 02 May 2020 05:04:27 GMT" + "Sun, 18 Apr 2021 06:37:03 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -7185,29 +7005,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6094672d-4abd-4ce6-910e-e9a42cfe6e2d-2020-05-02 05:04:48Z-Ps" + "8f2dbd0b-c973-4052-b559-02f4b82b6746" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392288354)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997088354)\\/\",\"ClientRequestId\":\"6094672d-4abd-4ce6-910e-e9a42cfe6e2d-2020-05-02 05:04:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OHZAu5iNt45VXvmdyoAEq5Zoqyids9DsAu+PngYq2yM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724243706)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329043706)\\/\",\"ClientRequestId\":\"3e751539-1dff-418f-8a74-bd6865152914-2021-04-18 06:37:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5O8Othb40gx0as0+zZ0mNq5tZc6syvwR7syAgeySKWU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7218,38 +7038,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11993" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "6094672d-4abd-4ce6-910e-e9a42cfe6e2d-2020-05-02 05:04:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8f2dbd0b-c973-4052-b559-02f4b82b6746" ], "x-ms-correlation-request-id": [ - "f645c12b-f7d5-4595-949b-1241958eda62" + "285efcde-d8b3-4140-8dd1-299e16a769a6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050448Z:f645c12b-f7d5-4595-949b-1241958eda62" + "CENTRALUSEUAP:20210418T063723Z:285efcde-d8b3-4140-8dd1-299e16a769a6" ], "Date": [ - "Sat, 02 May 2020 05:04:47 GMT" + "Sun, 18 Apr 2021 06:37:23 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -7258,29 +7075,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de579d82-3d89-462c-9d06-d7d0f996ad20-2020-05-02 05:05:08Z-Ps" + "f6761d2e-5f16-4a1b-a491-2ec9f005440f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392308710)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997108710)\\/\",\"ClientRequestId\":\"de579d82-3d89-462c-9d06-d7d0f996ad20-2020-05-02 05:05:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hFLQWnbcuUL1FCu+JkRuHit7uLbu7t5v7IfmoALhy2w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724264095)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329064095)\\/\",\"ClientRequestId\":\"118ac66c-d6ac-4e46-92cd-06108c8d297f-2021-04-18 06:37:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"m4Syhc7WN/OVtpb2LDonx5Hml1eYx8tPrS+Byp1utU4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7291,38 +7108,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" + "11991" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "de579d82-3d89-462c-9d06-d7d0f996ad20-2020-05-02 05:05:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f6761d2e-5f16-4a1b-a491-2ec9f005440f" ], "x-ms-correlation-request-id": [ - "b34d30e8-d63a-484e-94eb-2ad1df64858f" + "03beea89-b4d6-4998-b5b6-13277dd5bd61" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050508Z:b34d30e8-d63a-484e-94eb-2ad1df64858f" + "CENTRALUSEUAP:20210418T063744Z:03beea89-b4d6-4998-b5b6-13277dd5bd61" ], "Date": [ - "Sat, 02 May 2020 05:05:08 GMT" + "Sun, 18 Apr 2021 06:37:43 GMT" ], "Content-Length": [ - "3409" + "3371" ], "Content-Type": [ "application/json" @@ -7331,29 +7145,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3570181b-d44e-40b0-ac29-1af3d957edef-2020-05-02 05:05:29Z-Ps" + "9cc272d7-b2bc-41f3-838d-8135fe9d509d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392329077)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997129077)\\/\",\"ClientRequestId\":\"3570181b-d44e-40b0-ac29-1af3d957edef-2020-05-02 05:05:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MkgXSFDz+7doiJLQE5mrBCrpeJ8uNlBhL7jEd9M/irs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724284464)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329084464)\\/\",\"ClientRequestId\":\"863c34ea-17ea-47c5-8901-ca439881f88b-2021-04-18 06:38:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"M6Z0IMeBP46aDTuq3fDauKGpbY/SOA1rapgfWxyj8oI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7364,38 +7178,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" + "11989" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3570181b-d44e-40b0-ac29-1af3d957edef-2020-05-02 05:05:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9cc272d7-b2bc-41f3-838d-8135fe9d509d" ], "x-ms-correlation-request-id": [ - "ee9136bf-51cb-4086-98b2-948c78ac2ffd" + "0a1ed4b0-2504-4240-b765-990b997da33e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050529Z:ee9136bf-51cb-4086-98b2-948c78ac2ffd" + "CENTRALUSEUAP:20210418T063804Z:0a1ed4b0-2504-4240-b765-990b997da33e" ], "Date": [ - "Sat, 02 May 2020 05:05:29 GMT" + "Sun, 18 Apr 2021 06:38:04 GMT" ], "Content-Length": [ - "3441" + "3371" ], "Content-Type": [ "application/json" @@ -7404,29 +7215,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a1509b5-730e-47f1-a396-a52f60723bf1-2020-05-02 05:05:49Z-Ps" + "3e1a3415-a316-4315-93ab-99ec392fa9b2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392349448)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997149448)\\/\",\"ClientRequestId\":\"8a1509b5-730e-47f1-a396-a52f60723bf1-2020-05-02 05:05:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gtAGl4TqxquGlntO96RHbRIaU3CRrMslE+xIxwd0Jlw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724304846)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329104846)\\/\",\"ClientRequestId\":\"610111aa-3da1-4a58-80d1-055437fc3e3f-2021-04-18 06:38:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mxeuhbEIfWC/5qh6NGujA/ZI42GaparySw72xoNnHf4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7437,38 +7248,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" + "11987" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "8a1509b5-730e-47f1-a396-a52f60723bf1-2020-05-02 05:05:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3e1a3415-a316-4315-93ab-99ec392fa9b2" ], "x-ms-correlation-request-id": [ - "b3c0a813-77e3-4060-a28f-ff90107bb644" + "3557eb9a-e405-4945-986b-57e2127426d0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050549Z:b3c0a813-77e3-4060-a28f-ff90107bb644" + "CENTRALUSEUAP:20210418T063825Z:3557eb9a-e405-4945-986b-57e2127426d0" ], "Date": [ - "Sat, 02 May 2020 05:05:49 GMT" + "Sun, 18 Apr 2021 06:38:24 GMT" ], "Content-Length": [ - "3441" + "3403" ], "Content-Type": [ "application/json" @@ -7477,29 +7285,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"2021-04-18T06:38:09.6399462Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T06:38:09.6399462Z\",\r\n \"endTime\": \"2021-04-18T06:38:09.8649517Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T06:38:09.8649517Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "515287c3-274b-4e33-b1cf-926a0c4223aa-2020-05-02 05:06:09Z-Ps" + "bb024548-489e-4adc-96e1-d8e5e491dd6b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392369822)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997169822)\\/\",\"ClientRequestId\":\"515287c3-274b-4e33-b1cf-926a0c4223aa-2020-05-02 05:06:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"V4lM0Ny6e8T71kDlQKTcb41KQPUq7jkAg7wOOk9AsEY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724325221)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329125221)\\/\",\"ClientRequestId\":\"be996964-8559-4c39-9136-6651d046aedf-2021-04-18 06:38:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EvoN5yl5jV+CatAM64QSy57zn8tPqs+qIaQphHcgf6Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7510,38 +7318,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11985" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "515287c3-274b-4e33-b1cf-926a0c4223aa-2020-05-02 05:06:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bb024548-489e-4adc-96e1-d8e5e491dd6b" ], "x-ms-correlation-request-id": [ - "dcf5c33e-969e-4a9e-8912-3c04a911a8e1" + "1fe392ec-266c-4a13-b1eb-f11d011fba30" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050610Z:dcf5c33e-969e-4a9e-8912-3c04a911a8e1" + "CENTRALUSEUAP:20210418T063845Z:1fe392ec-266c-4a13-b1eb-f11d011fba30" ], "Date": [ - "Sat, 02 May 2020 05:06:09 GMT" + "Sun, 18 Apr 2021 06:38:44 GMT" ], "Content-Length": [ - "3441" + "3403" ], "Content-Type": [ "application/json" @@ -7550,29 +7355,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"2021-04-18T06:38:09.6399462Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T06:38:09.6399462Z\",\r\n \"endTime\": \"2021-04-18T06:38:09.8649517Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T06:38:09.8649517Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e37c0061-967b-4523-991f-3ce91833826b-2020-05-02 05:06:30Z-Ps" + "3a340184-6643-46c6-bfe9-b6839f1e3511" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392390217)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997190217)\\/\",\"ClientRequestId\":\"e37c0061-967b-4523-991f-3ce91833826b-2020-05-02 05:06:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Vz+ucWeF32M4DXlw/m19jIgTK9HeApJHMd/FRn2fp38=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724345596)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329145596)\\/\",\"ClientRequestId\":\"e0419dde-e2b1-403d-a2ec-a98508074f8d-2021-04-18 06:39:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oMc4g/lqJlG9B5IP1Dnyev7WrKVO0y/gap38jK4v/Dg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7582,39 +7387,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e37c0061-967b-4523-991f-3ce91833826b-2020-05-02 05:06:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" + "3a340184-6643-46c6-bfe9-b6839f1e3511" ], "x-ms-correlation-request-id": [ - "87c83971-5d34-4dc6-8dfe-994c2a3d93d4" + "2ee25ad2-e420-475b-bf46-4f971733f13e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050630Z:87c83971-5d34-4dc6-8dfe-994c2a3d93d4" + "CENTRALUSEUAP:20210418T063905Z:2ee25ad2-e420-475b-bf46-4f971733f13e" ], "Date": [ - "Sat, 02 May 2020 05:06:29 GMT" + "Sun, 18 Apr 2021 06:39:04 GMT" ], "Content-Length": [ - "3441" + "3403" ], "Content-Type": [ "application/json" @@ -7623,29 +7425,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"2021-04-18T06:38:09.6399462Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T06:38:09.6399462Z\",\r\n \"endTime\": \"2021-04-18T06:38:09.8649517Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T06:38:09.8649517Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16f5ac6d-33b0-4745-81c4-d85e14d7e70a-2020-05-02 05:06:50Z-Ps" + "8e450d01-909e-408a-b988-27f1cec2112d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392410678)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997210678)\\/\",\"ClientRequestId\":\"16f5ac6d-33b0-4745-81c4-d85e14d7e70a-2020-05-02 05:06:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tSlMBBovfFV6u/8N6LZY7YTlPeStP7C5WP+/LCBm6LU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724365979)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329165979)\\/\",\"ClientRequestId\":\"50d61d0a-9ccd-420b-bf58-4d20ad75246d-2021-04-18 06:39:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OMx7LIIiESWWsSa/75JR7TWkVbcIO4mwqq91VhHUQVs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7656,38 +7458,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" + "11981" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "16f5ac6d-33b0-4745-81c4-d85e14d7e70a-2020-05-02 05:06:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8e450d01-909e-408a-b988-27f1cec2112d" ], "x-ms-correlation-request-id": [ - "fc96a03f-6e92-4c0d-abde-1a14f312eff3" + "6b20f5a4-88f0-4a7c-8b51-a120a0f882c4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050651Z:fc96a03f-6e92-4c0d-abde-1a14f312eff3" + "CENTRALUSEUAP:20210418T063926Z:6b20f5a4-88f0-4a7c-8b51-a120a0f882c4" ], "Date": [ - "Sat, 02 May 2020 05:06:50 GMT" + "Sun, 18 Apr 2021 06:39:25 GMT" ], "Content-Length": [ - "3441" + "3403" ], "Content-Type": [ "application/json" @@ -7696,29 +7495,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"2021-04-18T06:38:09.6399462Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T06:38:09.6399462Z\",\r\n \"endTime\": \"2021-04-18T06:38:09.8649517Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T06:38:09.8649517Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9646369-d821-491d-95f9-91d21d4dcea8-2020-05-02 05:07:11Z-Ps" + "798421b1-0db5-46aa-b789-4125165192e2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392431355)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997231355)\\/\",\"ClientRequestId\":\"f9646369-d821-491d-95f9-91d21d4dcea8-2020-05-02 05:07:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DrJWkclBnWi2JWjfDyNfJS9xX2I9prIvArvguIFKSDU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724386434)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329186434)\\/\",\"ClientRequestId\":\"16829f59-7a4b-4fa7-b4a2-9afb214f0ef3-2021-04-18 06:39:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OjLsOmdZqSXHeS4Tac0iDvzVmzgzw69itgx44x9oLUA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7729,38 +7528,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" + "11979" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f9646369-d821-491d-95f9-91d21d4dcea8-2020-05-02 05:07:11Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "798421b1-0db5-46aa-b789-4125165192e2" ], "x-ms-correlation-request-id": [ - "d96968c5-d111-482a-9900-e8af0950221c" + "033608b7-dcec-4292-a5a6-c1c48ca13ae4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050711Z:d96968c5-d111-482a-9900-e8af0950221c" + "CENTRALUSEUAP:20210418T063946Z:033608b7-dcec-4292-a5a6-c1c48ca13ae4" ], "Date": [ - "Sat, 02 May 2020 05:07:10 GMT" + "Sun, 18 Apr 2021 06:39:46 GMT" ], "Content-Length": [ - "3441" + "3403" ], "Content-Type": [ "application/json" @@ -7769,29 +7565,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"2021-04-18T06:38:09.6399462Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T06:38:09.6399462Z\",\r\n \"endTime\": \"2021-04-18T06:38:09.8649517Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T06:38:09.8649517Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d78972c-4783-4f30-8ebf-42d41de05d29-2020-05-02 05:07:31Z-Ps" + "7afc3b11-8564-4fb6-a533-689c1090714a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392451710)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997251710)\\/\",\"ClientRequestId\":\"9d78972c-4783-4f30-8ebf-42d41de05d29-2020-05-02 05:07:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"n8DM/FJJQSovwOe+qeXKSB61L8CZnoc4shqNREB3AAw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724406800)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329206800)\\/\",\"ClientRequestId\":\"090112c4-0f90-4237-a5ba-d97fd9288c44-2021-04-18 06:40:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3kdTbkEonnkNJpdtS7al55ZxYx2quBLn8XXJS9yP+co=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7802,38 +7598,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11977" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9d78972c-4783-4f30-8ebf-42d41de05d29-2020-05-02 05:07:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7afc3b11-8564-4fb6-a533-689c1090714a" ], "x-ms-correlation-request-id": [ - "c758bd22-3358-499f-a73b-b82ab0947b32" + "a5ec545f-8d73-42b7-bc35-b9490d4cce83" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050731Z:c758bd22-3358-499f-a73b-b82ab0947b32" + "CENTRALUSEUAP:20210418T064006Z:a5ec545f-8d73-42b7-bc35-b9490d4cce83" ], "Date": [ - "Sat, 02 May 2020 05:07:31 GMT" + "Sun, 18 Apr 2021 06:40:06 GMT" ], "Content-Length": [ - "3441" + "3403" ], "Content-Type": [ "application/json" @@ -7842,29 +7635,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"2021-04-18T06:38:09.6399462Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T06:38:09.6399462Z\",\r\n \"endTime\": \"2021-04-18T06:38:09.8649517Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T06:38:09.8649517Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTllZWZmMDAtMDc5YS00YzEyLWEzMTYtZTBiOGUxOGY0OTBmP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ace471d-5d13-447d-b5b5-b5f0f365473c-2020-05-02 05:07:52Z-Ps" + "7acdee82-d88b-492a-9758-08c1a0c8098a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392472099)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997272099)\\/\",\"ClientRequestId\":\"5ace471d-5d13-447d-b5b5-b5f0f365473c-2020-05-02 05:07:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sr5FavDzGur7wUIGe9wZxfUlnJECk8YIjHCb4H6ooKg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724427172)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329227172)\\/\",\"ClientRequestId\":\"4f0c5807-7094-4210-bbb2-f740518c740e-2021-04-18 06:40:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hZ6+SgkID/lIUknLsaNkqs1eZar79S1qcRMzXk+h8mQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7874,39 +7667,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "5ace471d-5d13-447d-b5b5-b5f0f365473c-2020-05-02 05:07:52Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" + "7acdee82-d88b-492a-9758-08c1a0c8098a" ], "x-ms-correlation-request-id": [ - "4b41ed6c-1748-41bb-80fb-b2011ee26eeb" + "2e4bc572-de7a-47d7-83f9-a8ad70946054" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050752Z:4b41ed6c-1748-41bb-80fb-b2011ee26eeb" + "CENTRALUSEUAP:20210418T064027Z:2e4bc572-de7a-47d7-83f9-a8ad70946054" ], "Date": [ - "Sat, 02 May 2020 05:07:52 GMT" + "Sun, 18 Apr 2021 06:40:27 GMT" ], "Content-Length": [ - "3441" + "3449" ], "Content-Type": [ "application/json" @@ -7915,29 +7705,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T06:29:30.4488467Z\",\r\n \"endTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2021-04-18T06:29:48.2190049Z\",\r\n \"endTime\": \"2021-04-18T06:38:09.6399462Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2021-04-18T06:38:09.6399462Z\",\r\n \"endTime\": \"2021-04-18T06:38:09.8649517Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2021-04-18T06:38:09.8649517Z\",\r\n \"endTime\": \"2021-04-18T06:40:13.0157358Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2021-04-18T06:40:13.0157358Z\",\r\n \"endTime\": \"2021-04-18T06:40:13.1057361Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d98c8e19-6cb3-496e-81d1-676695812609-2020-05-02 05:08:12Z-Ps" + "526a8d34-402b-4bfc-91f8-e3a8c2867db1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392492808)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997292808)\\/\",\"ClientRequestId\":\"d98c8e19-6cb3-496e-81d1-676695812609-2020-05-02 05:08:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YfAsGxfqbfEfKDdgnXx+l5ZO7pmitF1mUffnONwKMBM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724427605)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329227605)\\/\",\"ClientRequestId\":\"91afcf28-e3c5-464e-9862-13a5f915f4e8-2021-04-18 06:40:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GChVJAOhWVWM7pevWh7pXj6iZd9BWT/W56XYs+pUSGg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -7948,38 +7738,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" + "11974" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "d98c8e19-6cb3-496e-81d1-676695812609-2020-05-02 05:08:12Z-Ps" + "x-ms-request-id": [ + "fa65c1c7-6271-4761-8ada-9531377492c3" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "526a8d34-402b-4bfc-91f8-e3a8c2867db1" ], "x-ms-correlation-request-id": [ - "383a8f58-d7aa-4158-b36c-cc628a0b4fd7" + "fa65c1c7-6271-4761-8ada-9531377492c3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050813Z:383a8f58-d7aa-4158-b36c-cc628a0b4fd7" + "CENTRALUSEUAP:20210418T064027Z:fa65c1c7-6271-4761-8ada-9531377492c3" ], "Date": [ - "Sat, 02 May 2020 05:08:13 GMT" + "Sun, 18 Apr 2021 06:40:27 GMT" ], "Content-Length": [ - "3441" + "4554" ], "Content-Type": [ "application/json" @@ -7988,29 +7775,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73f029d9-e36d-41fb-8980-f64da4e433c7-2020-05-02 05:08:33Z-Ps" + "58bd4373-cca9-4094-8eb9-cc1adf42391a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392513331)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997313331)\\/\",\"ClientRequestId\":\"73f029d9-e36d-41fb-8980-f64da4e433c7-2020-05-02 05:08:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9Hi/TaMZRUn3EeAD/fSO/5DJKkfw79oWaUGwA9V+MQ4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724438064)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329238064)\\/\",\"ClientRequestId\":\"ff7ae703-b71d-42dd-8cd6-b794b3a4500d-2021-04-18 06:40:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CggaRp/E/CEJHRt9xmr6NhtwnPP6F24BqKkWJky0yJc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8021,38 +7808,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" + "11972" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "73f029d9-e36d-41fb-8980-f64da4e433c7-2020-05-02 05:08:33Z-Ps" + "x-ms-request-id": [ + "6827b5b3-4854-40c1-a837-5f92c84b8172" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "58bd4373-cca9-4094-8eb9-cc1adf42391a" ], "x-ms-correlation-request-id": [ - "380735e5-fe6e-4fff-9178-7156d692b82d" + "6827b5b3-4854-40c1-a837-5f92c84b8172" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050833Z:380735e5-fe6e-4fff-9178-7156d692b82d" + "CENTRALUSEUAP:20210418T064038Z:6827b5b3-4854-40c1-a837-5f92c84b8172" ], "Date": [ - "Sat, 02 May 2020 05:08:32 GMT" + "Sun, 18 Apr 2021 06:40:37 GMT" ], "Content-Length": [ - "3441" + "4554" ], "Content-Type": [ "application/json" @@ -8061,29 +7845,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7636090-b9cc-443b-b13f-e95c577ae940-2020-05-02 05:08:53Z-Ps" + "c3ea1bad-e3b9-4311-a280-ad7148197df0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392533747)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997333747)\\/\",\"ClientRequestId\":\"c7636090-b9cc-443b-b13f-e95c577ae940-2020-05-02 05:08:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UNMLURAdiR9GEAta7P+CFj8zG18jFL6yOSxGRFGMUFg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724448436)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329248436)\\/\",\"ClientRequestId\":\"b41955dc-d410-4b29-ad74-2ee7208eebe3-2021-04-18 06:40:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tHklEqHzevsT4MIXPJBMI7jWKMjqXK4/0VAmJp03zfY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8094,38 +7878,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" + "11971" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "c7636090-b9cc-443b-b13f-e95c577ae940-2020-05-02 05:08:53Z-Ps" + "x-ms-request-id": [ + "499b38cb-5c2f-4c3a-9bd3-3a753a712a35" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "c3ea1bad-e3b9-4311-a280-ad7148197df0" ], "x-ms-correlation-request-id": [ - "7d12906c-6d5e-41c9-bdb9-49e678f78499" + "499b38cb-5c2f-4c3a-9bd3-3a753a712a35" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050853Z:7d12906c-6d5e-41c9-bdb9-49e678f78499" + "CENTRALUSEUAP:20210418T064048Z:499b38cb-5c2f-4c3a-9bd3-3a753a712a35" ], "Date": [ - "Sat, 02 May 2020 05:08:53 GMT" + "Sun, 18 Apr 2021 06:40:48 GMT" ], "Content-Length": [ - "3441" + "4554" ], "Content-Type": [ "application/json" @@ -8134,29 +7915,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "241f046b-48ea-4a65-84e6-14b83848fdbf-2020-05-02 05:09:14Z-Ps" + "4aa7702a-0bf4-4a8d-a989-6fa07e00dcf0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392554198)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997354198)\\/\",\"ClientRequestId\":\"241f046b-48ea-4a65-84e6-14b83848fdbf-2020-05-02 05:09:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TD/zLWRoT0kWDPAxS1yEPTsp8NZy0G0nm9vFUzQBLI0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724458793)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329258793)\\/\",\"ClientRequestId\":\"38544b94-3a14-49fb-8076-ee596c0b3de0-2021-04-18 06:40:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"L2Tcn3ZJHFdb53FhyTM6X1zqj6zomWgGBc3Ryf6hrE0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8166,39 +7947,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "241f046b-48ea-4a65-84e6-14b83848fdbf-2020-05-02 05:09:14Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-request-id": [ + "7847c457-cf7d-470f-9e08-6dcbd3905cab" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" + "x-ms-client-request-id": [ + "4aa7702a-0bf4-4a8d-a989-6fa07e00dcf0" ], "x-ms-correlation-request-id": [ - "13f7cc2c-a641-4433-a3c2-e944f5aad655" + "7847c457-cf7d-470f-9e08-6dcbd3905cab" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050914Z:13f7cc2c-a641-4433-a3c2-e944f5aad655" + "CENTRALUSEUAP:20210418T064058Z:7847c457-cf7d-470f-9e08-6dcbd3905cab" ], "Date": [ - "Sat, 02 May 2020 05:09:14 GMT" + "Sun, 18 Apr 2021 06:40:58 GMT" ], "Content-Length": [ - "3441" + "4554" ], "Content-Type": [ "application/json" @@ -8207,29 +7985,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "356a543b-4ca9-45ad-8e50-fcd12ccd0638-2020-05-02 05:09:34Z-Ps" + "a05cd17c-31de-4d6d-b245-599dfe2ee805" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392574639)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997374639)\\/\",\"ClientRequestId\":\"356a543b-4ca9-45ad-8e50-fcd12ccd0638-2020-05-02 05:09:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KU72Uviy4aeYSyWYJddlToDjgi1GF6dicqdIOqpnkDs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724469172)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329269172)\\/\",\"ClientRequestId\":\"99792724-2711-45fb-b741-6396da02b50f-2021-04-18 06:41:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1Uqkdawl6+Agjp7oOsDA3dKnuj2LvQij2fTREE10shQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8239,39 +8017,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "x-ms-request-id": [ + "368dac85-d927-4ce1-8a83-0a78019ab441" + ], "x-ms-client-request-id": [ - "356a543b-4ca9-45ad-8e50-fcd12ccd0638-2020-05-02 05:09:34Z-Ps" + "a05cd17c-31de-4d6d-b245-599dfe2ee805" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" ], "x-ms-correlation-request-id": [ - "eaa1dbab-e7f7-4cd8-b2e7-8650a9342cb2" + "368dac85-d927-4ce1-8a83-0a78019ab441" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050935Z:eaa1dbab-e7f7-4cd8-b2e7-8650a9342cb2" + "CENTRALUSEUAP:20210418T064109Z:368dac85-d927-4ce1-8a83-0a78019ab441" ], "Date": [ - "Sat, 02 May 2020 05:09:34 GMT" + "Sun, 18 Apr 2021 06:41:09 GMT" ], "Content-Length": [ - "3441" + "4554" ], "Content-Type": [ "application/json" @@ -8280,29 +8055,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvOTMxNDI1ODEtMjhmNy00OWVkLWFjYzQtYmM3MWQ1ODJkMWZmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "639113af-a41b-4181-833e-53b99ab7074d-2020-05-02 05:09:55Z-Ps" + "a6f7eecc-0e9a-49ce-946a-df8d40dabb4b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392595309)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997395309)\\/\",\"ClientRequestId\":\"639113af-a41b-4181-833e-53b99ab7074d-2020-05-02 05:09:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"o0x/a5tuhdiwee9Pa0Bxlpm2hZ+JeOHMdJtuyoy3B5U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724479544)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329279544)\\/\",\"ClientRequestId\":\"992c7ab4-33ba-44ab-97da-c5e1b3676869-2021-04-18 06:41:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qaDtZ+fumzoywf6MJ/RqC7YDByE5OS2UDdxRhbcVCZo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8313,35 +8088,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" + "11966" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "639113af-a41b-4181-833e-53b99ab7074d-2020-05-02 05:09:55Z-Ps" + "x-ms-request-id": [ + "07c505bd-4f12-49c9-8309-a3b8204254a8" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "a6f7eecc-0e9a-49ce-946a-df8d40dabb4b" ], "x-ms-correlation-request-id": [ - "4d736ddd-d263-484b-b606-97c1b114f38a" + "07c505bd-4f12-49c9-8309-a3b8204254a8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050955Z:4d736ddd-d263-484b-b606-97c1b114f38a" + "CENTRALUSEUAP:20210418T064119Z:07c505bd-4f12-49c9-8309-a3b8204254a8" ], "Date": [ - "Sat, 02 May 2020 05:09:55 GMT" + "Sun, 18 Apr 2021 06:41:18 GMT" ], "Content-Length": [ - "3485" + "4554" ], "Content-Type": [ "application/json" @@ -8350,29 +8125,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-02T04:56:57.3500139Z\",\r\n \"endTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"2020-05-02T04:57:09.5889149Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"2020-05-02T05:05:26.5340696Z\",\r\n \"endTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"2020-05-02T05:05:26.6746906Z\",\r\n \"endTime\": \"2020-05-02T05:09:48.585521Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2020-05-02T05:09:48.585521Z\",\r\n \"endTime\": \"2020-05-02T05:09:48.6949287Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf63b579-65ff-4aee-9c6f-c02e08b9f4a7-2020-05-02 05:09:55Z-Ps" + "c023205c-7dc4-425b-86cb-15df028a9d79" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392595713)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997395713)\\/\",\"ClientRequestId\":\"cf63b579-65ff-4aee-9c6f-c02e08b9f4a7-2020-05-02 05:09:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eXZUjnGZzjorz/EtEvjpICgZ++uUF0j6rwalFnxqv4M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724489886)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329289886)\\/\",\"ClientRequestId\":\"37b73c02-bdff-41ef-b4a1-2a20fb25e2f9-2021-04-18 06:41:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"s+Wj0AK9M2nCbt1j9Wtv6pCC8ID2uR7No83r9nQf3UQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8383,32 +8158,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" + "11965" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0ab9713f-66ea-4ceb-84db-f53640044140" + "73bbfebd-91bf-413f-9ff5-7364fb9c2203" ], "x-ms-client-request-id": [ - "cf63b579-65ff-4aee-9c6f-c02e08b9f4a7-2020-05-02 05:09:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c023205c-7dc4-425b-86cb-15df028a9d79" ], "x-ms-correlation-request-id": [ - "0ab9713f-66ea-4ceb-84db-f53640044140" + "73bbfebd-91bf-413f-9ff5-7364fb9c2203" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T050955Z:0ab9713f-66ea-4ceb-84db-f53640044140" + "CENTRALUSEUAP:20210418T064130Z:73bbfebd-91bf-413f-9ff5-7364fb9c2203" ], "Date": [ - "Sat, 02 May 2020 05:09:55 GMT" + "Sun, 18 Apr 2021 06:41:29 GMT" ], "Content-Length": [ "4554" @@ -8420,29 +8195,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c585adf-8d5c-405d-97a1-ad0031e5cfdf-2020-05-02 05:10:06Z-Ps" + "30ad070a-c46e-4b4d-aebc-1b92239697ec" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392606046)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997406046)\\/\",\"ClientRequestId\":\"5c585adf-8d5c-405d-97a1-ad0031e5cfdf-2020-05-02 05:10:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MZqnReTyFMvUDAzjmrO9CoXyr00a1/zDvgn+kmHDBMY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724500214)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329300214)\\/\",\"ClientRequestId\":\"07fc8a62-9109-444f-8a1a-1eefa0d92383-2021-04-18 06:41:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lduLfIDet+3+FnHrR+YH8QBNwimuc1N4JSUFzfjDcno=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8453,32 +8228,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" + "11963" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "eebb18d8-0560-4ab1-a0d0-235fe0e3c973" + "d2ccfd7c-a859-499d-a3f1-6a92517d17ab" ], "x-ms-client-request-id": [ - "5c585adf-8d5c-405d-97a1-ad0031e5cfdf-2020-05-02 05:10:06Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "30ad070a-c46e-4b4d-aebc-1b92239697ec" ], "x-ms-correlation-request-id": [ - "eebb18d8-0560-4ab1-a0d0-235fe0e3c973" + "d2ccfd7c-a859-499d-a3f1-6a92517d17ab" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051006Z:eebb18d8-0560-4ab1-a0d0-235fe0e3c973" + "CENTRALUSEUAP:20210418T064140Z:d2ccfd7c-a859-499d-a3f1-6a92517d17ab" ], "Date": [ - "Sat, 02 May 2020 05:10:05 GMT" + "Sun, 18 Apr 2021 06:41:40 GMT" ], "Content-Length": [ "4554" @@ -8490,29 +8265,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9dd5a1c-8c3c-41b7-ac24-29df45024c61-2020-05-02 05:10:16Z-Ps" + "a4471811-0f7e-4d88-a850-40f8b5ecb2d6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392616358)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997416358)\\/\",\"ClientRequestId\":\"d9dd5a1c-8c3c-41b7-ac24-29df45024c61-2020-05-02 05:10:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5eGorPZ1joY3VijcOedDHa5ln5F/a5VnkcBNdjD1MhE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724510623)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329310623)\\/\",\"ClientRequestId\":\"5adc0e7a-78ee-4e81-9ed2-1aec5eb9ec1c-2021-04-18 06:41:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bgvjSBGsIJzgUyYhkeXIe1xslQ8SlGGVscbRXhXSg5A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8523,32 +8298,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" + "11962" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "dac1a31e-96c4-4722-9eb3-5009a8e934b5" + "c2b0071a-374e-44d4-ba9d-9235d78dc1da" ], "x-ms-client-request-id": [ - "d9dd5a1c-8c3c-41b7-ac24-29df45024c61-2020-05-02 05:10:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a4471811-0f7e-4d88-a850-40f8b5ecb2d6" ], "x-ms-correlation-request-id": [ - "dac1a31e-96c4-4722-9eb3-5009a8e934b5" + "c2b0071a-374e-44d4-ba9d-9235d78dc1da" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051016Z:dac1a31e-96c4-4722-9eb3-5009a8e934b5" + "CENTRALUSEUAP:20210418T064150Z:c2b0071a-374e-44d4-ba9d-9235d78dc1da" ], "Date": [ - "Sat, 02 May 2020 05:10:15 GMT" + "Sun, 18 Apr 2021 06:41:50 GMT" ], "Content-Length": [ "4554" @@ -8560,29 +8335,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7773133f-2e68-4fa9-9b01-ef1990ad8be6-2020-05-02 05:10:26Z-Ps" + "ec0da214-9f1a-4b21-9433-e637de199f94" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392626663)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997426663)\\/\",\"ClientRequestId\":\"7773133f-2e68-4fa9-9b01-ef1990ad8be6-2020-05-02 05:10:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Hp/22PAVEF+G9pmhrtRptfe9NEkYlJaOUqm6aow/9gQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724520951)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329320951)\\/\",\"ClientRequestId\":\"1efee46d-4a2e-4144-8b19-65a2c06e6f62-2021-04-18 06:42:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TA1u9dbwP/hkyzQhX+xA2swhGUiGKDT3i9+e4JFf5DE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8593,32 +8368,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" + "11960" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c6966328-21ff-456f-8b65-9897106d5ab7" + "21bb9b85-e7b0-4ffc-9491-61fac03086f5" ], "x-ms-client-request-id": [ - "7773133f-2e68-4fa9-9b01-ef1990ad8be6-2020-05-02 05:10:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ec0da214-9f1a-4b21-9433-e637de199f94" ], "x-ms-correlation-request-id": [ - "c6966328-21ff-456f-8b65-9897106d5ab7" + "21bb9b85-e7b0-4ffc-9491-61fac03086f5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051026Z:c6966328-21ff-456f-8b65-9897106d5ab7" + "CENTRALUSEUAP:20210418T064201Z:21bb9b85-e7b0-4ffc-9491-61fac03086f5" ], "Date": [ - "Sat, 02 May 2020 05:10:25 GMT" + "Sun, 18 Apr 2021 06:42:01 GMT" ], "Content-Length": [ "4554" @@ -8630,29 +8405,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a2fc91c-21f0-46d0-b7bd-57a8cca31017-2020-05-02 05:10:37Z-Ps" + "893b87bc-44b6-468c-984a-58993b87f560" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392637067)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997437067)\\/\",\"ClientRequestId\":\"8a2fc91c-21f0-46d0-b7bd-57a8cca31017-2020-05-02 05:10:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4jnrBR4+GvnC1quqpxMHVBJ8/NrldRuepiT0POM5fOk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724531309)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329331309)\\/\",\"ClientRequestId\":\"9fc98ba9-0ec2-481c-a336-42da14bd3ef5-2021-04-18 06:42:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oi6jX4eYst7oNjanYGtw/gJ9r7CxHmcmJ2LAOJxcRWQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8662,33 +8437,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "fe79d35a-7108-4988-a727-c6726cbb3896" + "405f60be-17e8-4e32-a1d0-808e692512c6" ], "x-ms-client-request-id": [ - "8a2fc91c-21f0-46d0-b7bd-57a8cca31017-2020-05-02 05:10:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" + "893b87bc-44b6-468c-984a-58993b87f560" ], "x-ms-correlation-request-id": [ - "fe79d35a-7108-4988-a727-c6726cbb3896" + "405f60be-17e8-4e32-a1d0-808e692512c6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051037Z:fe79d35a-7108-4988-a727-c6726cbb3896" + "CENTRALUSEUAP:20210418T064211Z:405f60be-17e8-4e32-a1d0-808e692512c6" ], "Date": [ - "Sat, 02 May 2020 05:10:37 GMT" + "Sun, 18 Apr 2021 06:42:11 GMT" ], "Content-Length": [ "4554" @@ -8700,29 +8475,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c60c792a-3ad7-4535-b081-4759f55aabdf-2020-05-02 05:10:47Z-Ps" + "b3b35658-d0da-4d5e-94a4-93cc68dd66d0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392647435)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997447435)\\/\",\"ClientRequestId\":\"c60c792a-3ad7-4535-b081-4759f55aabdf-2020-05-02 05:10:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XxrnrIm2iARMpoVOCiccm49svwO8x6535kMqjz5dNR0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724541642)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329341642)\\/\",\"ClientRequestId\":\"d4d83377-9d81-4918-9750-fc0c9e63415a-2021-04-18 06:42:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"d4XS2hRGurhGp85qXgQG3o+fqcM1sy5z1RfmCUJa4os=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8733,32 +8508,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" + "11957" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "981fa821-4855-4595-b238-b472dacbe0f5" + "1aa737d5-1542-4627-ad38-85b8e708c78b" ], "x-ms-client-request-id": [ - "c60c792a-3ad7-4535-b081-4759f55aabdf-2020-05-02 05:10:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b3b35658-d0da-4d5e-94a4-93cc68dd66d0" ], "x-ms-correlation-request-id": [ - "981fa821-4855-4595-b238-b472dacbe0f5" + "1aa737d5-1542-4627-ad38-85b8e708c78b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051047Z:981fa821-4855-4595-b238-b472dacbe0f5" + "CENTRALUSEUAP:20210418T064221Z:1aa737d5-1542-4627-ad38-85b8e708c78b" ], "Date": [ - "Sat, 02 May 2020 05:10:47 GMT" + "Sun, 18 Apr 2021 06:42:21 GMT" ], "Content-Length": [ "4554" @@ -8770,29 +8545,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce6c7689-f31e-41bc-8e41-b610d857309d-2020-05-02 05:10:57Z-Ps" + "15c6cc54-c756-4c99-ad70-afbbd4ad4670" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392657936)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997457936)\\/\",\"ClientRequestId\":\"ce6c7689-f31e-41bc-8e41-b610d857309d-2020-05-02 05:10:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"49lnA6A65zsvxDc0sFyD8BZ6jJkdpuQbCsVAxbWqv20=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724551969)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329351969)\\/\",\"ClientRequestId\":\"3f765f83-4606-4a34-b945-c06f003b5515-2021-04-18 06:42:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dwitaQlxw+EyrvNtf6BSNlLVj0AzIOjjRMWLRT5mvXA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8803,32 +8578,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" + "11956" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b7006918-8af0-4334-94e5-74e89e673b75" + "0dcf8e2a-b128-4350-a89c-bf1ad041921d" ], "x-ms-client-request-id": [ - "ce6c7689-f31e-41bc-8e41-b610d857309d-2020-05-02 05:10:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "15c6cc54-c756-4c99-ad70-afbbd4ad4670" ], "x-ms-correlation-request-id": [ - "b7006918-8af0-4334-94e5-74e89e673b75" + "0dcf8e2a-b128-4350-a89c-bf1ad041921d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051058Z:b7006918-8af0-4334-94e5-74e89e673b75" + "CENTRALUSEUAP:20210418T064232Z:0dcf8e2a-b128-4350-a89c-bf1ad041921d" ], "Date": [ - "Sat, 02 May 2020 05:10:57 GMT" + "Sun, 18 Apr 2021 06:42:31 GMT" ], "Content-Length": [ "4554" @@ -8840,29 +8615,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f046275a-3e60-4aa7-89af-cb4b5fd36607-2020-05-02 05:11:08Z-Ps" + "04de62e9-c9e8-485b-b83a-63bb99312b7d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392668265)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997468265)\\/\",\"ClientRequestId\":\"f046275a-3e60-4aa7-89af-cb4b5fd36607-2020-05-02 05:11:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6NGj/USxa6W6oqXd2rDnf7fTAMtrcuho85PmUqppLDs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724562294)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329362294)\\/\",\"ClientRequestId\":\"099917e4-21af-4fb8-8af5-5f43228d0b40-2021-04-18 06:42:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"emwrk2ZlybYVogA1GnELAgBCN1C98X4egrM8tN7kpXU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8873,32 +8648,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" + "11954" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c6f7750d-7f07-461c-afd5-b0e9c62a67bd" + "67732728-6df3-486a-bf92-5ce2fdb7b6da" ], "x-ms-client-request-id": [ - "f046275a-3e60-4aa7-89af-cb4b5fd36607-2020-05-02 05:11:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "04de62e9-c9e8-485b-b83a-63bb99312b7d" ], "x-ms-correlation-request-id": [ - "c6f7750d-7f07-461c-afd5-b0e9c62a67bd" + "67732728-6df3-486a-bf92-5ce2fdb7b6da" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051108Z:c6f7750d-7f07-461c-afd5-b0e9c62a67bd" + "CENTRALUSEUAP:20210418T064242Z:67732728-6df3-486a-bf92-5ce2fdb7b6da" ], "Date": [ - "Sat, 02 May 2020 05:11:07 GMT" + "Sun, 18 Apr 2021 06:42:42 GMT" ], "Content-Length": [ "4554" @@ -8910,29 +8685,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fb28e87-97bd-439c-875b-3b0b9503e638-2020-05-02 05:11:18Z-Ps" + "074b9fcb-acc9-49cd-a909-a0db6c8d6137" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392678575)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997478575)\\/\",\"ClientRequestId\":\"5fb28e87-97bd-439c-875b-3b0b9503e638-2020-05-02 05:11:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WJsokCL257CJnQiRl6cdqFgY9HAEzQXCwGOTf4ZT45U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724572644)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329372644)\\/\",\"ClientRequestId\":\"93795e1f-3ae8-46db-9efa-b96d85d8be20-2021-04-18 06:42:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/Y8taILHIAE27OwAmYrfKL8etJeys1xkFUJ421gX2zQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -8943,32 +8718,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" + "11952" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f95bf116-981e-4929-895d-771083bdea4e" + "736578a1-e9ad-413f-8d94-4e41d901ae1d" ], "x-ms-client-request-id": [ - "5fb28e87-97bd-439c-875b-3b0b9503e638-2020-05-02 05:11:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "074b9fcb-acc9-49cd-a909-a0db6c8d6137" ], "x-ms-correlation-request-id": [ - "f95bf116-981e-4929-895d-771083bdea4e" + "736578a1-e9ad-413f-8d94-4e41d901ae1d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051118Z:f95bf116-981e-4929-895d-771083bdea4e" + "CENTRALUSEUAP:20210418T064252Z:736578a1-e9ad-413f-8d94-4e41d901ae1d" ], "Date": [ - "Sat, 02 May 2020 05:11:18 GMT" + "Sun, 18 Apr 2021 06:42:52 GMT" ], "Content-Length": [ "4554" @@ -8980,29 +8755,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "566f7b0b-63ff-4dc6-9014-9fb9ea45b81b-2020-05-02 05:11:28Z-Ps" + "75d0d1a7-eb0a-49b5-9153-5d06a8dacb07" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392688906)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997488906)\\/\",\"ClientRequestId\":\"566f7b0b-63ff-4dc6-9014-9fb9ea45b81b-2020-05-02 05:11:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wFQ+872oM0S3ACBbrfazwEtqMcOG51QcBu3qDf4oqIQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724582965)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329382965)\\/\",\"ClientRequestId\":\"f32d8cde-321a-4767-b9a8-6d1b5127271e-2021-04-18 06:43:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oT44E9oq28MyA8ge9LyY48o7Ru+Zyr6qLhQYk+EOROo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9013,32 +8788,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" + "11951" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d32f8f65-cde8-4607-9045-8a7f62c13c87" + "f9b38339-08e7-41df-bd3a-cd3939c59348" ], "x-ms-client-request-id": [ - "566f7b0b-63ff-4dc6-9014-9fb9ea45b81b-2020-05-02 05:11:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "75d0d1a7-eb0a-49b5-9153-5d06a8dacb07" ], "x-ms-correlation-request-id": [ - "d32f8f65-cde8-4607-9045-8a7f62c13c87" + "f9b38339-08e7-41df-bd3a-cd3939c59348" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051129Z:d32f8f65-cde8-4607-9045-8a7f62c13c87" + "CENTRALUSEUAP:20210418T064303Z:f9b38339-08e7-41df-bd3a-cd3939c59348" ], "Date": [ - "Sat, 02 May 2020 05:11:28 GMT" + "Sun, 18 Apr 2021 06:43:02 GMT" ], "Content-Length": [ "4554" @@ -9050,29 +8825,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cd317f4a-e4d8-4e53-946c-e55c46e2b2a9-2020-05-02 05:11:39Z-Ps" + "044ee553-32a9-41f6-b9c3-7468d82f387b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392699315)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997499315)\\/\",\"ClientRequestId\":\"cd317f4a-e4d8-4e53-946c-e55c46e2b2a9-2020-05-02 05:11:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7jXo/QDYBFl2hmEWQRun1g5bQvTL6o+vHLpXQ+XyXJE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724593297)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329393297)\\/\",\"ClientRequestId\":\"5b93f5b2-e453-4e5c-95d3-e51cbcd3e57e-2021-04-18 06:43:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iuoJHu5tu1qI7t1fAlqMad9z1GuxvdrJXjjkiGn0DUc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9083,32 +8858,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" + "11949" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d71cdd41-b8ac-421a-9c2f-c6f02d9d8d57" + "590c1e98-ed9a-4a1d-9b12-d44dcf5f8dd0" ], "x-ms-client-request-id": [ - "cd317f4a-e4d8-4e53-946c-e55c46e2b2a9-2020-05-02 05:11:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "044ee553-32a9-41f6-b9c3-7468d82f387b" ], "x-ms-correlation-request-id": [ - "d71cdd41-b8ac-421a-9c2f-c6f02d9d8d57" + "590c1e98-ed9a-4a1d-9b12-d44dcf5f8dd0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051139Z:d71cdd41-b8ac-421a-9c2f-c6f02d9d8d57" + "CENTRALUSEUAP:20210418T064313Z:590c1e98-ed9a-4a1d-9b12-d44dcf5f8dd0" ], "Date": [ - "Sat, 02 May 2020 05:11:38 GMT" + "Sun, 18 Apr 2021 06:43:13 GMT" ], "Content-Length": [ "4554" @@ -9120,29 +8895,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b986048d-45ea-4e67-b27b-b25fc68a0301-2020-05-02 05:11:49Z-Ps" + "bf4af70e-71ff-451b-b9c4-f32eec1da1c7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392709610)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997509610)\\/\",\"ClientRequestId\":\"b986048d-45ea-4e67-b27b-b25fc68a0301-2020-05-02 05:11:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"b7VgRUIWzPFy4o8ER2qcDdLNRuJ9izGdZ8QnwUpZq80=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724603635)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329403635)\\/\",\"ClientRequestId\":\"946cd147-9446-42d6-9794-db290bf5a843-2021-04-18 06:43:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ROEc01KgvfkCd0WHTORtOi00DjwOspx+yBMyEH3ZJNo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9152,33 +8927,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e7d168d8-9831-48a0-9cd9-ea027d33b58a" + "1309bf6c-d6ed-4140-adff-23f159056c2f" ], "x-ms-client-request-id": [ - "b986048d-45ea-4e67-b27b-b25fc68a0301-2020-05-02 05:11:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" + "bf4af70e-71ff-451b-b9c4-f32eec1da1c7" ], "x-ms-correlation-request-id": [ - "e7d168d8-9831-48a0-9cd9-ea027d33b58a" + "1309bf6c-d6ed-4140-adff-23f159056c2f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051149Z:e7d168d8-9831-48a0-9cd9-ea027d33b58a" + "CENTRALUSEUAP:20210418T064323Z:1309bf6c-d6ed-4140-adff-23f159056c2f" ], "Date": [ - "Sat, 02 May 2020 05:11:49 GMT" + "Sun, 18 Apr 2021 06:43:22 GMT" ], "Content-Length": [ "4554" @@ -9190,29 +8965,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f9e00e5-4951-43ba-bf2a-2903db824da9-2020-05-02 05:11:59Z-Ps" + "517c8bee-a439-4df5-a5c0-fe9873809382" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392719908)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997519908)\\/\",\"ClientRequestId\":\"5f9e00e5-4951-43ba-bf2a-2903db824da9-2020-05-02 05:11:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"y08+k56Ydd5Ape/T84hJIu7Ftk2hBXEvwvQRILJkogI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724613966)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329413966)\\/\",\"ClientRequestId\":\"6961d414-8550-492b-8b24-7fd7b54b0679-2021-04-18 06:43:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iu4Rhlmorrwj0N65C5MO0lHNm8zB9EUtFR5P2weD1YU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9223,35 +8998,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" + "11946" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5d32633f-b167-4c2d-8c7d-f7992de07af5" + "4d56e497-c694-4498-a1f5-b3263300be10" ], "x-ms-client-request-id": [ - "5f9e00e5-4951-43ba-bf2a-2903db824da9-2020-05-02 05:11:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "517c8bee-a439-4df5-a5c0-fe9873809382" ], "x-ms-correlation-request-id": [ - "5d32633f-b167-4c2d-8c7d-f7992de07af5" + "4d56e497-c694-4498-a1f5-b3263300be10" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051200Z:5d32633f-b167-4c2d-8c7d-f7992de07af5" + "CENTRALUSEUAP:20210418T064334Z:4d56e497-c694-4498-a1f5-b3263300be10" ], "Date": [ - "Sat, 02 May 2020 05:11:59 GMT" + "Sun, 18 Apr 2021 06:43:33 GMT" ], "Content-Length": [ "4554" @@ -9263,29 +9035,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c39b2086-fe5f-4661-a4fa-6801506e192c-2020-05-02 05:12:10Z-Ps" + "587bd4cf-5fbe-41f9-a73b-8198dd67676c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392730505)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997530505)\\/\",\"ClientRequestId\":\"c39b2086-fe5f-4661-a4fa-6801506e192c-2020-05-02 05:12:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ku+3z5nWQ+O4+OXcUPtWoN/siQsclircguBvHFOoSBM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724624292)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329424292)\\/\",\"ClientRequestId\":\"19eda7b3-4c72-4ae2-9179-33e0e4164727-2021-04-18 06:43:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9vKRlpoMeO4FT0ayINhjsQ1M782lbS32pIlVZbDLWiY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9296,35 +9068,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" + "11945" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "021d446b-05f0-4aca-bed2-a95570fcc650" + "345f0c77-6874-4a63-a2d1-858ae9d0df29" ], "x-ms-client-request-id": [ - "c39b2086-fe5f-4661-a4fa-6801506e192c-2020-05-02 05:12:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "587bd4cf-5fbe-41f9-a73b-8198dd67676c" ], "x-ms-correlation-request-id": [ - "021d446b-05f0-4aca-bed2-a95570fcc650" + "345f0c77-6874-4a63-a2d1-858ae9d0df29" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051210Z:021d446b-05f0-4aca-bed2-a95570fcc650" + "CENTRALUSEUAP:20210418T064344Z:345f0c77-6874-4a63-a2d1-858ae9d0df29" ], "Date": [ - "Sat, 02 May 2020 05:12:09 GMT" + "Sun, 18 Apr 2021 06:43:44 GMT" ], "Content-Length": [ "4554" @@ -9336,29 +9105,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a75180eb-6ef4-4609-9825-1fce14acf7c6-2020-05-02 05:12:20Z-Ps" + "c209d4e9-e015-4834-a02f-9715aec10493" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392740834)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997540834)\\/\",\"ClientRequestId\":\"a75180eb-6ef4-4609-9825-1fce14acf7c6-2020-05-02 05:12:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LpwH5LXIQmupRp4skdJaLJgth5+UZiVt1ElNb3wWYSE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724634626)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329434626)\\/\",\"ClientRequestId\":\"e97e851b-6732-4534-b595-0bb5cf596b8a-2021-04-18 06:43:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FWnd79M2nWnVX0CbqMvtJDlMH7kN4dzvx3ALBmLi3XE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9369,35 +9138,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" + "11943" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ee33be50-3d35-4633-86b3-1bca4355e1d2" + "8ebc1ec0-9697-4b18-a2d8-03a196d8cfee" ], "x-ms-client-request-id": [ - "a75180eb-6ef4-4609-9825-1fce14acf7c6-2020-05-02 05:12:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c209d4e9-e015-4834-a02f-9715aec10493" ], "x-ms-correlation-request-id": [ - "ee33be50-3d35-4633-86b3-1bca4355e1d2" + "8ebc1ec0-9697-4b18-a2d8-03a196d8cfee" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051220Z:ee33be50-3d35-4633-86b3-1bca4355e1d2" + "CENTRALUSEUAP:20210418T064354Z:8ebc1ec0-9697-4b18-a2d8-03a196d8cfee" ], "Date": [ - "Sat, 02 May 2020 05:12:20 GMT" + "Sun, 18 Apr 2021 06:43:54 GMT" ], "Content-Length": [ "4554" @@ -9409,29 +9175,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e799a30-0791-496f-8d3e-a27a45534ba5-2020-05-02 05:12:31Z-Ps" + "2945db5a-c6ab-44c0-bee1-522b4592471f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392751158)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997551158)\\/\",\"ClientRequestId\":\"0e799a30-0791-496f-8d3e-a27a45534ba5-2020-05-02 05:12:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ng9a7upxMkT7VUcUYSnnz7eELCAR3NbV6BGxgR3vn+Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724644964)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329444964)\\/\",\"ClientRequestId\":\"d2d26b41-17ca-4533-9f85-a9dc7af4869e-2021-04-18 06:44:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MExOs41j1nKfDRgVVLPA7fr+T+rUBxCShxklnJr4YLk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9442,35 +9208,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" + "11942" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "02274d41-55c0-4742-a468-ff4fbc468fd4" + "684d8d6d-3658-44e3-91e7-df02d4ddab5b" ], "x-ms-client-request-id": [ - "0e799a30-0791-496f-8d3e-a27a45534ba5-2020-05-02 05:12:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2945db5a-c6ab-44c0-bee1-522b4592471f" ], "x-ms-correlation-request-id": [ - "02274d41-55c0-4742-a468-ff4fbc468fd4" + "684d8d6d-3658-44e3-91e7-df02d4ddab5b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051231Z:02274d41-55c0-4742-a468-ff4fbc468fd4" + "CENTRALUSEUAP:20210418T064405Z:684d8d6d-3658-44e3-91e7-df02d4ddab5b" ], "Date": [ - "Sat, 02 May 2020 05:12:30 GMT" + "Sun, 18 Apr 2021 06:44:04 GMT" ], "Content-Length": [ "4554" @@ -9482,29 +9245,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a950c63-ba63-40f4-9f9c-359fcb50515c-2020-05-02 05:12:41Z-Ps" + "c32455e4-04cb-4a03-b32d-8cae5bc94c9d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392761452)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997561452)\\/\",\"ClientRequestId\":\"7a950c63-ba63-40f4-9f9c-359fcb50515c-2020-05-02 05:12:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XPme+/r48iwImdLGeX4jGAC5sKmUS3xG0lJAGm58Xhc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724655289)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329455289)\\/\",\"ClientRequestId\":\"59aaaad8-a220-4c41-9ba8-9b782786d8f6-2021-04-18 06:44:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"w8WRA1TV8wTIyKjjijMxmSKYjlhHu+QSpqC64pNOh9g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9515,35 +9278,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" + "11940" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "fc713e11-3fec-461f-84ca-49c5c0e97cd5" + "07510f5c-4f80-489b-8615-1214a60caf44" ], "x-ms-client-request-id": [ - "7a950c63-ba63-40f4-9f9c-359fcb50515c-2020-05-02 05:12:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c32455e4-04cb-4a03-b32d-8cae5bc94c9d" ], "x-ms-correlation-request-id": [ - "fc713e11-3fec-461f-84ca-49c5c0e97cd5" + "07510f5c-4f80-489b-8615-1214a60caf44" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051241Z:fc713e11-3fec-461f-84ca-49c5c0e97cd5" + "CENTRALUSEUAP:20210418T064415Z:07510f5c-4f80-489b-8615-1214a60caf44" ], "Date": [ - "Sat, 02 May 2020 05:12:40 GMT" + "Sun, 18 Apr 2021 06:44:14 GMT" ], "Content-Length": [ "4554" @@ -9555,29 +9315,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c29da1e-5232-4d0d-99eb-3afe6b4db74e-2020-05-02 05:12:51Z-Ps" + "51a0c5da-9633-4932-9ca7-3059505b1a49" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392771757)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997571757)\\/\",\"ClientRequestId\":\"0c29da1e-5232-4d0d-99eb-3afe6b4db74e-2020-05-02 05:12:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9fS5g7ElcQIGVsRLzxSbeVuRBJytoOucNizGIeeH7fY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724665628)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329465628)\\/\",\"ClientRequestId\":\"32c6f9cf-e94b-485d-993c-a58523e3b1ef-2021-04-18 06:44:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nsqDWKORV+dG7CeQ5/wevvIRhA0JeaWRDg7ObJfU1zI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9588,35 +9348,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" + "11939" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e9d89409-4030-4093-92b8-9df22c36d45b" + "bdb34671-6224-4a93-9263-1c8d3527bf8c" ], "x-ms-client-request-id": [ - "0c29da1e-5232-4d0d-99eb-3afe6b4db74e-2020-05-02 05:12:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "51a0c5da-9633-4932-9ca7-3059505b1a49" ], "x-ms-correlation-request-id": [ - "e9d89409-4030-4093-92b8-9df22c36d45b" + "bdb34671-6224-4a93-9263-1c8d3527bf8c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051251Z:e9d89409-4030-4093-92b8-9df22c36d45b" + "CENTRALUSEUAP:20210418T064425Z:bdb34671-6224-4a93-9263-1c8d3527bf8c" ], "Date": [ - "Sat, 02 May 2020 05:12:51 GMT" + "Sun, 18 Apr 2021 06:44:25 GMT" ], "Content-Length": [ "4554" @@ -9628,29 +9385,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9870c4c-192f-40fe-8961-d226def185c3-2020-05-02 05:13:02Z-Ps" + "e5d76fc2-717c-4a79-b5a0-c6ee502a1016" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392782152)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997582152)\\/\",\"ClientRequestId\":\"a9870c4c-192f-40fe-8961-d226def185c3-2020-05-02 05:13:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pfPy+ZD0iLdEMWwudM6qn0Rm2MymeQg0eLLKxYkdRiQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724675955)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329475955)\\/\",\"ClientRequestId\":\"f8baebb5-8247-48fc-b350-d8ff9eb5dad3-2021-04-18 06:44:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/Qrf8H9Zuo7FYgI9RFOJ8oz84kEipepDgOLefUMMSOg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9660,36 +9417,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "68414e5b-8459-499b-905b-5d6fb1c8bbb3" + "21da09f6-27bb-4e4e-a480-a98aa4523ecd" ], "x-ms-client-request-id": [ - "a9870c4c-192f-40fe-8961-d226def185c3-2020-05-02 05:13:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" + "e5d76fc2-717c-4a79-b5a0-c6ee502a1016" ], "x-ms-correlation-request-id": [ - "68414e5b-8459-499b-905b-5d6fb1c8bbb3" + "21da09f6-27bb-4e4e-a480-a98aa4523ecd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051302Z:68414e5b-8459-499b-905b-5d6fb1c8bbb3" + "CENTRALUSEUAP:20210418T064436Z:21da09f6-27bb-4e4e-a480-a98aa4523ecd" ], "Date": [ - "Sat, 02 May 2020 05:13:02 GMT" + "Sun, 18 Apr 2021 06:44:36 GMT" ], "Content-Length": [ "4554" @@ -9701,29 +9455,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48e46d7a-5387-431a-ad59-965b87ddc8ec-2020-05-02 05:13:12Z-Ps" + "5c7d323b-19ef-4344-bab7-7700071ba8df" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392792532)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997592532)\\/\",\"ClientRequestId\":\"48e46d7a-5387-431a-ad59-965b87ddc8ec-2020-05-02 05:13:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IUCxm0wTPDvGOHA601MthL1bMNI1wSjHBPeP735E2Yg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724686330)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329486330)\\/\",\"ClientRequestId\":\"1ce30ef1-35c7-45db-a3ad-47ba8ff33bc1-2021-04-18 06:44:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uACH/3UC+QHVrR/Y1b+jYtpA3jzPCHM0pvtYTjnIScQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9734,35 +9488,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" + "11936" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3bc109ad-af80-47bc-8e32-caf3b5ac647f" + "62f40ad0-5afc-4eb3-9953-9905850f3489" ], "x-ms-client-request-id": [ - "48e46d7a-5387-431a-ad59-965b87ddc8ec-2020-05-02 05:13:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5c7d323b-19ef-4344-bab7-7700071ba8df" ], "x-ms-correlation-request-id": [ - "3bc109ad-af80-47bc-8e32-caf3b5ac647f" + "62f40ad0-5afc-4eb3-9953-9905850f3489" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051312Z:3bc109ad-af80-47bc-8e32-caf3b5ac647f" + "CENTRALUSEUAP:20210418T064446Z:62f40ad0-5afc-4eb3-9953-9905850f3489" ], "Date": [ - "Sat, 02 May 2020 05:13:12 GMT" + "Sun, 18 Apr 2021 06:44:46 GMT" ], "Content-Length": [ "4554" @@ -9774,29 +9525,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcd580ac-3aff-4a26-ad7e-847ee184c591-2020-05-02 05:13:23Z-Ps" + "2bcab687-5ab9-4a63-9a3c-c1282f6122bf" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392803002)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997603002)\\/\",\"ClientRequestId\":\"fcd580ac-3aff-4a26-ad7e-847ee184c591-2020-05-02 05:13:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FdjHMxPHUQfVJmkDCldjvZMMc62tAvWW4MEDAmK8dj0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724696676)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329496676)\\/\",\"ClientRequestId\":\"b6b948c7-2144-4a45-b727-ea6f980f926a-2021-04-18 06:44:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gBhVwgBOOMvZkxUq86FW21t6xNf/0muVxqdvRiD2v0E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9807,35 +9558,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" + "11934" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6f8ddb6c-8c02-4759-89f3-c23ca135ba86" + "d2dc5d7e-2676-42d4-835b-baf8415aea41" ], "x-ms-client-request-id": [ - "fcd580ac-3aff-4a26-ad7e-847ee184c591-2020-05-02 05:13:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2bcab687-5ab9-4a63-9a3c-c1282f6122bf" ], "x-ms-correlation-request-id": [ - "6f8ddb6c-8c02-4759-89f3-c23ca135ba86" + "d2dc5d7e-2676-42d4-835b-baf8415aea41" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051323Z:6f8ddb6c-8c02-4759-89f3-c23ca135ba86" + "CENTRALUSEUAP:20210418T064456Z:d2dc5d7e-2676-42d4-835b-baf8415aea41" ], "Date": [ - "Sat, 02 May 2020 05:13:22 GMT" + "Sun, 18 Apr 2021 06:44:56 GMT" ], "Content-Length": [ "4554" @@ -9847,29 +9595,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd378ee4-8287-432b-9a6b-ef85d65c0dd9-2020-05-02 05:13:33Z-Ps" + "e8d36957-8695-4753-b32b-07384def7d9e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392813318)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997613318)\\/\",\"ClientRequestId\":\"bd378ee4-8287-432b-9a6b-ef85d65c0dd9-2020-05-02 05:13:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cdfkAkjqGUwjOJOXs9NI9N8D6+Cfd7/jMVbam0J1pfU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724707011)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329507011)\\/\",\"ClientRequestId\":\"3602ebb0-aab8-476d-9e1d-9377098f9e5c-2021-04-18 06:45:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7ugCbjHzZ+bF/yC+Nss8wHU3tRoCDLx7W/GhXcHJT9o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9880,35 +9628,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" + "11933" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a298b5a3-53ca-4450-adea-25b77414205d" + "78419bdb-8a90-47cc-b560-8b391e9d87bc" ], "x-ms-client-request-id": [ - "bd378ee4-8287-432b-9a6b-ef85d65c0dd9-2020-05-02 05:13:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e8d36957-8695-4753-b32b-07384def7d9e" ], "x-ms-correlation-request-id": [ - "a298b5a3-53ca-4450-adea-25b77414205d" + "78419bdb-8a90-47cc-b560-8b391e9d87bc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051333Z:a298b5a3-53ca-4450-adea-25b77414205d" + "CENTRALUSEUAP:20210418T064507Z:78419bdb-8a90-47cc-b560-8b391e9d87bc" ], "Date": [ - "Sat, 02 May 2020 05:13:32 GMT" + "Sun, 18 Apr 2021 06:45:07 GMT" ], "Content-Length": [ "4554" @@ -9920,29 +9665,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cebde327-b51d-49c6-89ee-8bb664a0dbe2-2020-05-02 05:13:43Z-Ps" + "6a843f79-3d97-43a7-832c-12b692b01622" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392823612)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997623612)\\/\",\"ClientRequestId\":\"cebde327-b51d-49c6-89ee-8bb664a0dbe2-2020-05-02 05:13:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+le0jzqt9HesC4bRb0txjDEVmrDA0Ts66lefvbuH4Eo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724717330)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329517330)\\/\",\"ClientRequestId\":\"0d8b45c7-fc97-4753-bacd-c53f1671b537-2021-04-18 06:45:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CIxrvF+70oH3E8p7+3gSKUD+xIOmYn1dqyHP8Z6RKsQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -9953,35 +9698,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" + "11931" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ccd97702-72f7-40a5-aac8-6aa503abce9b" + "39f5682c-6408-428a-8097-0078e782d282" ], "x-ms-client-request-id": [ - "cebde327-b51d-49c6-89ee-8bb664a0dbe2-2020-05-02 05:13:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6a843f79-3d97-43a7-832c-12b692b01622" ], "x-ms-correlation-request-id": [ - "ccd97702-72f7-40a5-aac8-6aa503abce9b" + "39f5682c-6408-428a-8097-0078e782d282" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051343Z:ccd97702-72f7-40a5-aac8-6aa503abce9b" + "CENTRALUSEUAP:20210418T064517Z:39f5682c-6408-428a-8097-0078e782d282" ], "Date": [ - "Sat, 02 May 2020 05:13:42 GMT" + "Sun, 18 Apr 2021 06:45:16 GMT" ], "Content-Length": [ "4554" @@ -9993,29 +9735,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0bb37c6a-0a2a-46a1-b675-42066442b6ab-2020-05-02 05:13:53Z-Ps" + "9659fd01-99d3-47b7-b514-15f375930789" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392833917)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997633917)\\/\",\"ClientRequestId\":\"0bb37c6a-0a2a-46a1-b675-42066442b6ab-2020-05-02 05:13:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"j/07+K/eXDCGEYzhnmsNcgtZpGDPUFhjWkRDa2dwlKI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724727656)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329527656)\\/\",\"ClientRequestId\":\"0c4e0997-59a5-4d33-895d-44d5d3ce1d25-2021-04-18 06:45:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"N/vCS4awHAJwV+rGi4JxN06M9QIvcU/Qlst2yWojicU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10026,35 +9768,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" + "11930" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b8db0a26-5571-46ce-9d8a-98df9b94c0c0" + "2e7a3ced-a3a1-4356-8a94-8799c2fd3a92" ], "x-ms-client-request-id": [ - "0bb37c6a-0a2a-46a1-b675-42066442b6ab-2020-05-02 05:13:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9659fd01-99d3-47b7-b514-15f375930789" ], "x-ms-correlation-request-id": [ - "b8db0a26-5571-46ce-9d8a-98df9b94c0c0" + "2e7a3ced-a3a1-4356-8a94-8799c2fd3a92" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051354Z:b8db0a26-5571-46ce-9d8a-98df9b94c0c0" + "CENTRALUSEUAP:20210418T064527Z:2e7a3ced-a3a1-4356-8a94-8799c2fd3a92" ], "Date": [ - "Sat, 02 May 2020 05:13:54 GMT" + "Sun, 18 Apr 2021 06:45:27 GMT" ], "Content-Length": [ "4554" @@ -10066,29 +9805,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f489516-ca27-4279-9c7a-2d99439ddd08-2020-05-02 05:14:04Z-Ps" + "0a4bbfdd-ac13-497a-bc8a-b91f4ab63141" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392844267)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997644267)\\/\",\"ClientRequestId\":\"9f489516-ca27-4279-9c7a-2d99439ddd08-2020-05-02 05:14:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"l9rXkKsGYV0YA2l2FjWVp7c70OvDNiyEtR9JOlpCgmI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724738042)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329538042)\\/\",\"ClientRequestId\":\"e138acbe-3657-40f6-8122-7928bd10ada3-2021-04-18 06:45:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kLMKUZ43UD5/XsIznne5hUqeemWLZS1ocX+JiFFJglc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10099,35 +9838,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" + "11928" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "725d5568-a57a-4e8f-8090-211d02104a88" + "784bf0a5-60ee-4e15-98e1-68b332df62bb" ], "x-ms-client-request-id": [ - "9f489516-ca27-4279-9c7a-2d99439ddd08-2020-05-02 05:14:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0a4bbfdd-ac13-497a-bc8a-b91f4ab63141" ], "x-ms-correlation-request-id": [ - "725d5568-a57a-4e8f-8090-211d02104a88" + "784bf0a5-60ee-4e15-98e1-68b332df62bb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051404Z:725d5568-a57a-4e8f-8090-211d02104a88" + "CENTRALUSEUAP:20210418T064538Z:784bf0a5-60ee-4e15-98e1-68b332df62bb" ], "Date": [ - "Sat, 02 May 2020 05:14:03 GMT" + "Sun, 18 Apr 2021 06:45:37 GMT" ], "Content-Length": [ "4554" @@ -10139,29 +9875,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "725f765e-8fef-4432-ab72-3a01e3a328f1-2020-05-02 05:14:14Z-Ps" + "45e38f69-c0cc-42fc-8f03-c93816678632" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392854563)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997654563)\\/\",\"ClientRequestId\":\"725f765e-8fef-4432-ab72-3a01e3a328f1-2020-05-02 05:14:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LU54JcHDq7NN3PeOkrbVQpdmi8cWIBGdNimLJpJrOg4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724748372)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329548372)\\/\",\"ClientRequestId\":\"f7983705-18e5-4b81-b3e2-90dd96b70d02-2021-04-18 06:45:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vpARBPBS/K0m0gmzX3C2r2l+ZiKLNvMyKgCYz5yy97Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10171,36 +9907,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "aa6d1ea5-f878-4396-9c5a-7ad29a51a4fc" + "31f6ff66-c61b-453e-8ac8-099f224837eb" ], "x-ms-client-request-id": [ - "725f765e-8fef-4432-ab72-3a01e3a328f1-2020-05-02 05:14:14Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" + "45e38f69-c0cc-42fc-8f03-c93816678632" ], "x-ms-correlation-request-id": [ - "aa6d1ea5-f878-4396-9c5a-7ad29a51a4fc" + "31f6ff66-c61b-453e-8ac8-099f224837eb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051414Z:aa6d1ea5-f878-4396-9c5a-7ad29a51a4fc" + "CENTRALUSEUAP:20210418T064548Z:31f6ff66-c61b-453e-8ac8-099f224837eb" ], "Date": [ - "Sat, 02 May 2020 05:14:14 GMT" + "Sun, 18 Apr 2021 06:45:48 GMT" ], "Content-Length": [ "4554" @@ -10212,29 +9945,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb891e06-4520-46b1-a584-01c631619318-2020-05-02 05:14:24Z-Ps" + "e571d9ab-cb08-4699-8327-3d61b9273398" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392864900)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997664900)\\/\",\"ClientRequestId\":\"eb891e06-4520-46b1-a584-01c631619318-2020-05-02 05:14:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eWJUhzrezW4usJeBJrWtWte2eodgZJdk8M84qv/HA04=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724758690)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329558690)\\/\",\"ClientRequestId\":\"5249c39c-9d75-4a65-ad8b-5b948bdfbb9e-2021-04-18 06:45:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"efByBfzO15nQbDCyBaAePKH8lzmtKAyYarDMqeIq9LU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10244,36 +9977,33 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "100055e6-2ccd-48af-8385-bd65f64576ba" + "09c68bdd-a569-40f6-805d-3ff64f2af710" ], "x-ms-client-request-id": [ - "eb891e06-4520-46b1-a584-01c631619318-2020-05-02 05:14:24Z-Ps" + "e571d9ab-cb08-4699-8327-3d61b9273398" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11926" ], "x-ms-correlation-request-id": [ - "100055e6-2ccd-48af-8385-bd65f64576ba" + "09c68bdd-a569-40f6-805d-3ff64f2af710" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051425Z:100055e6-2ccd-48af-8385-bd65f64576ba" + "CENTRALUSEUAP:20210418T064558Z:09c68bdd-a569-40f6-805d-3ff64f2af710" ], "Date": [ - "Sat, 02 May 2020 05:14:24 GMT" + "Sun, 18 Apr 2021 06:45:58 GMT" ], "Content-Length": [ "4554" @@ -10285,29 +10015,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d13ec890-41f4-4394-bbd2-a70e11f41506-2020-05-02 05:14:35Z-Ps" + "b609c79c-efbb-4618-8641-1bd2104c8d2f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392875623)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997675623)\\/\",\"ClientRequestId\":\"d13ec890-41f4-4394-bbd2-a70e11f41506-2020-05-02 05:14:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EJiva3g8WuIfNMscxJi2ZOnML9sdlHUEg+CmCK1dK2o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724769017)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329569017)\\/\",\"ClientRequestId\":\"7a95354b-54b1-40bf-9c7e-0f65083e887a-2021-04-18 06:46:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zIjGoDKcapDKyKrni5EjFHUhTWwzyTCK9ff6XYt19Yc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10318,35 +10048,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" + "11925" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "09649233-52d4-4bfb-a147-452b63560a20" + "f5e2abaa-1ddb-47ad-9fa4-34830769b3a7" ], "x-ms-client-request-id": [ - "d13ec890-41f4-4394-bbd2-a70e11f41506-2020-05-02 05:14:35Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b609c79c-efbb-4618-8641-1bd2104c8d2f" ], "x-ms-correlation-request-id": [ - "09649233-52d4-4bfb-a147-452b63560a20" + "f5e2abaa-1ddb-47ad-9fa4-34830769b3a7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051435Z:09649233-52d4-4bfb-a147-452b63560a20" + "CENTRALUSEUAP:20210418T064609Z:f5e2abaa-1ddb-47ad-9fa4-34830769b3a7" ], "Date": [ - "Sat, 02 May 2020 05:14:34 GMT" + "Sun, 18 Apr 2021 06:46:08 GMT" ], "Content-Length": [ "4554" @@ -10358,29 +10085,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "333c401c-cdf9-4160-b92d-384c2df1671e-2020-05-02 05:14:45Z-Ps" + "37adf1d0-203b-428e-88db-39290daf5a6a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392885970)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997685970)\\/\",\"ClientRequestId\":\"333c401c-cdf9-4160-b92d-384c2df1671e-2020-05-02 05:14:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XBPml5ZzKXdHCDlgc0oyH8kZ8dIWzATAQ6w0Vd528rE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724779483)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329579483)\\/\",\"ClientRequestId\":\"48bbaee6-d995-4368-ad69-7faf2f752308-2021-04-18 06:46:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4Hv4OTV1bPVoMETG9yg7LdqCqlfbPdOmS17lBUjM4eM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10391,35 +10118,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" + "11924" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4fb8864f-1525-49a2-a572-21fd39a9117a" + "de9029c3-867a-45ce-8efb-af9cd08a2e8d" ], "x-ms-client-request-id": [ - "333c401c-cdf9-4160-b92d-384c2df1671e-2020-05-02 05:14:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "37adf1d0-203b-428e-88db-39290daf5a6a" ], "x-ms-correlation-request-id": [ - "4fb8864f-1525-49a2-a572-21fd39a9117a" + "de9029c3-867a-45ce-8efb-af9cd08a2e8d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051446Z:4fb8864f-1525-49a2-a572-21fd39a9117a" + "CENTRALUSEUAP:20210418T064619Z:de9029c3-867a-45ce-8efb-af9cd08a2e8d" ], "Date": [ - "Sat, 02 May 2020 05:14:45 GMT" + "Sun, 18 Apr 2021 06:46:19 GMT" ], "Content-Length": [ "4554" @@ -10431,29 +10155,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45f7d934-9359-41f7-9bfc-6630e5e583c0-2020-05-02 05:14:56Z-Ps" + "a81c7cd6-7f3b-4efe-ba5d-80880f8a2697" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392896306)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997696306)\\/\",\"ClientRequestId\":\"45f7d934-9359-41f7-9bfc-6630e5e583c0-2020-05-02 05:14:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AbQOSP4EuDXqUhm1pv0rl+cMgoGukV31oNBkixuZA8M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724789800)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329589800)\\/\",\"ClientRequestId\":\"8e324f07-d2e8-43b1-8f9e-29bd24f16998-2021-04-18 06:46:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ONDRY8DnptSA/x5dKk300Htqm+lwHuPvZHOAPWNHC+0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10464,35 +10188,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" + "11923" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "fbe296a5-0205-4744-a24d-c699382e52b7" + "53030c31-8478-4e57-8fef-dd25d261dd5a" ], "x-ms-client-request-id": [ - "45f7d934-9359-41f7-9bfc-6630e5e583c0-2020-05-02 05:14:56Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a81c7cd6-7f3b-4efe-ba5d-80880f8a2697" ], "x-ms-correlation-request-id": [ - "fbe296a5-0205-4744-a24d-c699382e52b7" + "53030c31-8478-4e57-8fef-dd25d261dd5a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051456Z:fbe296a5-0205-4744-a24d-c699382e52b7" + "CENTRALUSEUAP:20210418T064629Z:53030c31-8478-4e57-8fef-dd25d261dd5a" ], "Date": [ - "Sat, 02 May 2020 05:14:55 GMT" + "Sun, 18 Apr 2021 06:46:29 GMT" ], "Content-Length": [ "4554" @@ -10504,29 +10225,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67c5cca8-1691-4176-8d72-d0d69dbfea31-2020-05-02 05:15:06Z-Ps" + "97bb6d84-528e-4144-90b6-5e49b488a215" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392906639)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997706639)\\/\",\"ClientRequestId\":\"67c5cca8-1691-4176-8d72-d0d69dbfea31-2020-05-02 05:15:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4Z1ZI/68+Tn2ttsSvOj45RmHiaic84yvpsSQUcryAhE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724800190)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329600190)\\/\",\"ClientRequestId\":\"2d689ec2-2d56-46d0-b9d6-90fde788c720-2021-04-18 06:46:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EbCbLDjA5VO7qIFQ03EHsM9dI8KyGyDnsGL42TnhQsc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10537,35 +10258,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" + "11922" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1e702777-d578-4cdd-adec-7ba18a29e9b0" + "1bcd4e69-08ec-4731-a7c3-51f620db7934" ], "x-ms-client-request-id": [ - "67c5cca8-1691-4176-8d72-d0d69dbfea31-2020-05-02 05:15:06Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "97bb6d84-528e-4144-90b6-5e49b488a215" ], "x-ms-correlation-request-id": [ - "1e702777-d578-4cdd-adec-7ba18a29e9b0" + "1bcd4e69-08ec-4731-a7c3-51f620db7934" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051506Z:1e702777-d578-4cdd-adec-7ba18a29e9b0" + "CENTRALUSEUAP:20210418T064640Z:1bcd4e69-08ec-4731-a7c3-51f620db7934" ], "Date": [ - "Sat, 02 May 2020 05:15:06 GMT" + "Sun, 18 Apr 2021 06:46:39 GMT" ], "Content-Length": [ "4554" @@ -10577,29 +10295,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "79d04179-71fb-45d3-adbb-9363dbcd96dc-2020-05-02 05:15:16Z-Ps" + "2c830126-f6e2-4549-ae84-fda1f5861545" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392916934)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997716934)\\/\",\"ClientRequestId\":\"79d04179-71fb-45d3-adbb-9363dbcd96dc-2020-05-02 05:15:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wWwdVi8umPqFpvVOIyJjubwIfCSh7CnVJCri5EP90Dk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724810527)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329610527)\\/\",\"ClientRequestId\":\"6420e948-24bc-41ce-a716-58b1056506bb-2021-04-18 06:46:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yhYqULcvAcVb/9VvTSSZkOYR+BIps1rO/ZG2Yy4q7cI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10610,35 +10328,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" + "11921" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "895fe076-2e7d-452b-a3a9-44a4ed2fddac" + "d4167099-f2b1-498e-a7c1-40a7aee65c98" ], "x-ms-client-request-id": [ - "79d04179-71fb-45d3-adbb-9363dbcd96dc-2020-05-02 05:15:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2c830126-f6e2-4549-ae84-fda1f5861545" ], "x-ms-correlation-request-id": [ - "895fe076-2e7d-452b-a3a9-44a4ed2fddac" + "d4167099-f2b1-498e-a7c1-40a7aee65c98" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051517Z:895fe076-2e7d-452b-a3a9-44a4ed2fddac" + "CENTRALUSEUAP:20210418T064650Z:d4167099-f2b1-498e-a7c1-40a7aee65c98" ], "Date": [ - "Sat, 02 May 2020 05:15:16 GMT" + "Sun, 18 Apr 2021 06:46:50 GMT" ], "Content-Length": [ "4554" @@ -10650,29 +10365,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3decffbd-d46f-483b-a008-e5c9b87de873-2020-05-02 05:15:27Z-Ps" + "cc08d1c0-0cff-450a-8553-957a2156dff2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392927225)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997727225)\\/\",\"ClientRequestId\":\"3decffbd-d46f-483b-a008-e5c9b87de873-2020-05-02 05:15:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LAW0q+lmbtgzoWd55JbcuB5RRDRjrhIskL8ksKq0fcM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724820846)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329620846)\\/\",\"ClientRequestId\":\"8ae13040-5fc1-43f5-b8f1-fdbf01e18ffe-2021-04-18 06:47:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Efs2jwO0jK5KnQIBquARd8ydWtx4hSF/nTwu8BELm7k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10682,36 +10397,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e7d9b122-38ed-43b1-808e-a5f4edd396eb" + "400d24fc-849b-425d-bc7f-650d8be6abcb" ], "x-ms-client-request-id": [ - "3decffbd-d46f-483b-a008-e5c9b87de873-2020-05-02 05:15:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11896" + "cc08d1c0-0cff-450a-8553-957a2156dff2" ], "x-ms-correlation-request-id": [ - "e7d9b122-38ed-43b1-808e-a5f4edd396eb" + "400d24fc-849b-425d-bc7f-650d8be6abcb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051527Z:e7d9b122-38ed-43b1-808e-a5f4edd396eb" + "CENTRALUSEUAP:20210418T064700Z:400d24fc-849b-425d-bc7f-650d8be6abcb" ], "Date": [ - "Sat, 02 May 2020 05:15:26 GMT" + "Sun, 18 Apr 2021 06:47:00 GMT" ], "Content-Length": [ "4554" @@ -10723,29 +10435,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9120d09-ca23-4a19-a5cc-749efe0897b2-2020-05-02 05:15:37Z-Ps" + "2413b25a-7969-47e0-8b6b-4e97d9044e6e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392937514)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997737514)\\/\",\"ClientRequestId\":\"b9120d09-ca23-4a19-a5cc-749efe0897b2-2020-05-02 05:15:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hRV2806rMFLKpnOiVtORiRWGPhtH/k0kINO+1whQ4qk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724831156)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329631156)\\/\",\"ClientRequestId\":\"aa633161-a359-41dc-88fd-c4b8c3ea2d2b-2021-04-18 06:47:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"735pKAd633NNq98X8oXCMm4qMTcJQHE/UDtoIY9dY/0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10756,35 +10468,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" + "11919" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "db63503f-70e1-453a-8b31-c161184bbde5" + "27683075-1a06-4b92-babe-b4b5535e40c6" ], "x-ms-client-request-id": [ - "b9120d09-ca23-4a19-a5cc-749efe0897b2-2020-05-02 05:15:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2413b25a-7969-47e0-8b6b-4e97d9044e6e" ], "x-ms-correlation-request-id": [ - "db63503f-70e1-453a-8b31-c161184bbde5" + "27683075-1a06-4b92-babe-b4b5535e40c6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051537Z:db63503f-70e1-453a-8b31-c161184bbde5" + "CENTRALUSEUAP:20210418T064711Z:27683075-1a06-4b92-babe-b4b5535e40c6" ], "Date": [ - "Sat, 02 May 2020 05:15:36 GMT" + "Sun, 18 Apr 2021 06:47:11 GMT" ], "Content-Length": [ "4554" @@ -10796,29 +10505,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6fe3155-727d-4363-a225-d986e331bdc9-2020-05-02 05:15:47Z-Ps" + "b5232436-5c38-4ecd-b8a5-389699e0af83" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392947967)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997747967)\\/\",\"ClientRequestId\":\"c6fe3155-727d-4363-a225-d986e331bdc9-2020-05-02 05:15:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+3Bw+RCh57OcED/AcaRYaNLtvwzIOC3HVUVvCq5jqpc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724841472)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329641472)\\/\",\"ClientRequestId\":\"e10ed466-371d-4dd7-a831-3df39946ec23-2021-04-18 06:47:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kLUI3tkumR6/qeMH5B+1o2jtTSBoqCaVyaPT+iGmrTc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10829,35 +10538,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11894" + "11918" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0259f488-37d7-4c0e-9e44-5c2ecc9721ac" + "bc98d027-9cf3-4952-ad1a-854608495b0b" ], "x-ms-client-request-id": [ - "c6fe3155-727d-4363-a225-d986e331bdc9-2020-05-02 05:15:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b5232436-5c38-4ecd-b8a5-389699e0af83" ], "x-ms-correlation-request-id": [ - "0259f488-37d7-4c0e-9e44-5c2ecc9721ac" + "bc98d027-9cf3-4952-ad1a-854608495b0b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051548Z:0259f488-37d7-4c0e-9e44-5c2ecc9721ac" + "CENTRALUSEUAP:20210418T064721Z:bc98d027-9cf3-4952-ad1a-854608495b0b" ], "Date": [ - "Sat, 02 May 2020 05:15:48 GMT" + "Sun, 18 Apr 2021 06:47:21 GMT" ], "Content-Length": [ "4554" @@ -10869,29 +10575,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d153cde5-49b7-452c-9ed6-6b9412757272-2020-05-02 05:15:58Z-Ps" + "2fcd6be9-ddde-4e9e-90a5-4b77b617497d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392958299)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997758299)\\/\",\"ClientRequestId\":\"d153cde5-49b7-452c-9ed6-6b9412757272-2020-05-02 05:15:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jNcIIvrCMfj3Qx2r8YMO+/CuDgvij1UmBcfLmxzQ4a0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724851789)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329651789)\\/\",\"ClientRequestId\":\"69cd00b7-5bf0-46aa-bfa8-cf8f4db0e2e5-2021-04-18 06:47:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IHhGi4SsdlTG7l+Bl/BR+4Qq4CjvuhgvIn84FGvNavo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10902,35 +10608,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" + "11917" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4fb0194a-41cf-47fe-8900-defe894b5336" + "7af8e5ab-8f2c-4c50-a003-8d5b1d400a3d" ], "x-ms-client-request-id": [ - "d153cde5-49b7-452c-9ed6-6b9412757272-2020-05-02 05:15:58Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2fcd6be9-ddde-4e9e-90a5-4b77b617497d" ], "x-ms-correlation-request-id": [ - "4fb0194a-41cf-47fe-8900-defe894b5336" + "7af8e5ab-8f2c-4c50-a003-8d5b1d400a3d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051558Z:4fb0194a-41cf-47fe-8900-defe894b5336" + "CENTRALUSEUAP:20210418T064731Z:7af8e5ab-8f2c-4c50-a003-8d5b1d400a3d" ], "Date": [ - "Sat, 02 May 2020 05:15:58 GMT" + "Sun, 18 Apr 2021 06:47:31 GMT" ], "Content-Length": [ "4554" @@ -10942,29 +10645,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "264791c1-db36-4b50-b41b-8d5705bb763c-2020-05-02 05:16:08Z-Ps" + "78971d87-6f2a-48b2-b775-d6ffd72f235c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392968623)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997768623)\\/\",\"ClientRequestId\":\"264791c1-db36-4b50-b41b-8d5705bb763c-2020-05-02 05:16:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YWO6iBrWM4Dbw6QjU6i0bOOKNCuMrpCQ9kdQAFPGXE8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724862109)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329662109)\\/\",\"ClientRequestId\":\"e973d168-75d6-4660-b5fd-b9b4df6f1832-2021-04-18 06:47:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nPXJCEiaUEbkCUrJSwXD2lS+slcddm9KhiC9KTZwpSo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -10975,35 +10678,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" + "11916" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1012bb3e-49e1-4b21-8371-2836a8ff1dcf" + "d31b3b69-ec0c-4e93-99bb-581e063b1284" ], "x-ms-client-request-id": [ - "264791c1-db36-4b50-b41b-8d5705bb763c-2020-05-02 05:16:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "78971d87-6f2a-48b2-b775-d6ffd72f235c" ], "x-ms-correlation-request-id": [ - "1012bb3e-49e1-4b21-8371-2836a8ff1dcf" + "d31b3b69-ec0c-4e93-99bb-581e063b1284" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051608Z:1012bb3e-49e1-4b21-8371-2836a8ff1dcf" + "CENTRALUSEUAP:20210418T064742Z:d31b3b69-ec0c-4e93-99bb-581e063b1284" ], "Date": [ - "Sat, 02 May 2020 05:16:08 GMT" + "Sun, 18 Apr 2021 06:47:42 GMT" ], "Content-Length": [ "4554" @@ -11015,29 +10715,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "56e5efd3-2a58-447e-8f52-d33fcc94b6dc-2020-05-02 05:16:18Z-Ps" + "c026449f-2aec-4e94-a890-113edf868ea8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392978939)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997778939)\\/\",\"ClientRequestId\":\"56e5efd3-2a58-447e-8f52-d33fcc94b6dc-2020-05-02 05:16:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9SgPtopTb7SGJ/Brgexffr5H4rHSv0doioOta0tKV8g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724872439)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329672439)\\/\",\"ClientRequestId\":\"28cc8922-0482-40c2-b0e6-d1a666a53dbc-2021-04-18 06:47:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"L0W5/5Urgm4XHds9WN4NkbRWUuwmk6S9ROw1B9kHYnI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11048,35 +10748,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" + "11915" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b782679b-9250-4c4f-855c-f253a3a2e05e" + "78869aff-7f87-4bea-a577-ff0295edc419" ], "x-ms-client-request-id": [ - "56e5efd3-2a58-447e-8f52-d33fcc94b6dc-2020-05-02 05:16:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c026449f-2aec-4e94-a890-113edf868ea8" ], "x-ms-correlation-request-id": [ - "b782679b-9250-4c4f-855c-f253a3a2e05e" + "78869aff-7f87-4bea-a577-ff0295edc419" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051619Z:b782679b-9250-4c4f-855c-f253a3a2e05e" + "CENTRALUSEUAP:20210418T064752Z:78869aff-7f87-4bea-a577-ff0295edc419" ], "Date": [ - "Sat, 02 May 2020 05:16:18 GMT" + "Sun, 18 Apr 2021 06:47:52 GMT" ], "Content-Length": [ "4554" @@ -11088,29 +10785,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42a6ce50-3878-4088-be26-54e749d3b643-2020-05-02 05:16:29Z-Ps" + "b58b3d4d-b1af-4645-b50d-560f6b3706b9" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392989261)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997789261)\\/\",\"ClientRequestId\":\"42a6ce50-3878-4088-be26-54e749d3b643-2020-05-02 05:16:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pYd8hP/newluLvFFQTAelWI5l1nv8eznIS7px+ptIgc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724882760)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329682760)\\/\",\"ClientRequestId\":\"62f9e549-7e34-472a-9623-984de4992927-2021-04-18 06:48:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KzuNL6gFB9UXv8siy3MCmFuP8w7IBXI+wwInuR0yQeo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11121,35 +10818,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" + "11914" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f180a1a4-7a0e-4e58-a2f4-e2860bacaefc" + "d2537c87-81de-48ab-aea6-bebc70346584" ], "x-ms-client-request-id": [ - "42a6ce50-3878-4088-be26-54e749d3b643-2020-05-02 05:16:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b58b3d4d-b1af-4645-b50d-560f6b3706b9" ], "x-ms-correlation-request-id": [ - "f180a1a4-7a0e-4e58-a2f4-e2860bacaefc" + "d2537c87-81de-48ab-aea6-bebc70346584" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051629Z:f180a1a4-7a0e-4e58-a2f4-e2860bacaefc" + "CENTRALUSEUAP:20210418T064802Z:d2537c87-81de-48ab-aea6-bebc70346584" ], "Date": [ - "Sat, 02 May 2020 05:16:28 GMT" + "Sun, 18 Apr 2021 06:48:02 GMT" ], "Content-Length": [ "4554" @@ -11161,29 +10855,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c02cb77-82ed-4404-8ec4-01907ec691d6-2020-05-02 05:16:39Z-Ps" + "760aa8f7-78bf-4e06-a275-5fd0a1d35625" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588392999556)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997799556)\\/\",\"ClientRequestId\":\"4c02cb77-82ed-4404-8ec4-01907ec691d6-2020-05-02 05:16:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rKt+T46mMjj4YWCpFdRFnBVaIavcQXb/tADB9h8nMH0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724893080)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329693080)\\/\",\"ClientRequestId\":\"f83da72c-c04e-4113-ba38-d7a3e0145b49-2021-04-18 06:48:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VHXS4TM3pIpy17vpQGFi+ad++AFgnyIo5MzeCU7Oju0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11193,36 +10887,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7089c1eb-b2f8-4066-85ea-276c73bd1f95" + "30477599-f417-451e-965a-002951775b09" ], "x-ms-client-request-id": [ - "4c02cb77-82ed-4404-8ec4-01907ec691d6-2020-05-02 05:16:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" + "760aa8f7-78bf-4e06-a275-5fd0a1d35625" ], "x-ms-correlation-request-id": [ - "7089c1eb-b2f8-4066-85ea-276c73bd1f95" + "30477599-f417-451e-965a-002951775b09" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051639Z:7089c1eb-b2f8-4066-85ea-276c73bd1f95" + "CENTRALUSEUAP:20210418T064813Z:30477599-f417-451e-965a-002951775b09" ], "Date": [ - "Sat, 02 May 2020 05:16:39 GMT" + "Sun, 18 Apr 2021 06:48:13 GMT" ], "Content-Length": [ "4554" @@ -11234,29 +10925,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7fc9065-3671-4237-abd9-cdb98500932c-2020-05-02 05:16:49Z-Ps" + "7419a0f5-d26c-4db1-8333-cc6bfe43dfd6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393009905)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997809905)\\/\",\"ClientRequestId\":\"b7fc9065-3671-4237-abd9-cdb98500932c-2020-05-02 05:16:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PU5jyxmLm6j50D12CGDgB+/kzPiIrK8DjgUU98OvOdI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724903389)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329703389)\\/\",\"ClientRequestId\":\"68b84bb3-9c28-4785-bd56-f8b5342ea3d8-2021-04-18 06:48:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KRC5A9gjRlA+O2kikmXI8vNfpX2IqbMgX7d/INY9aAo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11267,35 +10958,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" + "11912" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b68b7301-a06b-4446-b8e7-21886f0cdcfe" + "d2b7a2f2-de37-4879-9390-9cd04e726ca7" ], "x-ms-client-request-id": [ - "b7fc9065-3671-4237-abd9-cdb98500932c-2020-05-02 05:16:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7419a0f5-d26c-4db1-8333-cc6bfe43dfd6" ], "x-ms-correlation-request-id": [ - "b68b7301-a06b-4446-b8e7-21886f0cdcfe" + "d2b7a2f2-de37-4879-9390-9cd04e726ca7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051650Z:b68b7301-a06b-4446-b8e7-21886f0cdcfe" + "CENTRALUSEUAP:20210418T064823Z:d2b7a2f2-de37-4879-9390-9cd04e726ca7" ], "Date": [ - "Sat, 02 May 2020 05:16:49 GMT" + "Sun, 18 Apr 2021 06:48:23 GMT" ], "Content-Length": [ "4554" @@ -11307,29 +10995,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c077a5a-de78-4fb9-bc90-b8be1ff21f8f-2020-05-02 05:17:00Z-Ps" + "b21b3a8e-0728-475a-a8bd-b94d59a85e4c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393020409)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997820409)\\/\",\"ClientRequestId\":\"8c077a5a-de78-4fb9-bc90-b8be1ff21f8f-2020-05-02 05:17:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mi9HrCNJlx8zgKt3UpVSmt2FI+9OtGFQESoboocLifY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724913702)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329713702)\\/\",\"ClientRequestId\":\"b2ff7b3a-eae3-48ca-a3a3-583304a2adf8-2021-04-18 06:48:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"l43h28Z+DPZKln7okkpiOjIIVA2b95pbHwsK1G35wvs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11340,35 +11028,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" + "11911" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "11b97917-7488-490e-a0e2-240c35c121c4" + "379998a3-9bfd-45ae-8deb-9b2a8cadb3f6" ], "x-ms-client-request-id": [ - "8c077a5a-de78-4fb9-bc90-b8be1ff21f8f-2020-05-02 05:17:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b21b3a8e-0728-475a-a8bd-b94d59a85e4c" ], "x-ms-correlation-request-id": [ - "11b97917-7488-490e-a0e2-240c35c121c4" + "379998a3-9bfd-45ae-8deb-9b2a8cadb3f6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051700Z:11b97917-7488-490e-a0e2-240c35c121c4" + "CENTRALUSEUAP:20210418T064833Z:379998a3-9bfd-45ae-8deb-9b2a8cadb3f6" ], "Date": [ - "Sat, 02 May 2020 05:16:59 GMT" + "Sun, 18 Apr 2021 06:48:33 GMT" ], "Content-Length": [ "4554" @@ -11380,29 +11065,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13e67302-006f-4ba5-b4f3-c326dceca9ff-2020-05-02 05:17:10Z-Ps" + "ec32819d-dc51-4e38-9538-84d1420bdae0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393030752)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997830752)\\/\",\"ClientRequestId\":\"13e67302-006f-4ba5-b4f3-c326dceca9ff-2020-05-02 05:17:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JcXJmWRZ6x61lW+tITgJJ7f+MeM2UrW2AZpsP2Ok/ME=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724924011)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329724011)\\/\",\"ClientRequestId\":\"2f667564-d703-4973-b137-bcc73aad7b59-2021-04-18 06:48:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"svn3cHW43fVApfuPQ/YJXlcTNyfo++1fzMlBrli4+bs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11413,35 +11098,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" + "11910" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "eebaa513-855e-49d1-9fef-ec7b58d25aae" + "e64e1390-773b-4e65-9904-9ca21d59f4de" ], "x-ms-client-request-id": [ - "13e67302-006f-4ba5-b4f3-c326dceca9ff-2020-05-02 05:17:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ec32819d-dc51-4e38-9538-84d1420bdae0" ], "x-ms-correlation-request-id": [ - "eebaa513-855e-49d1-9fef-ec7b58d25aae" + "e64e1390-773b-4e65-9904-9ca21d59f4de" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051710Z:eebaa513-855e-49d1-9fef-ec7b58d25aae" + "CENTRALUSEUAP:20210418T064844Z:e64e1390-773b-4e65-9904-9ca21d59f4de" ], "Date": [ - "Sat, 02 May 2020 05:17:10 GMT" + "Sun, 18 Apr 2021 06:48:43 GMT" ], "Content-Length": [ "4554" @@ -11453,29 +11135,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "73a47d6a-85a6-4177-bf7f-85c3fdd1a320-2020-05-02 05:17:21Z-Ps" + "55407790-f354-4c68-8d23-b0792993a561" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393041292)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997841292)\\/\",\"ClientRequestId\":\"73a47d6a-85a6-4177-bf7f-85c3fdd1a320-2020-05-02 05:17:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3JPXlVs/xEwD2bLcntmFIGmOY9m3drs8x+E1O+EgjKM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724934327)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329734327)\\/\",\"ClientRequestId\":\"26e6d1de-f4f8-401c-9056-04670640beda-2021-04-18 06:48:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/4rp8RIZC9XiCypkb7dp34PZGRpLr50DqIrD7Qxchhk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11486,35 +11168,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" + "11909" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2f89cb1f-c8f2-4096-b9a4-aeed77cf3eda" + "d1c80e29-306d-4683-879a-bceeaa3914f7" ], "x-ms-client-request-id": [ - "73a47d6a-85a6-4177-bf7f-85c3fdd1a320-2020-05-02 05:17:21Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "55407790-f354-4c68-8d23-b0792993a561" ], "x-ms-correlation-request-id": [ - "2f89cb1f-c8f2-4096-b9a4-aeed77cf3eda" + "d1c80e29-306d-4683-879a-bceeaa3914f7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051721Z:2f89cb1f-c8f2-4096-b9a4-aeed77cf3eda" + "CENTRALUSEUAP:20210418T064854Z:d1c80e29-306d-4683-879a-bceeaa3914f7" ], "Date": [ - "Sat, 02 May 2020 05:17:20 GMT" + "Sun, 18 Apr 2021 06:48:54 GMT" ], "Content-Length": [ "4554" @@ -11526,29 +11205,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "778f589a-e928-40c1-b599-97436d55f1c1-2020-05-02 05:17:31Z-Ps" + "30e35374-f60e-40db-b793-20ac224ca208" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393051658)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997851658)\\/\",\"ClientRequestId\":\"778f589a-e928-40c1-b599-97436d55f1c1-2020-05-02 05:17:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iqzDHsf3WypSLPkn+/YV+2+MekEC4EoxaE4lnWEPo0E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724944651)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329744651)\\/\",\"ClientRequestId\":\"e279a747-3b21-42d6-98cc-136079ab11f2-2021-04-18 06:49:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CYr8a51qw9m3pAquVDbnjYuvVkPXGopSPrMPtdXI/Zk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11559,35 +11238,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" + "11908" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8c250c4a-d7f6-4416-ad53-214a6f163352" + "2deda5cd-bd03-4b28-9363-a40307462e0e" ], "x-ms-client-request-id": [ - "778f589a-e928-40c1-b599-97436d55f1c1-2020-05-02 05:17:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "30e35374-f60e-40db-b793-20ac224ca208" ], "x-ms-correlation-request-id": [ - "8c250c4a-d7f6-4416-ad53-214a6f163352" + "2deda5cd-bd03-4b28-9363-a40307462e0e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051731Z:8c250c4a-d7f6-4416-ad53-214a6f163352" + "CENTRALUSEUAP:20210418T064904Z:2deda5cd-bd03-4b28-9363-a40307462e0e" ], "Date": [ - "Sat, 02 May 2020 05:17:30 GMT" + "Sun, 18 Apr 2021 06:49:04 GMT" ], "Content-Length": [ "4554" @@ -11599,29 +11275,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78b4292f-b0b4-4923-aa83-e8f0f6b74275-2020-05-02 05:17:41Z-Ps" + "d2c59465-bfa6-46d2-a34d-dd2697464fe5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393061978)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997861978)\\/\",\"ClientRequestId\":\"78b4292f-b0b4-4923-aa83-e8f0f6b74275-2020-05-02 05:17:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"v3DO2lrJ/p9cCUmHWT1aXI6wQ25kcuuF6mYcL+OUi04=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724954981)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329754981)\\/\",\"ClientRequestId\":\"f170578a-4901-4a71-8396-679d831f5fbc-2021-04-18 06:49:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OWtyraivZ+u9IiOMHm0CZNnjt/r52u8vZsMffQwOnsE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11632,35 +11308,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" + "11907" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8b9bd356-9e7e-484e-9955-d39c470372fc" + "e4ff85cd-f5b3-4854-88ae-6150224a6add" ], "x-ms-client-request-id": [ - "78b4292f-b0b4-4923-aa83-e8f0f6b74275-2020-05-02 05:17:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d2c59465-bfa6-46d2-a34d-dd2697464fe5" ], "x-ms-correlation-request-id": [ - "8b9bd356-9e7e-484e-9955-d39c470372fc" + "e4ff85cd-f5b3-4854-88ae-6150224a6add" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051742Z:8b9bd356-9e7e-484e-9955-d39c470372fc" + "CENTRALUSEUAP:20210418T064915Z:e4ff85cd-f5b3-4854-88ae-6150224a6add" ], "Date": [ - "Sat, 02 May 2020 05:17:41 GMT" + "Sun, 18 Apr 2021 06:49:14 GMT" ], "Content-Length": [ "4554" @@ -11672,29 +11345,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1511e59e-125e-4a33-9c6e-9cae93a6235e-2020-05-02 05:17:52Z-Ps" + "d115fbe6-04a5-45da-a481-3cf2db63d59a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393072380)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997872380)\\/\",\"ClientRequestId\":\"1511e59e-125e-4a33-9c6e-9cae93a6235e-2020-05-02 05:17:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iG5JkLV0ni6hI5BQcZMXs9RN0S0pWl0n/6al/8Wod8w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724965294)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329765294)\\/\",\"ClientRequestId\":\"f87c3afd-9134-4f93-b7b9-f6b1943579ef-2021-04-18 06:49:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6uwvbOxgMbyQHat66j6JvK94lGOttTR1OP+bB1Q3vns=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11704,36 +11377,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11906" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e35beb3f-0ec6-4940-9402-e15e47dd4df7" + "08c8e280-c85c-4295-bda9-a77f7fe80264" ], "x-ms-client-request-id": [ - "1511e59e-125e-4a33-9c6e-9cae93a6235e-2020-05-02 05:17:52Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" + "d115fbe6-04a5-45da-a481-3cf2db63d59a" ], "x-ms-correlation-request-id": [ - "e35beb3f-0ec6-4940-9402-e15e47dd4df7" + "08c8e280-c85c-4295-bda9-a77f7fe80264" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051752Z:e35beb3f-0ec6-4940-9402-e15e47dd4df7" + "CENTRALUSEUAP:20210418T064925Z:08c8e280-c85c-4295-bda9-a77f7fe80264" ], "Date": [ - "Sat, 02 May 2020 05:17:52 GMT" + "Sun, 18 Apr 2021 06:49:25 GMT" ], "Content-Length": [ "4554" @@ -11745,29 +11415,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "82121fd9-8397-4e84-85ad-abc6decd52fb-2020-05-02 05:18:02Z-Ps" + "025b827b-b6cf-46e1-bf8a-1e47821e6402" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393082713)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997882713)\\/\",\"ClientRequestId\":\"82121fd9-8397-4e84-85ad-abc6decd52fb-2020-05-02 05:18:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kLhZ7g2CMbvVwnhHcGTnV6KzwYRVwBjDxAzLTIvM3mY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724975613)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329775613)\\/\",\"ClientRequestId\":\"4764edfe-7db2-4177-84ae-88e2fa610572-2021-04-18 06:49:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Jm9DmFGpo8xv+XVBtSP4csRNDhWDit4XLH1gO4LP4BQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11778,35 +11448,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" + "11905" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e395be32-5c7a-4099-bf7c-aa51817cef33" + "0eeb7feb-5809-49b2-8694-4146d7aae361" ], "x-ms-client-request-id": [ - "82121fd9-8397-4e84-85ad-abc6decd52fb-2020-05-02 05:18:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "025b827b-b6cf-46e1-bf8a-1e47821e6402" ], "x-ms-correlation-request-id": [ - "e395be32-5c7a-4099-bf7c-aa51817cef33" + "0eeb7feb-5809-49b2-8694-4146d7aae361" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051803Z:e395be32-5c7a-4099-bf7c-aa51817cef33" + "CENTRALUSEUAP:20210418T064935Z:0eeb7feb-5809-49b2-8694-4146d7aae361" ], "Date": [ - "Sat, 02 May 2020 05:18:02 GMT" + "Sun, 18 Apr 2021 06:49:35 GMT" ], "Content-Length": [ "4554" @@ -11818,29 +11485,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3dae5cd7-b2cc-49a0-8149-fa5fec566b63-2020-05-02 05:18:13Z-Ps" + "38e359cb-dfae-4ca6-91b1-86c8f4a3866a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393093290)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997893290)\\/\",\"ClientRequestId\":\"3dae5cd7-b2cc-49a0-8149-fa5fec566b63-2020-05-02 05:18:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NdgeEL6ZqS+B925d8ZppulTDnlfYFN/b2vjLfQd7K3o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724985923)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329785923)\\/\",\"ClientRequestId\":\"3db2184e-eb34-4e79-8569-ebc7961eba77-2021-04-18 06:49:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/O+9/PJMZWO05kPYvRwxCxIzZ9gxWSGb2PJ9TufieHM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11851,35 +11518,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" + "11904" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ac480a1f-ef42-4f90-9976-fef4c9abd9ed" + "7f04de15-41e7-453f-9c3a-8b8700106df4" ], "x-ms-client-request-id": [ - "3dae5cd7-b2cc-49a0-8149-fa5fec566b63-2020-05-02 05:18:13Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "38e359cb-dfae-4ca6-91b1-86c8f4a3866a" ], "x-ms-correlation-request-id": [ - "ac480a1f-ef42-4f90-9976-fef4c9abd9ed" + "7f04de15-41e7-453f-9c3a-8b8700106df4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051813Z:ac480a1f-ef42-4f90-9976-fef4c9abd9ed" + "CENTRALUSEUAP:20210418T064946Z:7f04de15-41e7-453f-9c3a-8b8700106df4" ], "Date": [ - "Sat, 02 May 2020 05:18:12 GMT" + "Sun, 18 Apr 2021 06:49:45 GMT" ], "Content-Length": [ "4554" @@ -11891,29 +11555,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c06dd1bd-a4f1-4215-91dd-f6a501607e9e-2020-05-02 05:18:23Z-Ps" + "0461b481-89c0-45ea-bc22-d7fdfda400f2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393103688)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997903688)\\/\",\"ClientRequestId\":\"c06dd1bd-a4f1-4215-91dd-f6a501607e9e-2020-05-02 05:18:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wgM92bq+v7XbGiI2zFPM0F1TySUDejslpCFwpQLGWos=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618724996239)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329796239)\\/\",\"ClientRequestId\":\"fd18e226-1012-43b5-aed5-34d8f8ab426d-2021-04-18 06:49:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Vwm7W1ZBypnjP141Xg+NiFFGKqzdO9DfOqgsdRJKOYA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11924,35 +11588,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" + "11903" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "74b54df7-1b3a-4a9e-b089-e7b9008a388f" + "3d2486a3-0f91-4f7f-8393-3658877d3acf" ], "x-ms-client-request-id": [ - "c06dd1bd-a4f1-4215-91dd-f6a501607e9e-2020-05-02 05:18:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0461b481-89c0-45ea-bc22-d7fdfda400f2" ], "x-ms-correlation-request-id": [ - "74b54df7-1b3a-4a9e-b089-e7b9008a388f" + "3d2486a3-0f91-4f7f-8393-3658877d3acf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051823Z:74b54df7-1b3a-4a9e-b089-e7b9008a388f" + "CENTRALUSEUAP:20210418T064956Z:3d2486a3-0f91-4f7f-8393-3658877d3acf" ], "Date": [ - "Sat, 02 May 2020 05:18:23 GMT" + "Sun, 18 Apr 2021 06:49:55 GMT" ], "Content-Length": [ "4554" @@ -11964,29 +11625,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b7374a4-4a29-4d50-8588-936e5a814adb-2020-05-02 05:18:34Z-Ps" + "029c5b88-70a6-44aa-8950-835367b59c80" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393114098)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997914098)\\/\",\"ClientRequestId\":\"5b7374a4-4a29-4d50-8588-936e5a814adb-2020-05-02 05:18:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IJxx9ZWAze5IywZkJZ3AHpGFVNksovRiHexXZ7PqaPw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725006592)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329806592)\\/\",\"ClientRequestId\":\"fe2fa2cf-538c-4a04-a530-9fa4fe452ad6-2021-04-18 06:50:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Nc/32u7QzkWGJVaJGQ6+KB3CYM9WCvIadtZ23qDY2mA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -11997,35 +11658,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" + "11902" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7e9ac893-71aa-44a8-901e-9448bf4ee470" + "3993643b-a9ea-4927-b8ba-d09c37236a3d" ], "x-ms-client-request-id": [ - "5b7374a4-4a29-4d50-8588-936e5a814adb-2020-05-02 05:18:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "029c5b88-70a6-44aa-8950-835367b59c80" ], "x-ms-correlation-request-id": [ - "7e9ac893-71aa-44a8-901e-9448bf4ee470" + "3993643b-a9ea-4927-b8ba-d09c37236a3d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051834Z:7e9ac893-71aa-44a8-901e-9448bf4ee470" + "CENTRALUSEUAP:20210418T065006Z:3993643b-a9ea-4927-b8ba-d09c37236a3d" ], "Date": [ - "Sat, 02 May 2020 05:18:34 GMT" + "Sun, 18 Apr 2021 06:50:06 GMT" ], "Content-Length": [ "4554" @@ -12037,29 +11695,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "59ba470b-68da-4f84-bf68-2345c52a0e39-2020-05-02 05:18:44Z-Ps" + "9113e92e-27b8-421e-a4f5-509908e85063" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393124437)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997924437)\\/\",\"ClientRequestId\":\"59ba470b-68da-4f84-bf68-2345c52a0e39-2020-05-02 05:18:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PVts8vmvGduOXq9ZrWS/dvsyD59l6PYtvVcb50WPNgg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725016911)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329816911)\\/\",\"ClientRequestId\":\"6ae09367-ae3c-4f18-a5ea-e053c925b3d9-2021-04-18 06:50:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hVY6178iIsPn1ONctp8lK/u7yfPnW0LGoW5YuoP6F+8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12070,35 +11728,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" + "11901" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "04f164d4-9d91-4a7a-ad0f-512d9710cb51" + "a037518e-7504-4488-b68a-8d8e9adfd8e0" ], "x-ms-client-request-id": [ - "59ba470b-68da-4f84-bf68-2345c52a0e39-2020-05-02 05:18:44Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9113e92e-27b8-421e-a4f5-509908e85063" ], "x-ms-correlation-request-id": [ - "04f164d4-9d91-4a7a-ad0f-512d9710cb51" + "a037518e-7504-4488-b68a-8d8e9adfd8e0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051844Z:04f164d4-9d91-4a7a-ad0f-512d9710cb51" + "CENTRALUSEUAP:20210418T065017Z:a037518e-7504-4488-b68a-8d8e9adfd8e0" ], "Date": [ - "Sat, 02 May 2020 05:18:44 GMT" + "Sun, 18 Apr 2021 06:50:16 GMT" ], "Content-Length": [ "4554" @@ -12110,29 +11765,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f51b2191-badc-41f2-9689-e6637ae53a47-2020-05-02 05:18:54Z-Ps" + "707f7c6a-5c24-44fc-a434-158477509eac" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393134758)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997934758)\\/\",\"ClientRequestId\":\"f51b2191-badc-41f2-9689-e6637ae53a47-2020-05-02 05:18:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"re4U3qgf6a6w9/nsQKaDo7cyX8NIGqxEYPLYYPWpr8M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725027220)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329827220)\\/\",\"ClientRequestId\":\"b15b0798-78c8-46ad-aff8-58541a789091-2021-04-18 06:50:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hHF2hCYbTf/oogIzUC3EnVxTblL7s3fyID7vZG0Md2E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12143,35 +11798,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11876" + "11900" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "23caa752-616d-418b-acc2-467fb72da4fb" + "c25f8b0f-42df-4946-bd9c-e49479cb8f09" ], "x-ms-client-request-id": [ - "f51b2191-badc-41f2-9689-e6637ae53a47-2020-05-02 05:18:54Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "707f7c6a-5c24-44fc-a434-158477509eac" ], "x-ms-correlation-request-id": [ - "23caa752-616d-418b-acc2-467fb72da4fb" + "c25f8b0f-42df-4946-bd9c-e49479cb8f09" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051854Z:23caa752-616d-418b-acc2-467fb72da4fb" + "CENTRALUSEUAP:20210418T065027Z:c25f8b0f-42df-4946-bd9c-e49479cb8f09" ], "Date": [ - "Sat, 02 May 2020 05:18:54 GMT" + "Sun, 18 Apr 2021 06:50:27 GMT" ], "Content-Length": [ "4554" @@ -12183,29 +11835,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d79b01cf-a132-4aa4-b79c-daaacb48e501-2020-05-02 05:19:05Z-Ps" + "8d744e63-ead3-4e2d-bcb6-a6efd5f8d6d0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393145059)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997945059)\\/\",\"ClientRequestId\":\"d79b01cf-a132-4aa4-b79c-daaacb48e501-2020-05-02 05:19:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0WzrodMzSv4nkefDUb11T8XAtY2CQfTx9bUhdaeKHPU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725037531)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329837531)\\/\",\"ClientRequestId\":\"c594ec55-e68d-4e08-ac3d-23377b898ca1-2021-04-18 06:50:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"L9zQiFeu0NKZ0m1TCouNbEC97iR4lpvrr4Bdyqd8rIw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12215,36 +11867,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11899" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "223ada17-6bbf-48af-a8aa-2c2ab513e38a" + "a7a0f8a7-e6c7-4175-8275-23f85d121244" ], "x-ms-client-request-id": [ - "d79b01cf-a132-4aa4-b79c-daaacb48e501-2020-05-02 05:19:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" + "8d744e63-ead3-4e2d-bcb6-a6efd5f8d6d0" ], "x-ms-correlation-request-id": [ - "223ada17-6bbf-48af-a8aa-2c2ab513e38a" + "a7a0f8a7-e6c7-4175-8275-23f85d121244" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051905Z:223ada17-6bbf-48af-a8aa-2c2ab513e38a" + "CENTRALUSEUAP:20210418T065037Z:a7a0f8a7-e6c7-4175-8275-23f85d121244" ], "Date": [ - "Sat, 02 May 2020 05:19:04 GMT" + "Sun, 18 Apr 2021 06:50:36 GMT" ], "Content-Length": [ "4554" @@ -12256,29 +11905,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60b5f24c-b859-4780-b7fd-e79fe98614eb-2020-05-02 05:19:15Z-Ps" + "50aa2138-f1c0-4a03-aa3d-6aa1c8f8efa2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393155479)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997955479)\\/\",\"ClientRequestId\":\"60b5f24c-b859-4780-b7fd-e79fe98614eb-2020-05-02 05:19:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"64yTvm1P0Whc+zXJxTxG1LcoMu9BMgLCDNz39QywBes=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725047859)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329847859)\\/\",\"ClientRequestId\":\"e7a91edf-20cf-4905-abd5-d7d6c87028b4-2021-04-18 06:50:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"n9dCxQVDMurn/MQv3At06/M4e8tLLMQ2fz+FdKxknD0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12289,35 +11938,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" + "11898" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6f0c42b9-6913-4cf3-a6e5-348aca37878a" + "353b1deb-f14a-40bf-a435-34032e13242a" ], "x-ms-client-request-id": [ - "60b5f24c-b859-4780-b7fd-e79fe98614eb-2020-05-02 05:19:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "50aa2138-f1c0-4a03-aa3d-6aa1c8f8efa2" ], "x-ms-correlation-request-id": [ - "6f0c42b9-6913-4cf3-a6e5-348aca37878a" + "353b1deb-f14a-40bf-a435-34032e13242a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051915Z:6f0c42b9-6913-4cf3-a6e5-348aca37878a" + "CENTRALUSEUAP:20210418T065047Z:353b1deb-f14a-40bf-a435-34032e13242a" ], "Date": [ - "Sat, 02 May 2020 05:19:15 GMT" + "Sun, 18 Apr 2021 06:50:47 GMT" ], "Content-Length": [ "4554" @@ -12329,29 +11975,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "369a138f-b6a5-46fb-9f2f-ca978f9c365e-2020-05-02 05:19:26Z-Ps" + "0d88bfb2-480e-436f-a99d-f5420ad02298" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393166119)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997966119)\\/\",\"ClientRequestId\":\"369a138f-b6a5-46fb-9f2f-ca978f9c365e-2020-05-02 05:19:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ApOqQhd2qhwt+fW7wSwz2CMyU3EZtlurIrAnAuamXR8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725058166)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329858166)\\/\",\"ClientRequestId\":\"cc570d04-db9b-47ae-a235-0cafc8a1e436-2021-04-18 06:50:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8yr4hqqj1wSSDlYZbz1iTCCowzfMNXRzVYfoHpjFG8k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12361,36 +12007,33 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8aea45fc-61c5-4652-9233-17d8734f5a05" + "72f94b76-e168-4dcf-a6c2-d2da0e7198c6" ], "x-ms-client-request-id": [ - "369a138f-b6a5-46fb-9f2f-ca978f9c365e-2020-05-02 05:19:26Z-Ps" + "0d88bfb2-480e-436f-a99d-f5420ad02298" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11897" ], "x-ms-correlation-request-id": [ - "8aea45fc-61c5-4652-9233-17d8734f5a05" + "72f94b76-e168-4dcf-a6c2-d2da0e7198c6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051926Z:8aea45fc-61c5-4652-9233-17d8734f5a05" + "CENTRALUSEUAP:20210418T065058Z:72f94b76-e168-4dcf-a6c2-d2da0e7198c6" ], "Date": [ - "Sat, 02 May 2020 05:19:25 GMT" + "Sun, 18 Apr 2021 06:50:57 GMT" ], "Content-Length": [ "4554" @@ -12402,29 +12045,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c04ddac2-0cc7-4cd4-a4c7-58ac89bb9e9d-2020-05-02 05:19:36Z-Ps" + "2c2218b9-29c7-4fe3-8b0f-64222603afa4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393176425)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997976425)\\/\",\"ClientRequestId\":\"c04ddac2-0cc7-4cd4-a4c7-58ac89bb9e9d-2020-05-02 05:19:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xLIhGT8xM1t3yxYagimuJQchfjpMO1tM+NQVweu2f8E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725068508)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329868508)\\/\",\"ClientRequestId\":\"9b2b0d70-5793-4602-8f85-73664cfd6c4e-2021-04-18 06:51:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZAP9zeOudOhYK4tGbQjabewtr/DBZ0ZJJiJl37i2LAY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12435,35 +12078,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11872" + "11896" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b9d28718-ce80-4b38-8d96-e25d183ce713" + "0e069d4c-8ee5-47ce-be4b-0ed67afcbc3a" ], "x-ms-client-request-id": [ - "c04ddac2-0cc7-4cd4-a4c7-58ac89bb9e9d-2020-05-02 05:19:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2c2218b9-29c7-4fe3-8b0f-64222603afa4" ], "x-ms-correlation-request-id": [ - "b9d28718-ce80-4b38-8d96-e25d183ce713" + "0e069d4c-8ee5-47ce-be4b-0ed67afcbc3a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051936Z:b9d28718-ce80-4b38-8d96-e25d183ce713" + "CENTRALUSEUAP:20210418T065108Z:0e069d4c-8ee5-47ce-be4b-0ed67afcbc3a" ], "Date": [ - "Sat, 02 May 2020 05:19:35 GMT" + "Sun, 18 Apr 2021 06:51:08 GMT" ], "Content-Length": [ "4554" @@ -12475,29 +12115,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "990819a8-d9c7-495e-abb7-a4f2a6f54fbe-2020-05-02 05:19:46Z-Ps" + "5e9583a2-8407-4c1e-bff2-03e3f585d6d7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393186726)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997986726)\\/\",\"ClientRequestId\":\"990819a8-d9c7-495e-abb7-a4f2a6f54fbe-2020-05-02 05:19:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wPqUH0+YsyrQFuy8v1ueryrEnWHnYm31x3K9araiLjE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725079004)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329879004)\\/\",\"ClientRequestId\":\"c76ffec6-60c8-4c55-89c6-07fb941048a5-2021-04-18 06:51:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uibVtZff+SlQ5/iKHsivJlKZH+4XRHpX6m3MFwQ6xtk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12508,35 +12148,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" + "11895" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6ce1c2e2-46c5-4d9e-898a-4bcaef123cbe" + "d6beefa5-5e15-4f0a-8f2c-addd12e08435" ], "x-ms-client-request-id": [ - "990819a8-d9c7-495e-abb7-a4f2a6f54fbe-2020-05-02 05:19:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5e9583a2-8407-4c1e-bff2-03e3f585d6d7" ], "x-ms-correlation-request-id": [ - "6ce1c2e2-46c5-4d9e-898a-4bcaef123cbe" + "d6beefa5-5e15-4f0a-8f2c-addd12e08435" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051946Z:6ce1c2e2-46c5-4d9e-898a-4bcaef123cbe" + "CENTRALUSEUAP:20210418T065119Z:d6beefa5-5e15-4f0a-8f2c-addd12e08435" ], "Date": [ - "Sat, 02 May 2020 05:19:46 GMT" + "Sun, 18 Apr 2021 06:51:19 GMT" ], "Content-Length": [ "4554" @@ -12548,29 +12185,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c357a621-3d14-4ed1-bcf5-e457b921cdb2-2020-05-02 05:19:57Z-Ps" + "9750fbeb-b312-4727-8916-4531cac2cc97" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393197055)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588997997055)\\/\",\"ClientRequestId\":\"c357a621-3d14-4ed1-bcf5-e457b921cdb2-2020-05-02 05:19:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LZThZmE5nA/1EyQaT0eeKwHc8Ak6KArSVd1S5d1Zlac=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725089333)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329889333)\\/\",\"ClientRequestId\":\"3df9a375-72c5-4fc7-89c8-650226b219eb-2021-04-18 06:51:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EJfkjr1na6Un5Z3q8EMYixJ6UZphunh6HpLJU7kDQ5A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12581,35 +12218,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11870" + "11894" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6f2da68b-343e-4806-85f4-d4762780c180" + "10b05192-db1f-4f55-8901-b1e1c4d57a02" ], "x-ms-client-request-id": [ - "c357a621-3d14-4ed1-bcf5-e457b921cdb2-2020-05-02 05:19:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9750fbeb-b312-4727-8916-4531cac2cc97" ], "x-ms-correlation-request-id": [ - "6f2da68b-343e-4806-85f4-d4762780c180" + "10b05192-db1f-4f55-8901-b1e1c4d57a02" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T051957Z:6f2da68b-343e-4806-85f4-d4762780c180" + "CENTRALUSEUAP:20210418T065129Z:10b05192-db1f-4f55-8901-b1e1c4d57a02" ], "Date": [ - "Sat, 02 May 2020 05:19:57 GMT" + "Sun, 18 Apr 2021 06:51:28 GMT" ], "Content-Length": [ "4554" @@ -12621,29 +12255,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06737231-f2aa-483b-81d9-fc7ae5bbe5ca-2020-05-02 05:20:07Z-Ps" + "f31a7e19-d0a7-41da-9d61-7a0ee034eae0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393207358)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998007358)\\/\",\"ClientRequestId\":\"06737231-f2aa-483b-81d9-fc7ae5bbe5ca-2020-05-02 05:20:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jYhDQ5AZqH5zeu8AVdTsi148zRj+Q97FeSY7kpO5mzU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725099654)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329899654)\\/\",\"ClientRequestId\":\"2ec497ad-2ad6-4ab4-8302-3be96158f650-2021-04-18 06:51:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ubBiWPRax8KyFqsYf0e7dZ/cuK6VCRq5StKorSsiS2I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12654,35 +12288,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11869" + "11893" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "43856ef6-5099-44e2-8781-7d5de6487c3c" + "ec62984a-1dab-4b48-a389-397cf057eeed" ], "x-ms-client-request-id": [ - "06737231-f2aa-483b-81d9-fc7ae5bbe5ca-2020-05-02 05:20:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f31a7e19-d0a7-41da-9d61-7a0ee034eae0" ], "x-ms-correlation-request-id": [ - "43856ef6-5099-44e2-8781-7d5de6487c3c" + "ec62984a-1dab-4b48-a389-397cf057eeed" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052007Z:43856ef6-5099-44e2-8781-7d5de6487c3c" + "CENTRALUSEUAP:20210418T065139Z:ec62984a-1dab-4b48-a389-397cf057eeed" ], "Date": [ - "Sat, 02 May 2020 05:20:07 GMT" + "Sun, 18 Apr 2021 06:51:39 GMT" ], "Content-Length": [ "4554" @@ -12694,29 +12325,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a32bc5ef-4d80-4e17-b617-b8540c643b3d-2020-05-02 05:20:17Z-Ps" + "58fefd77-c2f4-4001-abe3-4c6dc89e70fa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393217675)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998017675)\\/\",\"ClientRequestId\":\"a32bc5ef-4d80-4e17-b617-b8540c643b3d-2020-05-02 05:20:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QXmHbRanfErxk6ygdfCetGN/9A78Leh3zWBU1fKjZWc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725109994)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329909994)\\/\",\"ClientRequestId\":\"d26d7429-9601-42c0-820b-4aa98ae5c18d-2021-04-18 06:51:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sjHvIXT7y+PqXXA+Qu1iHmdoGUUqkTGYEf7XYb3m7dI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12726,36 +12357,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11892" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3edb5e21-5b9b-4009-baec-0732ec0822e6" + "30fb4d84-057e-4974-84f2-b2173e16aa37" ], "x-ms-client-request-id": [ - "a32bc5ef-4d80-4e17-b617-b8540c643b3d-2020-05-02 05:20:17Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11868" + "58fefd77-c2f4-4001-abe3-4c6dc89e70fa" ], "x-ms-correlation-request-id": [ - "3edb5e21-5b9b-4009-baec-0732ec0822e6" + "30fb4d84-057e-4974-84f2-b2173e16aa37" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052017Z:3edb5e21-5b9b-4009-baec-0732ec0822e6" + "CENTRALUSEUAP:20210418T065150Z:30fb4d84-057e-4974-84f2-b2173e16aa37" ], "Date": [ - "Sat, 02 May 2020 05:20:17 GMT" + "Sun, 18 Apr 2021 06:51:49 GMT" ], "Content-Length": [ "4554" @@ -12767,29 +12395,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63535f51-ae71-407b-9e0b-8e4fec78efe9-2020-05-02 05:20:28Z-Ps" + "f634eeb1-12b8-43d7-ae8e-1c446c450968" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393228194)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998028194)\\/\",\"ClientRequestId\":\"63535f51-ae71-407b-9e0b-8e4fec78efe9-2020-05-02 05:20:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wTKRCIkACR0+sbE4b0hMc4UeoiQ+H+R5W+OGf2kOW1Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725120327)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329920327)\\/\",\"ClientRequestId\":\"91d11e5d-a119-47bf-abdf-7cc7b2cbdaeb-2021-04-18 06:52:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"u7qbepcWaOgnLzA/pya8N4QrmXN//GbD75cNfibNjpc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12800,35 +12428,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11867" + "11891" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1017bc44-bd72-4655-a8fc-2215afa73498" + "24a7f4a9-449e-4e4f-8abd-7d8fb693b01b" ], "x-ms-client-request-id": [ - "63535f51-ae71-407b-9e0b-8e4fec78efe9-2020-05-02 05:20:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f634eeb1-12b8-43d7-ae8e-1c446c450968" ], "x-ms-correlation-request-id": [ - "1017bc44-bd72-4655-a8fc-2215afa73498" + "24a7f4a9-449e-4e4f-8abd-7d8fb693b01b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052028Z:1017bc44-bd72-4655-a8fc-2215afa73498" + "CENTRALUSEUAP:20210418T065200Z:24a7f4a9-449e-4e4f-8abd-7d8fb693b01b" ], "Date": [ - "Sat, 02 May 2020 05:20:28 GMT" + "Sun, 18 Apr 2021 06:52:00 GMT" ], "Content-Length": [ "4554" @@ -12840,29 +12465,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8805e16e-bc48-4b3e-928e-bb8ea57e3f81-2020-05-02 05:20:39Z-Ps" + "05c54339-b251-4657-b3f5-5765c0b1e822" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393239124)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998039124)\\/\",\"ClientRequestId\":\"8805e16e-bc48-4b3e-928e-bb8ea57e3f81-2020-05-02 05:20:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DVG9/iLcLpP00VW0b3OPGuFINaVBbZ8TTXrOJXh+b2I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725130666)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329930666)\\/\",\"ClientRequestId\":\"f9213245-dde7-439a-a2a2-6daa72152865-2021-04-18 06:52:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HaoUT4uO9O76NlJnRU6rDdDLybFWLmloNzQ3JIC/SqM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12873,35 +12498,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11866" + "11890" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ce3b8dd2-b792-42b7-89b0-89736f656542" + "87fa6816-aa39-4fd7-82d8-22e1421c9210" ], "x-ms-client-request-id": [ - "8805e16e-bc48-4b3e-928e-bb8ea57e3f81-2020-05-02 05:20:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "05c54339-b251-4657-b3f5-5765c0b1e822" ], "x-ms-correlation-request-id": [ - "ce3b8dd2-b792-42b7-89b0-89736f656542" + "87fa6816-aa39-4fd7-82d8-22e1421c9210" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052039Z:ce3b8dd2-b792-42b7-89b0-89736f656542" + "CENTRALUSEUAP:20210418T065210Z:87fa6816-aa39-4fd7-82d8-22e1421c9210" ], "Date": [ - "Sat, 02 May 2020 05:20:39 GMT" + "Sun, 18 Apr 2021 06:52:10 GMT" ], "Content-Length": [ "4554" @@ -12913,29 +12535,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b517885a-f8fd-4737-bcb3-1949d723eebf-2020-05-02 05:20:49Z-Ps" + "c8d71ae9-d08a-49e5-a1d8-103c3673da27" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393249452)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998049452)\\/\",\"ClientRequestId\":\"b517885a-f8fd-4737-bcb3-1949d723eebf-2020-05-02 05:20:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lSiMx/QCeG+PONEHRR+IxW0QD+eyQrIEB3IdJUxrr7k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725140991)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329940991)\\/\",\"ClientRequestId\":\"6434265b-4acc-4074-87da-01f38908d188-2021-04-18 06:52:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0dQdU2FC9mZWcXCNMPa+fzc6RCfqyQziZ9DSxqXrJxA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -12946,35 +12568,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" + "11889" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "fc10434b-69a1-4997-a432-1bc1c1fea254" + "e6d71b33-b586-4ca0-9bbd-20edf990c750" ], "x-ms-client-request-id": [ - "b517885a-f8fd-4737-bcb3-1949d723eebf-2020-05-02 05:20:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c8d71ae9-d08a-49e5-a1d8-103c3673da27" ], "x-ms-correlation-request-id": [ - "fc10434b-69a1-4997-a432-1bc1c1fea254" + "e6d71b33-b586-4ca0-9bbd-20edf990c750" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052049Z:fc10434b-69a1-4997-a432-1bc1c1fea254" + "CENTRALUSEUAP:20210418T065221Z:e6d71b33-b586-4ca0-9bbd-20edf990c750" ], "Date": [ - "Sat, 02 May 2020 05:20:49 GMT" + "Sun, 18 Apr 2021 06:52:20 GMT" ], "Content-Length": [ "4554" @@ -12986,29 +12605,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6cb505ca-9b3f-4750-bdfd-e3e615481869-2020-05-02 05:20:59Z-Ps" + "bd8e867b-a98d-4e76-b96a-c9ea3c22e463" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393259814)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998059814)\\/\",\"ClientRequestId\":\"6cb505ca-9b3f-4750-bdfd-e3e615481869-2020-05-02 05:20:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kBaqJ1r0zpLfSMw8/Gx/WERknDXyW95Lk2LOuyyR0Vc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725151354)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329951354)\\/\",\"ClientRequestId\":\"11f6e854-2b9e-4966-bb91-7e22736757f2-2021-04-18 06:52:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+ycqaXMmX7stFWjH398Esd0WQx5Gpijyn2x/xj2uv3k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13019,35 +12638,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11864" + "11888" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "89450e2e-75d9-4fa5-9059-04b66795f9e2" + "5a5123af-59ff-400f-9dda-d65f0a963fd3" ], "x-ms-client-request-id": [ - "6cb505ca-9b3f-4750-bdfd-e3e615481869-2020-05-02 05:20:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bd8e867b-a98d-4e76-b96a-c9ea3c22e463" ], "x-ms-correlation-request-id": [ - "89450e2e-75d9-4fa5-9059-04b66795f9e2" + "5a5123af-59ff-400f-9dda-d65f0a963fd3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052059Z:89450e2e-75d9-4fa5-9059-04b66795f9e2" + "CENTRALUSEUAP:20210418T065231Z:5a5123af-59ff-400f-9dda-d65f0a963fd3" ], "Date": [ - "Sat, 02 May 2020 05:20:59 GMT" + "Sun, 18 Apr 2021 06:52:31 GMT" ], "Content-Length": [ "4554" @@ -13059,29 +12675,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f99dbc19-b576-4dea-afa8-bb772c254a7d-2020-05-02 05:21:10Z-Ps" + "debf79f5-184a-434e-943d-be175fbb1c7a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393270136)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998070136)\\/\",\"ClientRequestId\":\"f99dbc19-b576-4dea-afa8-bb772c254a7d-2020-05-02 05:21:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"e63hQpMlQZNaxnBFIi9NSZX1atUYQUaBRIUR21OZBxs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725161695)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329961695)\\/\",\"ClientRequestId\":\"36955981-000e-403e-b05f-15027268c5f3-2021-04-18 06:52:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Kvl6D77ftDwwBQTR1H3R7UWbHr92+DRGnEpzIGGznJM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13092,35 +12708,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11863" + "11887" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b0608a65-b247-4d3d-b94e-90ddeedc93ce" + "fd7c0b6a-a103-40d5-82b6-7acee9bc7808" ], "x-ms-client-request-id": [ - "f99dbc19-b576-4dea-afa8-bb772c254a7d-2020-05-02 05:21:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "debf79f5-184a-434e-943d-be175fbb1c7a" ], "x-ms-correlation-request-id": [ - "b0608a65-b247-4d3d-b94e-90ddeedc93ce" + "fd7c0b6a-a103-40d5-82b6-7acee9bc7808" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052110Z:b0608a65-b247-4d3d-b94e-90ddeedc93ce" + "CENTRALUSEUAP:20210418T065241Z:fd7c0b6a-a103-40d5-82b6-7acee9bc7808" ], "Date": [ - "Sat, 02 May 2020 05:21:10 GMT" + "Sun, 18 Apr 2021 06:52:40 GMT" ], "Content-Length": [ "4554" @@ -13132,29 +12745,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6da7412-e47a-4c98-bac4-440cf9a74263-2020-05-02 05:21:20Z-Ps" + "27ed519f-3183-4c9c-ae5a-345d0109a8cb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393280487)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998080487)\\/\",\"ClientRequestId\":\"b6da7412-e47a-4c98-bac4-440cf9a74263-2020-05-02 05:21:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3gQ/wrIkB+kDffx1O76c87e+uLqDObCNQziYEpk7FNI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725172012)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329972012)\\/\",\"ClientRequestId\":\"df805ddd-31fe-41a3-bfdb-7c3a0c1855e6-2021-04-18 06:52:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JruIlJXc3aoH3D+WEQXOhSBuP4RBqWyOIMLjvej6ilg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13165,35 +12778,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11862" + "11886" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "578640b8-ad94-4c67-b6f8-4dcfd3762995" + "9b9d917e-35f7-47a8-b6e6-00f0cb43ff6c" ], "x-ms-client-request-id": [ - "b6da7412-e47a-4c98-bac4-440cf9a74263-2020-05-02 05:21:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "27ed519f-3183-4c9c-ae5a-345d0109a8cb" ], "x-ms-correlation-request-id": [ - "578640b8-ad94-4c67-b6f8-4dcfd3762995" + "9b9d917e-35f7-47a8-b6e6-00f0cb43ff6c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052120Z:578640b8-ad94-4c67-b6f8-4dcfd3762995" + "CENTRALUSEUAP:20210418T065252Z:9b9d917e-35f7-47a8-b6e6-00f0cb43ff6c" ], "Date": [ - "Sat, 02 May 2020 05:21:20 GMT" + "Sun, 18 Apr 2021 06:52:51 GMT" ], "Content-Length": [ "4554" @@ -13205,29 +12815,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea72efdd-1b8d-457c-a1f3-7ce50ad93a63-2020-05-02 05:21:30Z-Ps" + "d6a6039f-fa49-4a82-8613-3acb88e09388" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393290820)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998090820)\\/\",\"ClientRequestId\":\"ea72efdd-1b8d-457c-a1f3-7ce50ad93a63-2020-05-02 05:21:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3x9Chji4UXmCPn+9NiUFMV1en7xviDJDY1smAx9n3sk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725182341)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329982341)\\/\",\"ClientRequestId\":\"dc4ea8aa-7484-4287-a979-fd3a84770dc2-2021-04-18 06:53:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fVQqf/lnqjNYJTgOUhw17m118kqQyvfaMxQB5jqTk6s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13237,36 +12847,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11885" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "65cb2d8f-61e0-47e5-960f-a55aedcf7ffb" + "8e1bb81a-43d0-4fd0-83ee-6d464b0b5c1b" ], "x-ms-client-request-id": [ - "ea72efdd-1b8d-457c-a1f3-7ce50ad93a63-2020-05-02 05:21:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11861" + "d6a6039f-fa49-4a82-8613-3acb88e09388" ], "x-ms-correlation-request-id": [ - "65cb2d8f-61e0-47e5-960f-a55aedcf7ffb" + "8e1bb81a-43d0-4fd0-83ee-6d464b0b5c1b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052130Z:65cb2d8f-61e0-47e5-960f-a55aedcf7ffb" + "CENTRALUSEUAP:20210418T065302Z:8e1bb81a-43d0-4fd0-83ee-6d464b0b5c1b" ], "Date": [ - "Sat, 02 May 2020 05:21:30 GMT" + "Sun, 18 Apr 2021 06:53:01 GMT" ], "Content-Length": [ "4554" @@ -13278,29 +12885,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b08fb973-3d48-4845-9dcb-bf6e3ee18e41-2020-05-02 05:21:41Z-Ps" + "e4a7ad76-da15-40f7-a91e-979ed2232b44" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393301117)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998101117)\\/\",\"ClientRequestId\":\"b08fb973-3d48-4845-9dcb-bf6e3ee18e41-2020-05-02 05:21:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+9w8wKEa17u39vkNie9J0jaXAV6rBYDbv3FM3HzQkN8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725192676)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619329992676)\\/\",\"ClientRequestId\":\"457cdd0e-87c1-4552-aca1-310c1f13a827-2021-04-18 06:53:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Cd1XRueQ1ky9cSNWMMPJ3NC1NBrnp0XbrUr+kBJreSM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13311,35 +12918,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11860" + "11884" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "dd1e89fc-7703-4581-bab9-2053433aa933" + "e97b5137-8be7-49d4-a53f-a00514eb5d15" ], "x-ms-client-request-id": [ - "b08fb973-3d48-4845-9dcb-bf6e3ee18e41-2020-05-02 05:21:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e4a7ad76-da15-40f7-a91e-979ed2232b44" ], "x-ms-correlation-request-id": [ - "dd1e89fc-7703-4581-bab9-2053433aa933" + "e97b5137-8be7-49d4-a53f-a00514eb5d15" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052141Z:dd1e89fc-7703-4581-bab9-2053433aa933" + "CENTRALUSEUAP:20210418T065312Z:e97b5137-8be7-49d4-a53f-a00514eb5d15" ], "Date": [ - "Sat, 02 May 2020 05:21:41 GMT" + "Sun, 18 Apr 2021 06:53:12 GMT" ], "Content-Length": [ "4554" @@ -13351,29 +12955,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2613480b-cf57-466b-acfe-44d9633d9ddc-2020-05-02 05:21:51Z-Ps" + "2d6d08d2-622d-4958-a039-18a80cc78fdc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393311635)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998111635)\\/\",\"ClientRequestId\":\"2613480b-cf57-466b-acfe-44d9633d9ddc-2020-05-02 05:21:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xlxrCdRbiREiZi0LhG+YM+EqfJ+TE+JV640wlXuBBkI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725202995)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330002995)\\/\",\"ClientRequestId\":\"89810237-e2ee-4177-89e4-c0f981ada1de-2021-04-18 06:53:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Uf7c2TmXgQgY7vOwb8eCZ0b0/y/WVoCfQeHgCqvD50o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13384,35 +12988,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11859" + "11883" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "07e16238-84d8-4df3-9c9c-c03377eed826" + "3021dfb5-e1da-4874-839d-56f6473ef6b4" ], "x-ms-client-request-id": [ - "2613480b-cf57-466b-acfe-44d9633d9ddc-2020-05-02 05:21:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2d6d08d2-622d-4958-a039-18a80cc78fdc" ], "x-ms-correlation-request-id": [ - "07e16238-84d8-4df3-9c9c-c03377eed826" + "3021dfb5-e1da-4874-839d-56f6473ef6b4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052151Z:07e16238-84d8-4df3-9c9c-c03377eed826" + "CENTRALUSEUAP:20210418T065323Z:3021dfb5-e1da-4874-839d-56f6473ef6b4" ], "Date": [ - "Sat, 02 May 2020 05:21:51 GMT" + "Sun, 18 Apr 2021 06:53:23 GMT" ], "Content-Length": [ "4554" @@ -13424,29 +13025,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5304dfdb-b32d-4ceb-ac3c-ca4c2ce5c8ff-2020-05-02 05:22:02Z-Ps" + "9cc01903-547a-4cf0-a750-8f2775c7f723" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393322009)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998122009)\\/\",\"ClientRequestId\":\"5304dfdb-b32d-4ceb-ac3c-ca4c2ce5c8ff-2020-05-02 05:22:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HHDXHzl2/crWP6BwpG75/8MPQvZ2p1L/ehGE4U8tQs0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725213326)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330013326)\\/\",\"ClientRequestId\":\"7c1bbe81-854d-4b20-b341-6e16416a9c8b-2021-04-18 06:53:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zIsSwPSrYtZttKSAgmZWhR/uce4tPiKDQVmPBGZUkO8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13457,35 +13058,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11858" + "11882" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e99b2001-c0ac-4c1c-8020-9821782c1b18" + "9171a1e6-a302-4770-abf1-6cbeb3f45d10" ], "x-ms-client-request-id": [ - "5304dfdb-b32d-4ceb-ac3c-ca4c2ce5c8ff-2020-05-02 05:22:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9cc01903-547a-4cf0-a750-8f2775c7f723" ], "x-ms-correlation-request-id": [ - "e99b2001-c0ac-4c1c-8020-9821782c1b18" + "9171a1e6-a302-4770-abf1-6cbeb3f45d10" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052202Z:e99b2001-c0ac-4c1c-8020-9821782c1b18" + "CENTRALUSEUAP:20210418T065333Z:9171a1e6-a302-4770-abf1-6cbeb3f45d10" ], "Date": [ - "Sat, 02 May 2020 05:22:01 GMT" + "Sun, 18 Apr 2021 06:53:32 GMT" ], "Content-Length": [ "4554" @@ -13497,29 +13095,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2fecfaa0-1dfd-4dcb-828c-07c714547ccc-2020-05-02 05:22:12Z-Ps" + "1002f456-f3a4-47a1-bb0c-fdd990dd33ac" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393332328)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998132328)\\/\",\"ClientRequestId\":\"2fecfaa0-1dfd-4dcb-828c-07c714547ccc-2020-05-02 05:22:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XHHa/pPUn04qsRIq9yvRnytkZS0z8g2lyOu1AQ590eQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725223680)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330023680)\\/\",\"ClientRequestId\":\"47094cf0-99ad-4844-bcf1-cd25fb541c3e-2021-04-18 06:53:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"q+7M4vD7rlHZ5ZTiwmsw0IFhbpjjmHgXBtHF00DkjJc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13530,35 +13128,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11857" + "11881" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "1d8d7735-485a-4c88-8863-c631213d0e99" + "995be6eb-995f-4ac7-8632-98635a71d336" ], "x-ms-client-request-id": [ - "2fecfaa0-1dfd-4dcb-828c-07c714547ccc-2020-05-02 05:22:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1002f456-f3a4-47a1-bb0c-fdd990dd33ac" ], "x-ms-correlation-request-id": [ - "1d8d7735-485a-4c88-8863-c631213d0e99" + "995be6eb-995f-4ac7-8632-98635a71d336" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052212Z:1d8d7735-485a-4c88-8863-c631213d0e99" + "CENTRALUSEUAP:20210418T065343Z:995be6eb-995f-4ac7-8632-98635a71d336" ], "Date": [ - "Sat, 02 May 2020 05:22:11 GMT" + "Sun, 18 Apr 2021 06:53:43 GMT" ], "Content-Length": [ "4554" @@ -13570,29 +13165,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f121f582-c6b1-4043-906c-a55e6236da40-2020-05-02 05:22:22Z-Ps" + "60ccd2b8-0730-4683-be04-d2b1bf8c7393" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393342651)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998142651)\\/\",\"ClientRequestId\":\"f121f582-c6b1-4043-906c-a55e6236da40-2020-05-02 05:22:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"i5HfGYCxwXKfYPD8IJHFFQ4xOnHKlfuO4XHAD5j7QZY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725234013)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330034013)\\/\",\"ClientRequestId\":\"9778c693-9dcc-476b-a7b4-3cf0bd6c5dc7-2021-04-18 06:53:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8vXgyzwe8HuNk97uCNL9lTBilbAMoRGhxtOSLlfkB5Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13603,35 +13198,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11856" + "11880" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "80244d95-703b-4620-ad8f-671b6ef5733c" + "70c27d88-7327-4b59-8de9-8b584f7c14e1" ], "x-ms-client-request-id": [ - "f121f582-c6b1-4043-906c-a55e6236da40-2020-05-02 05:22:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "60ccd2b8-0730-4683-be04-d2b1bf8c7393" ], "x-ms-correlation-request-id": [ - "80244d95-703b-4620-ad8f-671b6ef5733c" + "70c27d88-7327-4b59-8de9-8b584f7c14e1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052222Z:80244d95-703b-4620-ad8f-671b6ef5733c" + "CENTRALUSEUAP:20210418T065354Z:70c27d88-7327-4b59-8de9-8b584f7c14e1" ], "Date": [ - "Sat, 02 May 2020 05:22:22 GMT" + "Sun, 18 Apr 2021 06:53:53 GMT" ], "Content-Length": [ "4554" @@ -13643,29 +13235,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77c548d6-04e4-4f6e-8f98-a995c763ca89-2020-05-02 05:22:32Z-Ps" + "28868e00-f7ff-4eaf-8cd4-a522f21c86df" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393352992)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998152992)\\/\",\"ClientRequestId\":\"77c548d6-04e4-4f6e-8f98-a995c763ca89-2020-05-02 05:22:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dhyrnrcLd7yzTMq3mf1Qp2Xp97jxxjiAeX73mF3pALs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725244339)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330044339)\\/\",\"ClientRequestId\":\"987a241c-b429-4ebd-942f-ca421c886c89-2021-04-18 06:54:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2W82tsmUUeG6FFF4ydcI2OLWcAgMCdGPRCSIJoUVoMM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13676,35 +13268,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11855" + "11879" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0d3cea79-a0a9-4fd8-ac95-11ca29435689" + "5a42fca3-185d-446b-aadc-d551e9931bc2" ], "x-ms-client-request-id": [ - "77c548d6-04e4-4f6e-8f98-a995c763ca89-2020-05-02 05:22:32Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "28868e00-f7ff-4eaf-8cd4-a522f21c86df" ], "x-ms-correlation-request-id": [ - "0d3cea79-a0a9-4fd8-ac95-11ca29435689" + "5a42fca3-185d-446b-aadc-d551e9931bc2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052233Z:0d3cea79-a0a9-4fd8-ac95-11ca29435689" + "CENTRALUSEUAP:20210418T065404Z:5a42fca3-185d-446b-aadc-d551e9931bc2" ], "Date": [ - "Sat, 02 May 2020 05:22:32 GMT" + "Sun, 18 Apr 2021 06:54:04 GMT" ], "Content-Length": [ "4554" @@ -13716,29 +13305,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47dfeae7-1a10-4217-b1f8-eb70f2a467d5-2020-05-02 05:22:43Z-Ps" + "3c7290bc-6d1b-4d0e-8ac1-e77ffa044e15" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393363466)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998163466)\\/\",\"ClientRequestId\":\"47dfeae7-1a10-4217-b1f8-eb70f2a467d5-2020-05-02 05:22:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AjbhU1CKfPm4xV/MK3UTvJupKsvEdXVZZVe6nGQjoY0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725254674)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330054674)\\/\",\"ClientRequestId\":\"3a943867-4105-44ed-937f-0cc09a402251-2021-04-18 06:54:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"s9yUVeYePizoW8gUEV7R6wWVuO4ljKBEb5PuWcSTw3U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13748,36 +13337,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11878" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d8ad7a56-c64e-4ac7-b7c9-0898a1618201" + "7dda729d-7bbd-44d1-869a-7e0c2445c15d" ], "x-ms-client-request-id": [ - "47dfeae7-1a10-4217-b1f8-eb70f2a467d5-2020-05-02 05:22:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11854" + "3c7290bc-6d1b-4d0e-8ac1-e77ffa044e15" ], "x-ms-correlation-request-id": [ - "d8ad7a56-c64e-4ac7-b7c9-0898a1618201" + "7dda729d-7bbd-44d1-869a-7e0c2445c15d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052244Z:d8ad7a56-c64e-4ac7-b7c9-0898a1618201" + "CENTRALUSEUAP:20210418T065414Z:7dda729d-7bbd-44d1-869a-7e0c2445c15d" ], "Date": [ - "Sat, 02 May 2020 05:22:43 GMT" + "Sun, 18 Apr 2021 06:54:14 GMT" ], "Content-Length": [ "4554" @@ -13789,29 +13375,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36dead01-1d47-4be9-ae8e-914d237c7f08-2020-05-02 05:22:54Z-Ps" + "b0cfa88f-e515-4dc4-956e-c926c8eee693" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393374426)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998174426)\\/\",\"ClientRequestId\":\"36dead01-1d47-4be9-ae8e-914d237c7f08-2020-05-02 05:22:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7b5aKLmcxLGiGCatj563YkjsmC+c8yINtQLVd54kEsM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725265010)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330065010)\\/\",\"ClientRequestId\":\"b7a05aba-196a-463e-a05c-d1d189f65367-2021-04-18 06:54:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TiCDqoLuJXpF7H9UMEHbwyKR5tNtRCA1AJDCqs99eeg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13822,32 +13408,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11853" + "11877" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b01594f8-a9f7-42c1-9464-e690152603ff" + "043bedcd-0e87-4bb3-b5a0-9dcbc933d744" ], "x-ms-client-request-id": [ - "36dead01-1d47-4be9-ae8e-914d237c7f08-2020-05-02 05:22:54Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b0cfa88f-e515-4dc4-956e-c926c8eee693" ], "x-ms-correlation-request-id": [ - "b01594f8-a9f7-42c1-9464-e690152603ff" + "043bedcd-0e87-4bb3-b5a0-9dcbc933d744" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052254Z:b01594f8-a9f7-42c1-9464-e690152603ff" + "CENTRALUSEUAP:20210418T065425Z:043bedcd-0e87-4bb3-b5a0-9dcbc933d744" ], "Date": [ - "Sat, 02 May 2020 05:22:54 GMT" + "Sun, 18 Apr 2021 06:54:24 GMT" ], "Content-Length": [ "4554" @@ -13859,29 +13445,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b8d933b-a661-4844-b491-cb0a86578329-2020-05-02 05:23:04Z-Ps" + "20823aaf-f661-4731-8045-cc68ef8ad8f3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393384976)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998184976)\\/\",\"ClientRequestId\":\"5b8d933b-a661-4844-b491-cb0a86578329-2020-05-02 05:23:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SbYseHvi6gY3cqpqwE2Rrxa+c5OC90EPh/3vOsQBRXg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725275396)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330075396)\\/\",\"ClientRequestId\":\"e5b731a1-cb21-4544-8c87-a6474cec79cf-2021-04-18 06:54:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RzQArlef6j8lkLrNceV2xl/6x+9XpccQTMiiRmnaw1A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13892,32 +13478,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11852" + "11876" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4ff169d6-d810-41a8-96d1-b70905a63a6c" + "a3093e6b-0fdb-40d6-bf42-1f706ab6845b" ], "x-ms-client-request-id": [ - "5b8d933b-a661-4844-b491-cb0a86578329-2020-05-02 05:23:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "20823aaf-f661-4731-8045-cc68ef8ad8f3" ], "x-ms-correlation-request-id": [ - "4ff169d6-d810-41a8-96d1-b70905a63a6c" + "a3093e6b-0fdb-40d6-bf42-1f706ab6845b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052305Z:4ff169d6-d810-41a8-96d1-b70905a63a6c" + "CENTRALUSEUAP:20210418T065435Z:a3093e6b-0fdb-40d6-bf42-1f706ab6845b" ], "Date": [ - "Sat, 02 May 2020 05:23:04 GMT" + "Sun, 18 Apr 2021 06:54:35 GMT" ], "Content-Length": [ "4554" @@ -13929,29 +13515,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "977babdf-a52d-45a1-8478-f74c5c7bd273-2020-05-02 05:23:15Z-Ps" + "3bdd889c-a82a-422b-b871-c60e02dfa64a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393395316)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998195316)\\/\",\"ClientRequestId\":\"977babdf-a52d-45a1-8478-f74c5c7bd273-2020-05-02 05:23:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"C6ZxP83wFp2IFcUocTjgqQYig9KjZ4jDWmY8IJt3+j8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725285726)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330085726)\\/\",\"ClientRequestId\":\"975f5719-8876-4adb-b21d-e21cc4f5404d-2021-04-18 06:54:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+2qZa7Ub2tOA1kc5f3kejCu2KCHGyNyluCncGVtCmDQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -13962,32 +13548,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11851" + "11875" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "cf700099-c4d5-4926-887e-9d7eadf4d702" + "d251cd36-31c7-43cc-a869-f7019a9499e0" ], "x-ms-client-request-id": [ - "977babdf-a52d-45a1-8478-f74c5c7bd273-2020-05-02 05:23:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3bdd889c-a82a-422b-b871-c60e02dfa64a" ], "x-ms-correlation-request-id": [ - "cf700099-c4d5-4926-887e-9d7eadf4d702" + "d251cd36-31c7-43cc-a869-f7019a9499e0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052315Z:cf700099-c4d5-4926-887e-9d7eadf4d702" + "CENTRALUSEUAP:20210418T065445Z:d251cd36-31c7-43cc-a869-f7019a9499e0" ], "Date": [ - "Sat, 02 May 2020 05:23:15 GMT" + "Sun, 18 Apr 2021 06:54:45 GMT" ], "Content-Length": [ "4554" @@ -13999,29 +13585,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4062097-190b-4323-a9c9-97fa81f89799-2020-05-02 05:23:25Z-Ps" + "137af3e1-47e6-46de-938f-065e8f4cec42" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393405683)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998205683)\\/\",\"ClientRequestId\":\"f4062097-190b-4323-a9c9-97fa81f89799-2020-05-02 05:23:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+rTCZoZ8gxG7HmNgRT5fhA5E8PxIJd+WsQueReLBqYw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725296086)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330096086)\\/\",\"ClientRequestId\":\"66e0ec7a-b348-4632-9427-8157a74ba18a-2021-04-18 06:54:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fAj1SaOOYLBFbkryQ2dzeciOgxbINMFOl+GCrJEWQT8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14032,32 +13618,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" + "11874" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6b1df3e1-7748-405e-9f83-2386a83e2613" + "aaa69f2a-2673-4596-9b3d-e3ed4b31f3b0" ], "x-ms-client-request-id": [ - "f4062097-190b-4323-a9c9-97fa81f89799-2020-05-02 05:23:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "137af3e1-47e6-46de-938f-065e8f4cec42" ], "x-ms-correlation-request-id": [ - "6b1df3e1-7748-405e-9f83-2386a83e2613" + "aaa69f2a-2673-4596-9b3d-e3ed4b31f3b0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052325Z:6b1df3e1-7748-405e-9f83-2386a83e2613" + "CENTRALUSEUAP:20210418T065456Z:aaa69f2a-2673-4596-9b3d-e3ed4b31f3b0" ], "Date": [ - "Sat, 02 May 2020 05:23:25 GMT" + "Sun, 18 Apr 2021 06:54:55 GMT" ], "Content-Length": [ "4554" @@ -14069,29 +13655,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bd167075-9573-4485-8356-635676e4fc2e-2020-05-02 05:23:35Z-Ps" + "0e1ec3bb-d6aa-48d3-9f1c-a6218ef39927" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393415993)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998215993)\\/\",\"ClientRequestId\":\"bd167075-9573-4485-8356-635676e4fc2e-2020-05-02 05:23:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XKXUFINLpUqszgvfwukq2bv4b7DoAfBl+GSJoBFc0PI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725306418)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330106418)\\/\",\"ClientRequestId\":\"965a0e8c-10a6-499a-bef3-37f39f5a207f-2021-04-18 06:55:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TCwY/0OzbYek6k5tbwWdk+8vFIlRTY1rp6d1JfDdrvg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14102,32 +13688,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11849" + "11873" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "581952d8-27fd-4c49-9473-451afc1c7380" + "cb7636f5-caa3-450e-b6b5-1efe2ffce92e" ], "x-ms-client-request-id": [ - "bd167075-9573-4485-8356-635676e4fc2e-2020-05-02 05:23:35Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0e1ec3bb-d6aa-48d3-9f1c-a6218ef39927" ], "x-ms-correlation-request-id": [ - "581952d8-27fd-4c49-9473-451afc1c7380" + "cb7636f5-caa3-450e-b6b5-1efe2ffce92e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052336Z:581952d8-27fd-4c49-9473-451afc1c7380" + "CENTRALUSEUAP:20210418T065506Z:cb7636f5-caa3-450e-b6b5-1efe2ffce92e" ], "Date": [ - "Sat, 02 May 2020 05:23:35 GMT" + "Sun, 18 Apr 2021 06:55:06 GMT" ], "Content-Length": [ "4554" @@ -14139,29 +13725,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "75557c72-1c7e-4be1-8b21-fc0703846e6f-2020-05-02 05:23:46Z-Ps" + "60134770-8731-4901-bbc9-e514a78b6369" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393426329)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998226329)\\/\",\"ClientRequestId\":\"75557c72-1c7e-4be1-8b21-fc0703846e6f-2020-05-02 05:23:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qCu+7IayjiaNznFX01WtDXh3npI5OkuNGj2tVgmPlWs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725316760)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330116760)\\/\",\"ClientRequestId\":\"60c98ed5-8a89-40c2-b1d9-76c55ab5ca78-2021-04-18 06:55:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HNQA8ONVmj2qQ+PMWugopguQDHjrCodd5gpjcO4XBNg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14172,32 +13758,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11848" + "11872" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "46e8b7af-f26b-48d9-bb4b-f28388e43ea5" + "23c6e361-baaa-4183-bf9c-369eae5a40e6" ], "x-ms-client-request-id": [ - "75557c72-1c7e-4be1-8b21-fc0703846e6f-2020-05-02 05:23:46Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "60134770-8731-4901-bbc9-e514a78b6369" ], "x-ms-correlation-request-id": [ - "46e8b7af-f26b-48d9-bb4b-f28388e43ea5" + "23c6e361-baaa-4183-bf9c-369eae5a40e6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052346Z:46e8b7af-f26b-48d9-bb4b-f28388e43ea5" + "CENTRALUSEUAP:20210418T065516Z:23c6e361-baaa-4183-bf9c-369eae5a40e6" ], "Date": [ - "Sat, 02 May 2020 05:23:46 GMT" + "Sun, 18 Apr 2021 06:55:16 GMT" ], "Content-Length": [ "4554" @@ -14209,29 +13795,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4ad79b6-6be0-471f-aba8-3d832c72b7dd-2020-05-02 05:23:56Z-Ps" + "932ab83a-9844-4e21-8084-99e7f9a0c0d6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393436669)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998236669)\\/\",\"ClientRequestId\":\"d4ad79b6-6be0-471f-aba8-3d832c72b7dd-2020-05-02 05:23:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lmplgx3+W6jnsoakpwTbfxk2MeOhG9eGoRFIx4U4iYY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725327116)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330127116)\\/\",\"ClientRequestId\":\"33d5a1ba-7dfc-402a-b4ea-8d9d03a97746-2021-04-18 06:55:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cdfpfg6jyI/gV3vnWSiJjIVzoVW24oYd/vUurTFAZ6g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14241,33 +13827,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11871" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "08a4aa9f-6f77-4f52-bc57-830420105e5e" + "7899d93c-5c71-43d2-92d9-5c58934a5911" ], "x-ms-client-request-id": [ - "d4ad79b6-6be0-471f-aba8-3d832c72b7dd-2020-05-02 05:23:56Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11847" + "932ab83a-9844-4e21-8084-99e7f9a0c0d6" ], "x-ms-correlation-request-id": [ - "08a4aa9f-6f77-4f52-bc57-830420105e5e" + "7899d93c-5c71-43d2-92d9-5c58934a5911" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052356Z:08a4aa9f-6f77-4f52-bc57-830420105e5e" + "CENTRALUSEUAP:20210418T065527Z:7899d93c-5c71-43d2-92d9-5c58934a5911" ], "Date": [ - "Sat, 02 May 2020 05:23:56 GMT" + "Sun, 18 Apr 2021 06:55:27 GMT" ], "Content-Length": [ "4554" @@ -14279,29 +13865,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "770ee99c-8561-4d2a-9140-e2c8958dccbd-2020-05-02 05:24:07Z-Ps" + "cb5bfa31-f700-4df0-ba31-430211e69ee7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393447014)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998247014)\\/\",\"ClientRequestId\":\"770ee99c-8561-4d2a-9140-e2c8958dccbd-2020-05-02 05:24:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cJiwGgh3j7VVgoSuThk508iqScj2SapUAWRyNK59Ur4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725337446)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330137446)\\/\",\"ClientRequestId\":\"814d5625-cf95-4351-b3ba-a1afa5742d45-2021-04-18 06:55:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AJ7aruQSkxjRpY4M/MSBLmpDwkE/rGJ1fd945f6Zif0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14312,35 +13898,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11846" + "11870" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b535793e-b508-41ef-8c5e-564a2d28a694" + "f1e4441b-85db-4f70-ac70-e048c3c50cd8" ], "x-ms-client-request-id": [ - "770ee99c-8561-4d2a-9140-e2c8958dccbd-2020-05-02 05:24:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "cb5bfa31-f700-4df0-ba31-430211e69ee7" ], "x-ms-correlation-request-id": [ - "b535793e-b508-41ef-8c5e-564a2d28a694" + "f1e4441b-85db-4f70-ac70-e048c3c50cd8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052407Z:b535793e-b508-41ef-8c5e-564a2d28a694" + "CENTRALUSEUAP:20210418T065537Z:f1e4441b-85db-4f70-ac70-e048c3c50cd8" ], "Date": [ - "Sat, 02 May 2020 05:24:06 GMT" + "Sun, 18 Apr 2021 06:55:36 GMT" ], "Content-Length": [ "4554" @@ -14352,29 +13935,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4a937cc-4ba7-48b3-81a5-3b5db1987bf7-2020-05-02 05:24:17Z-Ps" + "52db2585-b8fc-4fce-bc6c-4870c0ddac12" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393457601)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998257601)\\/\",\"ClientRequestId\":\"d4a937cc-4ba7-48b3-81a5-3b5db1987bf7-2020-05-02 05:24:17Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"T1zmuYrbTFENmJqRElixk6eq/oCDaBunpFsUsCt/tGQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725347806)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330147806)\\/\",\"ClientRequestId\":\"c7223509-85d4-441f-a22f-23904f4aced7-2021-04-18 06:55:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZF3moqD2g+aXaLBwRvyzOZSarU8D/rbP/rYkzmGYnB4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14385,35 +13968,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11845" + "11869" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "27053992-2371-427d-891a-23c2be483904" + "d6a8eb8a-4084-4505-a803-99de9c488916" ], "x-ms-client-request-id": [ - "d4a937cc-4ba7-48b3-81a5-3b5db1987bf7-2020-05-02 05:24:17Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "52db2585-b8fc-4fce-bc6c-4870c0ddac12" ], "x-ms-correlation-request-id": [ - "27053992-2371-427d-891a-23c2be483904" + "d6a8eb8a-4084-4505-a803-99de9c488916" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052417Z:27053992-2371-427d-891a-23c2be483904" + "CENTRALUSEUAP:20210418T065547Z:d6a8eb8a-4084-4505-a803-99de9c488916" ], "Date": [ - "Sat, 02 May 2020 05:24:17 GMT" + "Sun, 18 Apr 2021 06:55:47 GMT" ], "Content-Length": [ "4554" @@ -14425,29 +14005,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68c14e82-2319-4c7d-a4cb-3e2b17bbaf9f-2020-05-02 05:24:28Z-Ps" + "7a6e3bdd-43d6-4483-a563-0369e3c4a911" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393468001)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998268001)\\/\",\"ClientRequestId\":\"68c14e82-2319-4c7d-a4cb-3e2b17bbaf9f-2020-05-02 05:24:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eBEgS1cbhCpLgB09nKBWYZ8sStxyyPm3K9RatFjIZu4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725358140)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330158140)\\/\",\"ClientRequestId\":\"af5d83a9-c531-45f5-8bd7-9ac52f004fbd-2021-04-18 06:55:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ccGzt9Ctf6yjkj2+RswR61x8Nbr9FK1GtMAZi16eAq0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14457,36 +14037,33 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11844" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d8245b53-7729-4385-bce6-a2cb2f1bf7ec" + "b5e910ac-b39c-4561-a1d2-5ab8626b94e1" ], "x-ms-client-request-id": [ - "68c14e82-2319-4c7d-a4cb-3e2b17bbaf9f-2020-05-02 05:24:28Z-Ps" + "7a6e3bdd-43d6-4483-a563-0369e3c4a911" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11868" ], "x-ms-correlation-request-id": [ - "d8245b53-7729-4385-bce6-a2cb2f1bf7ec" + "b5e910ac-b39c-4561-a1d2-5ab8626b94e1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052428Z:d8245b53-7729-4385-bce6-a2cb2f1bf7ec" + "CENTRALUSEUAP:20210418T065558Z:b5e910ac-b39c-4561-a1d2-5ab8626b94e1" ], "Date": [ - "Sat, 02 May 2020 05:24:27 GMT" + "Sun, 18 Apr 2021 06:55:57 GMT" ], "Content-Length": [ "4554" @@ -14498,29 +14075,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9961bfe-801d-435f-9e35-10df3a3d4039-2020-05-02 05:24:38Z-Ps" + "b9657563-4f5c-424e-80c0-d96507e25179" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393478325)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998278325)\\/\",\"ClientRequestId\":\"a9961bfe-801d-435f-9e35-10df3a3d4039-2020-05-02 05:24:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Tm5979jQE+J1f+mBh0SaPfVZTbhS9PQhIwVfJohUPkY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725368477)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330168477)\\/\",\"ClientRequestId\":\"2efefa4f-cfd7-423b-9426-af181c177c65-2021-04-18 06:56:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3R9tGNBm9CI5EUBqwxuPZhamtj+NkoYzxKUDDq1SOO8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14531,35 +14108,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11843" + "11867" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5a96e854-e342-43e5-8217-a0ef8ada4ca3" + "37f8a4da-4009-4689-804c-3bbb182dd33c" ], "x-ms-client-request-id": [ - "a9961bfe-801d-435f-9e35-10df3a3d4039-2020-05-02 05:24:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b9657563-4f5c-424e-80c0-d96507e25179" ], "x-ms-correlation-request-id": [ - "5a96e854-e342-43e5-8217-a0ef8ada4ca3" + "37f8a4da-4009-4689-804c-3bbb182dd33c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052438Z:5a96e854-e342-43e5-8217-a0ef8ada4ca3" + "CENTRALUSEUAP:20210418T065608Z:37f8a4da-4009-4689-804c-3bbb182dd33c" ], "Date": [ - "Sat, 02 May 2020 05:24:37 GMT" + "Sun, 18 Apr 2021 06:56:08 GMT" ], "Content-Length": [ "4554" @@ -14571,29 +14145,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d3bf9390-351e-4126-a93b-4d9e9c17f763-2020-05-02 05:24:48Z-Ps" + "a1849090-6d2c-410d-b371-bc88b5dbc547" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393488675)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998288675)\\/\",\"ClientRequestId\":\"d3bf9390-351e-4126-a93b-4d9e9c17f763-2020-05-02 05:24:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"s6yjrgWW+9d5NYdQm3Yy3kcr+Ucc+ei9li4YCrADTy8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725379020)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330179020)\\/\",\"ClientRequestId\":\"db4a8d09-8188-473e-8a70-a247f5b7db7e-2021-04-18 06:56:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ChHxyEKh0KICjB+asV/yvd9mD3aL9YYaTlufAzX4Ips=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14604,35 +14178,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11842" + "11866" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "447ed09c-2e8b-4717-a2bb-b048410f2d9f" + "ee4e6bd2-fb60-4467-9b41-0a4f354694e6" ], "x-ms-client-request-id": [ - "d3bf9390-351e-4126-a93b-4d9e9c17f763-2020-05-02 05:24:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a1849090-6d2c-410d-b371-bc88b5dbc547" ], "x-ms-correlation-request-id": [ - "447ed09c-2e8b-4717-a2bb-b048410f2d9f" + "ee4e6bd2-fb60-4467-9b41-0a4f354694e6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052448Z:447ed09c-2e8b-4717-a2bb-b048410f2d9f" + "CENTRALUSEUAP:20210418T065619Z:ee4e6bd2-fb60-4467-9b41-0a4f354694e6" ], "Date": [ - "Sat, 02 May 2020 05:24:47 GMT" + "Sun, 18 Apr 2021 06:56:18 GMT" ], "Content-Length": [ "4554" @@ -14644,29 +14215,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a92bb6d-ff73-456f-9a14-a6d68da20e02-2020-05-02 05:24:58Z-Ps" + "636728f7-1f3b-4918-8123-ee7699a0f6db" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393498999)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998298999)\\/\",\"ClientRequestId\":\"7a92bb6d-ff73-456f-9a14-a6d68da20e02-2020-05-02 05:24:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/88q0rTxJ4aZeZisByqS6t0qeljgOev/Wy6JnWINxR8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725389372)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330189372)\\/\",\"ClientRequestId\":\"4356f8f1-98cb-4ac0-be5f-f1f8e9e9e689-2021-04-18 06:56:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+R90aiHPdLfJyPir9vR/OQLkmxyJSKkPMgkMggtuLT8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14677,35 +14248,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11841" + "11865" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c0943db7-3e88-4efb-ad80-0e89da8ed0ca" + "37108ec3-6e51-490e-b1e9-ecbdc62e47a0" ], "x-ms-client-request-id": [ - "7a92bb6d-ff73-456f-9a14-a6d68da20e02-2020-05-02 05:24:58Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "636728f7-1f3b-4918-8123-ee7699a0f6db" ], "x-ms-correlation-request-id": [ - "c0943db7-3e88-4efb-ad80-0e89da8ed0ca" + "37108ec3-6e51-490e-b1e9-ecbdc62e47a0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052459Z:c0943db7-3e88-4efb-ad80-0e89da8ed0ca" + "CENTRALUSEUAP:20210418T065629Z:37108ec3-6e51-490e-b1e9-ecbdc62e47a0" ], "Date": [ - "Sat, 02 May 2020 05:24:58 GMT" + "Sun, 18 Apr 2021 06:56:29 GMT" ], "Content-Length": [ "4554" @@ -14717,29 +14285,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e793b665-ad61-41c1-8837-817bb4a1e0a1-2020-05-02 05:25:09Z-Ps" + "81424321-a4fc-40d3-93d2-5673a8cff0c3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393509339)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998309339)\\/\",\"ClientRequestId\":\"e793b665-ad61-41c1-8837-817bb4a1e0a1-2020-05-02 05:25:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tADX7ewb1TZmaH/nrn1UNkbD/tn1n6tHC62mDaNNNss=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725399702)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330199702)\\/\",\"ClientRequestId\":\"4ff6b095-20a5-418e-af85-50a46b47f187-2021-04-18 06:56:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"dUQ8cgjxVTcKRI99Kith1Tn3UZxpEvasfrBt8xImiVM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14749,36 +14317,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11864" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "847fc24e-e6f0-4dc4-9ffa-132f0080d8fc" + "82ead1c4-6318-48ed-b481-a3ece30fefd1" ], "x-ms-client-request-id": [ - "e793b665-ad61-41c1-8837-817bb4a1e0a1-2020-05-02 05:25:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11840" + "81424321-a4fc-40d3-93d2-5673a8cff0c3" ], "x-ms-correlation-request-id": [ - "847fc24e-e6f0-4dc4-9ffa-132f0080d8fc" + "82ead1c4-6318-48ed-b481-a3ece30fefd1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052509Z:847fc24e-e6f0-4dc4-9ffa-132f0080d8fc" + "CENTRALUSEUAP:20210418T065639Z:82ead1c4-6318-48ed-b481-a3ece30fefd1" ], "Date": [ - "Sat, 02 May 2020 05:25:09 GMT" + "Sun, 18 Apr 2021 06:56:39 GMT" ], "Content-Length": [ "4554" @@ -14790,29 +14355,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6079742e-8963-43d5-bfad-96c69ad0e990-2020-05-02 05:25:19Z-Ps" + "bc91f45b-989d-4b80-84b7-2cdffe46a4de" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393519665)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998319665)\\/\",\"ClientRequestId\":\"6079742e-8963-43d5-bfad-96c69ad0e990-2020-05-02 05:25:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jKbBpdrPFfu8FW28YyMFENlrzAQdR0N4TXOtmqzMRgY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725410030)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330210030)\\/\",\"ClientRequestId\":\"000f4af6-e7e3-4136-bcfc-5e6d2482f4b0-2021-04-18 06:56:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PkmOkXsjYckK0Mlqo94IJxWeqxZdX9zTe2x97UsBrck=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14823,32 +14388,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11839" + "11863" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "508be2ab-8dba-487e-93d6-66e21b5088e8" + "1e246f52-aad2-44c4-a7e8-3d36a8b9ad71" ], "x-ms-client-request-id": [ - "6079742e-8963-43d5-bfad-96c69ad0e990-2020-05-02 05:25:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bc91f45b-989d-4b80-84b7-2cdffe46a4de" ], "x-ms-correlation-request-id": [ - "508be2ab-8dba-487e-93d6-66e21b5088e8" + "1e246f52-aad2-44c4-a7e8-3d36a8b9ad71" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052520Z:508be2ab-8dba-487e-93d6-66e21b5088e8" + "CENTRALUSEUAP:20210418T065650Z:1e246f52-aad2-44c4-a7e8-3d36a8b9ad71" ], "Date": [ - "Sat, 02 May 2020 05:25:19 GMT" + "Sun, 18 Apr 2021 06:56:50 GMT" ], "Content-Length": [ "4554" @@ -14860,29 +14425,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6d43d4c-bf0f-4bb2-a0b9-ad15915c7147-2020-05-02 05:25:30Z-Ps" + "100e5d56-0ea3-4d42-9768-9031f65fcfb2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393530272)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998330272)\\/\",\"ClientRequestId\":\"b6d43d4c-bf0f-4bb2-a0b9-ad15915c7147-2020-05-02 05:25:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NGrxSvFDcCsDG/twkQj1PKBl8IPX28GB6hMBEcyFUys=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725420370)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330220370)\\/\",\"ClientRequestId\":\"1cbcf447-7d5d-49fc-b722-2d2dd3ff1115-2021-04-18 06:57:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"buokoUH08S766AYpl+CXtdifeijZf3jJ3AB8ODkRSK4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14893,32 +14458,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11838" + "11862" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bef53f2a-e543-4cad-88aa-99c6acdf7800" + "1f81e987-32db-4938-9941-5ac256adb3e7" ], "x-ms-client-request-id": [ - "b6d43d4c-bf0f-4bb2-a0b9-ad15915c7147-2020-05-02 05:25:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "100e5d56-0ea3-4d42-9768-9031f65fcfb2" ], "x-ms-correlation-request-id": [ - "bef53f2a-e543-4cad-88aa-99c6acdf7800" + "1f81e987-32db-4938-9941-5ac256adb3e7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052530Z:bef53f2a-e543-4cad-88aa-99c6acdf7800" + "CENTRALUSEUAP:20210418T065700Z:1f81e987-32db-4938-9941-5ac256adb3e7" ], "Date": [ - "Sat, 02 May 2020 05:25:30 GMT" + "Sun, 18 Apr 2021 06:57:00 GMT" ], "Content-Length": [ "4554" @@ -14930,29 +14495,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6804ff4b-1fe9-4d1a-bc51-5163f44857f5-2020-05-02 05:25:40Z-Ps" + "a856d480-76f6-4ffa-b5f9-c89a2de00424" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393540607)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998340607)\\/\",\"ClientRequestId\":\"6804ff4b-1fe9-4d1a-bc51-5163f44857f5-2020-05-02 05:25:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2jtDKnKlqnbjuMAMKgayTqmnBa50P6PMgaqWzBfh/m8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725430696)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330230696)\\/\",\"ClientRequestId\":\"6da1a508-95b9-427c-b799-0192d32fd674-2021-04-18 06:57:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eolqGI+NbhCdDxl0x7C1i9VpR8vzVaHpikpibrOi3jc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -14963,32 +14528,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11837" + "11861" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "079468c1-dec1-4e73-9422-6183b24c35e1" + "c84bd61f-2c4a-492d-8312-804174bc29c9" ], "x-ms-client-request-id": [ - "6804ff4b-1fe9-4d1a-bc51-5163f44857f5-2020-05-02 05:25:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a856d480-76f6-4ffa-b5f9-c89a2de00424" ], "x-ms-correlation-request-id": [ - "079468c1-dec1-4e73-9422-6183b24c35e1" + "c84bd61f-2c4a-492d-8312-804174bc29c9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052540Z:079468c1-dec1-4e73-9422-6183b24c35e1" + "CENTRALUSEUAP:20210418T065710Z:c84bd61f-2c4a-492d-8312-804174bc29c9" ], "Date": [ - "Sat, 02 May 2020 05:25:40 GMT" + "Sun, 18 Apr 2021 06:57:10 GMT" ], "Content-Length": [ "4554" @@ -15000,29 +14565,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6cca6dd2-5ee7-4b9d-93e1-63e697cd2925-2020-05-02 05:25:50Z-Ps" + "e185c9a0-467d-4f86-8ecc-74a1a9ef63f7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393550977)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998350977)\\/\",\"ClientRequestId\":\"6cca6dd2-5ee7-4b9d-93e1-63e697cd2925-2020-05-02 05:25:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3Qb2GFV/9JF2ESET1RsHh6bP5Yuf5rVr12L3AUVXcBU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725441064)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330241064)\\/\",\"ClientRequestId\":\"ef391b12-c7fa-4cf9-9c41-f83993552472-2021-04-18 06:57:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TZqm91ltL103pWPx05OzlnEvAbCAnPkSFL3ZI3+f4qo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15033,32 +14598,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11836" + "11860" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "36815e5c-fd20-45b4-b349-91294eed89a0" + "301cd3e4-d2b8-42a8-ad20-db3069372d30" ], "x-ms-client-request-id": [ - "6cca6dd2-5ee7-4b9d-93e1-63e697cd2925-2020-05-02 05:25:50Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e185c9a0-467d-4f86-8ecc-74a1a9ef63f7" ], "x-ms-correlation-request-id": [ - "36815e5c-fd20-45b4-b349-91294eed89a0" + "301cd3e4-d2b8-42a8-ad20-db3069372d30" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052551Z:36815e5c-fd20-45b4-b349-91294eed89a0" + "CENTRALUSEUAP:20210418T065721Z:301cd3e4-d2b8-42a8-ad20-db3069372d30" ], "Date": [ - "Sat, 02 May 2020 05:25:50 GMT" + "Sun, 18 Apr 2021 06:57:20 GMT" ], "Content-Length": [ "4554" @@ -15070,29 +14635,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41271dbb-bf77-4970-a082-08f80e03f2ee-2020-05-02 05:26:01Z-Ps" + "071e122a-a5e7-4247-83e5-4fe41ac6cc21" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393561394)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998361394)\\/\",\"ClientRequestId\":\"41271dbb-bf77-4970-a082-08f80e03f2ee-2020-05-02 05:26:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nlVzMskavNk55nPiJFIYAqJE1tx7RV8yPJUlJxIz/1E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725451402)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330251402)\\/\",\"ClientRequestId\":\"f699e636-c41b-41bd-af89-b0430cef8f0d-2021-04-18 06:57:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"raskFkfCEmbOpRp0jKFNiyNSo2oBMBWuCywrGWnH6tY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15103,32 +14668,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11835" + "11859" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "79b8fa53-bb56-48ff-9d9e-20cc7ecc7225" + "ad23abff-e37e-45b2-a035-893f587504ec" ], "x-ms-client-request-id": [ - "41271dbb-bf77-4970-a082-08f80e03f2ee-2020-05-02 05:26:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "071e122a-a5e7-4247-83e5-4fe41ac6cc21" ], "x-ms-correlation-request-id": [ - "79b8fa53-bb56-48ff-9d9e-20cc7ecc7225" + "ad23abff-e37e-45b2-a035-893f587504ec" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052601Z:79b8fa53-bb56-48ff-9d9e-20cc7ecc7225" + "CENTRALUSEUAP:20210418T065731Z:ad23abff-e37e-45b2-a035-893f587504ec" ], "Date": [ - "Sat, 02 May 2020 05:26:01 GMT" + "Sun, 18 Apr 2021 06:57:31 GMT" ], "Content-Length": [ "4554" @@ -15140,29 +14705,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d4b8cfc-a5ca-49d7-8202-190f8d705c20-2020-05-02 05:26:11Z-Ps" + "9210c94f-4a97-4232-855f-abad2a84d45e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393571703)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998371703)\\/\",\"ClientRequestId\":\"9d4b8cfc-a5ca-49d7-8202-190f8d705c20-2020-05-02 05:26:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mQ2LzQNPqNXULKBXzZ7RxVCvxwApBixZ4eUbFvJf8Oo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725461800)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330261800)\\/\",\"ClientRequestId\":\"3586ef29-6745-4a60-9917-12be3709b82c-2021-04-18 06:57:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IptFu+ZgPmZc9NjanFDew3BrYJ3iFh1ChoPwLXq2piI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15173,32 +14738,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11834" + "11858" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2183675e-a31e-48fe-aa81-4ddc65a8b2a0" + "6311f7d1-3673-45f1-b1f9-5ec28d60e969" ], "x-ms-client-request-id": [ - "9d4b8cfc-a5ca-49d7-8202-190f8d705c20-2020-05-02 05:26:11Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9210c94f-4a97-4232-855f-abad2a84d45e" ], "x-ms-correlation-request-id": [ - "2183675e-a31e-48fe-aa81-4ddc65a8b2a0" + "6311f7d1-3673-45f1-b1f9-5ec28d60e969" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052611Z:2183675e-a31e-48fe-aa81-4ddc65a8b2a0" + "CENTRALUSEUAP:20210418T065741Z:6311f7d1-3673-45f1-b1f9-5ec28d60e969" ], "Date": [ - "Sat, 02 May 2020 05:26:11 GMT" + "Sun, 18 Apr 2021 06:57:41 GMT" ], "Content-Length": [ "4554" @@ -15210,29 +14775,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a78851f-16e1-47e7-ad45-93bc2f541df7-2020-05-02 05:26:22Z-Ps" + "ea05077d-f3ee-46e6-8b94-7a2fdfb41d36" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393582033)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998382033)\\/\",\"ClientRequestId\":\"5a78851f-16e1-47e7-ad45-93bc2f541df7-2020-05-02 05:26:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"81cMifx+SIWoT+okizzClEtWPfgr9dzxmQHRzdBANIY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725472131)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330272131)\\/\",\"ClientRequestId\":\"f41e8955-68ab-4145-bb1e-f49c6920de4b-2021-04-18 06:57:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MTHtSVhnyd8sffrjcet+4uOzk0pHoh2OVbLYtYBnNRU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15242,33 +14807,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11857" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "415fd78b-20ac-4e71-a191-61571dc1d198" + "c88d563f-c399-47d5-9841-f90b4e63bc8f" ], "x-ms-client-request-id": [ - "5a78851f-16e1-47e7-ad45-93bc2f541df7-2020-05-02 05:26:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11833" + "ea05077d-f3ee-46e6-8b94-7a2fdfb41d36" ], "x-ms-correlation-request-id": [ - "415fd78b-20ac-4e71-a191-61571dc1d198" + "c88d563f-c399-47d5-9841-f90b4e63bc8f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052622Z:415fd78b-20ac-4e71-a191-61571dc1d198" + "CENTRALUSEUAP:20210418T065752Z:c88d563f-c399-47d5-9841-f90b4e63bc8f" ], "Date": [ - "Sat, 02 May 2020 05:26:21 GMT" + "Sun, 18 Apr 2021 06:57:52 GMT" ], "Content-Length": [ "4554" @@ -15280,29 +14845,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "22ea5e71-e5a3-4c0b-a48e-a798df80aba5-2020-05-02 05:26:32Z-Ps" + "97697322-1d4b-47f8-94b5-e355032813cd" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393592345)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998392345)\\/\",\"ClientRequestId\":\"22ea5e71-e5a3-4c0b-a48e-a798df80aba5-2020-05-02 05:26:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qOiKlZ+u44L73/qcV6CcuLqanVg8KF7vfwZXhmMQYlc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725482462)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330282462)\\/\",\"ClientRequestId\":\"9af9579d-2662-4cd7-b811-ec619b99cf71-2021-04-18 06:58:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HXPVN45pQww1y82OlwC8V5MHUeYhpi9+K2PLzlLAchs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15313,35 +14878,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11832" + "11856" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7595b9f3-317e-4575-a08f-73db7cad43cb" + "077d407d-b80d-4daf-9a4c-52052971bec4" ], "x-ms-client-request-id": [ - "22ea5e71-e5a3-4c0b-a48e-a798df80aba5-2020-05-02 05:26:32Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "97697322-1d4b-47f8-94b5-e355032813cd" ], "x-ms-correlation-request-id": [ - "7595b9f3-317e-4575-a08f-73db7cad43cb" + "077d407d-b80d-4daf-9a4c-52052971bec4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052632Z:7595b9f3-317e-4575-a08f-73db7cad43cb" + "CENTRALUSEUAP:20210418T065802Z:077d407d-b80d-4daf-9a4c-52052971bec4" ], "Date": [ - "Sat, 02 May 2020 05:26:32 GMT" + "Sun, 18 Apr 2021 06:58:02 GMT" ], "Content-Length": [ "4554" @@ -15353,29 +14915,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc63530-6239-41fe-965d-1de40baa5334-2020-05-02 05:26:42Z-Ps" + "92efc189-6bd3-47f1-a5e4-47dc361bb2b4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393602911)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998402911)\\/\",\"ClientRequestId\":\"cfc63530-6239-41fe-965d-1de40baa5334-2020-05-02 05:26:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"csYI8LjU6QIO8+DKugYKhF3YYo1gPxn6sMfP+tmlNew=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725492785)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330292785)\\/\",\"ClientRequestId\":\"56a8e9be-0120-422a-8442-36389bcf09e5-2021-04-18 06:58:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TxPItTQJu7f+lVpBs/1XKKisf1h3BYCzLi6TRjk8qgw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15386,35 +14948,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11831" + "11855" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2b2601d3-60bf-45db-8c5c-2fad0205dc8e" + "256f1343-d218-4fbf-b7e3-b73415450b55" ], "x-ms-client-request-id": [ - "cfc63530-6239-41fe-965d-1de40baa5334-2020-05-02 05:26:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "92efc189-6bd3-47f1-a5e4-47dc361bb2b4" ], "x-ms-correlation-request-id": [ - "2b2601d3-60bf-45db-8c5c-2fad0205dc8e" + "256f1343-d218-4fbf-b7e3-b73415450b55" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052643Z:2b2601d3-60bf-45db-8c5c-2fad0205dc8e" + "CENTRALUSEUAP:20210418T065812Z:256f1343-d218-4fbf-b7e3-b73415450b55" ], "Date": [ - "Sat, 02 May 2020 05:26:42 GMT" + "Sun, 18 Apr 2021 06:58:12 GMT" ], "Content-Length": [ "4554" @@ -15426,29 +14985,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34aeb834-33fe-4303-a335-06b586989776-2020-05-02 05:26:53Z-Ps" + "83fc7d3a-0754-4c02-b6b5-a63064936591" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393613226)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998413226)\\/\",\"ClientRequestId\":\"34aeb834-33fe-4303-a335-06b586989776-2020-05-02 05:26:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Gd2j4yORlAMgnjgkrp8oyIW3tqplb4Xx25/9j7YKt7M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725503106)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330303106)\\/\",\"ClientRequestId\":\"6fb59079-440b-4d6a-b45f-dc43d42b05b0-2021-04-18 06:58:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7OFOmaJDaGdFfjiUtWIzNZUkt5Pp5eeAkcc9+DTqqAs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15459,35 +15018,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11830" + "11854" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c912811d-79aa-41b3-86a5-224c0a5b9a0e" + "c39d39f4-8e61-4f41-b5b7-73ddd1f9774a" ], "x-ms-client-request-id": [ - "34aeb834-33fe-4303-a335-06b586989776-2020-05-02 05:26:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "83fc7d3a-0754-4c02-b6b5-a63064936591" ], "x-ms-correlation-request-id": [ - "c912811d-79aa-41b3-86a5-224c0a5b9a0e" + "c39d39f4-8e61-4f41-b5b7-73ddd1f9774a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052653Z:c912811d-79aa-41b3-86a5-224c0a5b9a0e" + "CENTRALUSEUAP:20210418T065823Z:c39d39f4-8e61-4f41-b5b7-73ddd1f9774a" ], "Date": [ - "Sat, 02 May 2020 05:26:52 GMT" + "Sun, 18 Apr 2021 06:58:22 GMT" ], "Content-Length": [ "4554" @@ -15499,29 +15055,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42c6273c-b6d5-4c4f-bab8-ebc304497a6f-2020-05-02 05:27:03Z-Ps" + "1a3a4e93-a393-4051-a03d-53b4d19502a6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393623524)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998423524)\\/\",\"ClientRequestId\":\"42c6273c-b6d5-4c4f-bab8-ebc304497a6f-2020-05-02 05:27:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qDIU7GXE/FfQ3d5uqe9UrI92hhtRNf/7gIb4YKkEIuA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725513436)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330313436)\\/\",\"ClientRequestId\":\"d21a66c1-117c-468e-8246-33646897810c-2021-04-18 06:58:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LVKR04nCDMthUgtUZwFoaFFdqBwcNOlqHAzumDb9xiE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15532,35 +15088,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11829" + "11853" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "24f1d83b-09cf-40da-abd4-7c08b46388e0" + "121c65e2-3a31-45a9-8c91-e14e4c0931d9" ], "x-ms-client-request-id": [ - "42c6273c-b6d5-4c4f-bab8-ebc304497a6f-2020-05-02 05:27:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1a3a4e93-a393-4051-a03d-53b4d19502a6" ], "x-ms-correlation-request-id": [ - "24f1d83b-09cf-40da-abd4-7c08b46388e0" + "121c65e2-3a31-45a9-8c91-e14e4c0931d9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052703Z:24f1d83b-09cf-40da-abd4-7c08b46388e0" + "CENTRALUSEUAP:20210418T065833Z:121c65e2-3a31-45a9-8c91-e14e4c0931d9" ], "Date": [ - "Sat, 02 May 2020 05:27:03 GMT" + "Sun, 18 Apr 2021 06:58:33 GMT" ], "Content-Length": [ "4554" @@ -15572,29 +15125,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "406b75f9-7c2e-41d8-8134-eef2bc42d308-2020-05-02 05:27:13Z-Ps" + "806f047b-8962-47a1-829f-09074b052150" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393633944)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998433944)\\/\",\"ClientRequestId\":\"406b75f9-7c2e-41d8-8134-eef2bc42d308-2020-05-02 05:27:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LxRvwqB/RB3xu41pS3RLop8zhTa4FCXMWEaDM5V2p7w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725523762)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330323762)\\/\",\"ClientRequestId\":\"7fa0bb09-856f-4468-8922-3cd4ab366f96-2021-04-18 06:58:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iOxinpYCM/cOxcuROmbbaFHRCwJq/qQC/voQEBcfZMg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15605,35 +15158,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11828" + "11852" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a04fd3c2-e55a-4c50-9d2d-c82441c7f973" + "b600b742-878b-4033-9946-283ab6f83e57" ], "x-ms-client-request-id": [ - "406b75f9-7c2e-41d8-8134-eef2bc42d308-2020-05-02 05:27:13Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "806f047b-8962-47a1-829f-09074b052150" ], "x-ms-correlation-request-id": [ - "a04fd3c2-e55a-4c50-9d2d-c82441c7f973" + "b600b742-878b-4033-9946-283ab6f83e57" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052714Z:a04fd3c2-e55a-4c50-9d2d-c82441c7f973" + "CENTRALUSEUAP:20210418T065843Z:b600b742-878b-4033-9946-283ab6f83e57" ], "Date": [ - "Sat, 02 May 2020 05:27:13 GMT" + "Sun, 18 Apr 2021 06:58:43 GMT" ], "Content-Length": [ "4554" @@ -15645,29 +15195,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f8e8000-1c7e-46bb-a61c-e652c8d82ebb-2020-05-02 05:27:24Z-Ps" + "a8c5b314-9350-4968-955f-a825e4a46bfe" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393644269)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998444269)\\/\",\"ClientRequestId\":\"3f8e8000-1c7e-46bb-a61c-e652c8d82ebb-2020-05-02 05:27:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rZceq5Mo7L1JXmcY84tJNbl6eSnsopBZa67G0YPIy3M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725534090)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330334090)\\/\",\"ClientRequestId\":\"5617dedc-e5de-45ea-a98f-04843f57e00a-2021-04-18 06:58:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"aSssAkXRzNL7FScvjS7apPCO0NzBmOLUuxQROtUt0kw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15678,35 +15228,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11827" + "11851" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f640df87-d67b-4548-af01-59cc42162e04" + "ccc2216d-2953-4125-966c-b526c5657757" ], "x-ms-client-request-id": [ - "3f8e8000-1c7e-46bb-a61c-e652c8d82ebb-2020-05-02 05:27:24Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a8c5b314-9350-4968-955f-a825e4a46bfe" ], "x-ms-correlation-request-id": [ - "f640df87-d67b-4548-af01-59cc42162e04" + "ccc2216d-2953-4125-966c-b526c5657757" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052724Z:f640df87-d67b-4548-af01-59cc42162e04" + "CENTRALUSEUAP:20210418T065854Z:ccc2216d-2953-4125-966c-b526c5657757" ], "Date": [ - "Sat, 02 May 2020 05:27:23 GMT" + "Sun, 18 Apr 2021 06:58:54 GMT" ], "Content-Length": [ "4554" @@ -15718,29 +15265,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c99534e-bac9-434c-91ed-68fb6b7bd2bc-2020-05-02 05:27:34Z-Ps" + "071a5529-a7fb-4db4-bbbb-9fb926fa300b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393654587)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998454587)\\/\",\"ClientRequestId\":\"0c99534e-bac9-434c-91ed-68fb6b7bd2bc-2020-05-02 05:27:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wvqeyjPv4n0I3BbHbT7dboyxxki/FzIcRXe6IppQ4eg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725544435)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330344435)\\/\",\"ClientRequestId\":\"df17355b-81a6-4689-baba-82cba1675795-2021-04-18 06:59:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SKBVQYGeNsr38Jdoq6BRSquSOVXf/0sIEPyvyl+i9ys=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15750,36 +15297,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11850" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ebdd79f9-dea0-4276-a947-07e615d4b45f" + "f2ba1db8-7330-48a9-979c-922e475cabed" ], "x-ms-client-request-id": [ - "0c99534e-bac9-434c-91ed-68fb6b7bd2bc-2020-05-02 05:27:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11826" + "071a5529-a7fb-4db4-bbbb-9fb926fa300b" ], "x-ms-correlation-request-id": [ - "ebdd79f9-dea0-4276-a947-07e615d4b45f" + "f2ba1db8-7330-48a9-979c-922e475cabed" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052734Z:ebdd79f9-dea0-4276-a947-07e615d4b45f" + "CENTRALUSEUAP:20210418T065904Z:f2ba1db8-7330-48a9-979c-922e475cabed" ], "Date": [ - "Sat, 02 May 2020 05:27:34 GMT" + "Sun, 18 Apr 2021 06:59:04 GMT" ], "Content-Length": [ "4554" @@ -15791,29 +15335,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5dec6dce-2899-4cc9-b6c2-816244647676-2020-05-02 05:27:44Z-Ps" + "02f8732e-d8e4-404a-bbf1-597abab64ca2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393664909)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998464909)\\/\",\"ClientRequestId\":\"5dec6dce-2899-4cc9-b6c2-816244647676-2020-05-02 05:27:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+vahJP8+kCGxcVroOwItYdL3PRd9pE2sP78qMi8MDJo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725554762)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330354762)\\/\",\"ClientRequestId\":\"751506be-0717-4b68-bd25-3d47a4f4a317-2021-04-18 06:59:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"esqWpsTo5Sv9wr840vE4NtZnAAR1L+OPZevQn20a6qU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15824,35 +15368,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11825" + "11849" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0178011a-8b41-4f70-aa8c-51e55c1e7ada" + "2fb09b6f-9950-475a-bc50-fba82eacbf30" ], "x-ms-client-request-id": [ - "5dec6dce-2899-4cc9-b6c2-816244647676-2020-05-02 05:27:44Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "02f8732e-d8e4-404a-bbf1-597abab64ca2" ], "x-ms-correlation-request-id": [ - "0178011a-8b41-4f70-aa8c-51e55c1e7ada" + "2fb09b6f-9950-475a-bc50-fba82eacbf30" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052745Z:0178011a-8b41-4f70-aa8c-51e55c1e7ada" + "CENTRALUSEUAP:20210418T065914Z:2fb09b6f-9950-475a-bc50-fba82eacbf30" ], "Date": [ - "Sat, 02 May 2020 05:27:44 GMT" + "Sun, 18 Apr 2021 06:59:14 GMT" ], "Content-Length": [ "4554" @@ -15864,29 +15405,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d69e6f6c-3f15-4e05-8144-07a81975c690-2020-05-02 05:27:55Z-Ps" + "86b6fbbf-3822-4be2-8170-c985ac89fa62" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393675422)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998475422)\\/\",\"ClientRequestId\":\"d69e6f6c-3f15-4e05-8144-07a81975c690-2020-05-02 05:27:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YkunXwvJ0psjh3sOLyoEalrtW0seDfgpk0bxbVmkoAg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725565068)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330365068)\\/\",\"ClientRequestId\":\"0a786af2-860f-4b74-821d-6caedcff0192-2021-04-18 06:59:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"n+5M8emAIC71/5iN4HS5qGCnZNzUGAFkyBnOGBIjObg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15897,35 +15438,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11824" + "11848" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "efa0734d-a82e-4e6f-bcf5-1dda5e6b5911" + "18e0aba8-f737-4142-a657-3f4e27569ea3" ], "x-ms-client-request-id": [ - "d69e6f6c-3f15-4e05-8144-07a81975c690-2020-05-02 05:27:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "86b6fbbf-3822-4be2-8170-c985ac89fa62" ], "x-ms-correlation-request-id": [ - "efa0734d-a82e-4e6f-bcf5-1dda5e6b5911" + "18e0aba8-f737-4142-a657-3f4e27569ea3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052755Z:efa0734d-a82e-4e6f-bcf5-1dda5e6b5911" + "CENTRALUSEUAP:20210418T065925Z:18e0aba8-f737-4142-a657-3f4e27569ea3" ], "Date": [ - "Sat, 02 May 2020 05:27:54 GMT" + "Sun, 18 Apr 2021 06:59:25 GMT" ], "Content-Length": [ "4554" @@ -15937,29 +15475,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40ca143f-681d-4ca6-bd7a-adf37fe4fe61-2020-05-02 05:28:05Z-Ps" + "e0b5d5f1-055c-4ba6-a293-e327495b4921" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393685765)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998485765)\\/\",\"ClientRequestId\":\"40ca143f-681d-4ca6-bd7a-adf37fe4fe61-2020-05-02 05:28:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"60pPsVRCEPI/qZCzu0A4Jsoexc8PF60rdqmlL1ElW+0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725575385)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330375385)\\/\",\"ClientRequestId\":\"0622460f-e878-46b1-abec-4c217872c9ad-2021-04-18 06:59:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xFARyXCEvBcZpyd9KTk0oFyUMsav+8XppmWrX0rXxkw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -15970,35 +15508,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11823" + "11847" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5fe43f44-b426-457e-a1b4-b4e0abc8d653" + "d5372783-fffc-4bbf-bd67-5c01c38e0dd8" ], "x-ms-client-request-id": [ - "40ca143f-681d-4ca6-bd7a-adf37fe4fe61-2020-05-02 05:28:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e0b5d5f1-055c-4ba6-a293-e327495b4921" ], "x-ms-correlation-request-id": [ - "5fe43f44-b426-457e-a1b4-b4e0abc8d653" + "d5372783-fffc-4bbf-bd67-5c01c38e0dd8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052805Z:5fe43f44-b426-457e-a1b4-b4e0abc8d653" + "CENTRALUSEUAP:20210418T065935Z:d5372783-fffc-4bbf-bd67-5c01c38e0dd8" ], "Date": [ - "Sat, 02 May 2020 05:28:05 GMT" + "Sun, 18 Apr 2021 06:59:34 GMT" ], "Content-Length": [ "4554" @@ -16010,29 +15545,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b92c2a9-631c-4b79-8521-85fcbc75a74c-2020-05-02 05:28:16Z-Ps" + "d524a30f-85fb-4c82-beb2-688cda4e285a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393696050)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998496050)\\/\",\"ClientRequestId\":\"7b92c2a9-631c-4b79-8521-85fcbc75a74c-2020-05-02 05:28:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"W35DR8XEY5QWqJNTDgDcAtvyL8IJQQyAr5Z5rT3Ml+4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725585699)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330385699)\\/\",\"ClientRequestId\":\"a59428bd-0a6b-47c3-b763-50e28d241bbb-2021-04-18 06:59:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"T9Jtv2pEPY1716jWECJpUhYkICZI972zAJiitPN3WxY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16043,35 +15578,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11822" + "11846" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "52c22a56-73e5-4d55-85c5-f362bf5f4599" + "a905d3be-c1af-4aea-89ac-2d6dfe8ba7e0" ], "x-ms-client-request-id": [ - "7b92c2a9-631c-4b79-8521-85fcbc75a74c-2020-05-02 05:28:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d524a30f-85fb-4c82-beb2-688cda4e285a" ], "x-ms-correlation-request-id": [ - "52c22a56-73e5-4d55-85c5-f362bf5f4599" + "a905d3be-c1af-4aea-89ac-2d6dfe8ba7e0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052816Z:52c22a56-73e5-4d55-85c5-f362bf5f4599" + "CENTRALUSEUAP:20210418T065945Z:a905d3be-c1af-4aea-89ac-2d6dfe8ba7e0" ], "Date": [ - "Sat, 02 May 2020 05:28:15 GMT" + "Sun, 18 Apr 2021 06:59:45 GMT" ], "Content-Length": [ "4554" @@ -16083,29 +15615,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "296342ff-0d2d-460c-999f-9880ea077e76-2020-05-02 05:28:26Z-Ps" + "40762282-5af2-4d3e-95e5-b453279ffe05" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393706349)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998506349)\\/\",\"ClientRequestId\":\"296342ff-0d2d-460c-999f-9880ea077e76-2020-05-02 05:28:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BfqU8CYemFOv+0Y+QkY98dPx3lRqxzM/jzNZwgHXtL4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725596001)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330396001)\\/\",\"ClientRequestId\":\"1be16d49-0c66-4af8-b592-4b01fb90e445-2021-04-18 06:59:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"g0yw9zjVeQdW80OFOPtK4BouwWZqif/VTKQzn+Se/fw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16116,35 +15648,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11821" + "11845" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c7ba9d28-bd88-473c-84ca-93f6f5ca0758" + "e72921a4-722e-4617-8b45-29e4da985c38" ], "x-ms-client-request-id": [ - "296342ff-0d2d-460c-999f-9880ea077e76-2020-05-02 05:28:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "40762282-5af2-4d3e-95e5-b453279ffe05" ], "x-ms-correlation-request-id": [ - "c7ba9d28-bd88-473c-84ca-93f6f5ca0758" + "e72921a4-722e-4617-8b45-29e4da985c38" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052826Z:c7ba9d28-bd88-473c-84ca-93f6f5ca0758" + "CENTRALUSEUAP:20210418T065956Z:e72921a4-722e-4617-8b45-29e4da985c38" ], "Date": [ - "Sat, 02 May 2020 05:28:25 GMT" + "Sun, 18 Apr 2021 06:59:56 GMT" ], "Content-Length": [ "4554" @@ -16156,29 +15685,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e147a6c2-722a-4211-9b02-33d3a8c428a6-2020-05-02 05:28:36Z-Ps" + "3adae63b-f7b8-4c25-b13a-4048ae7ef4fa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393716692)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998516692)\\/\",\"ClientRequestId\":\"e147a6c2-722a-4211-9b02-33d3a8c428a6-2020-05-02 05:28:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"H6b4YdCAK6gpT32Yn2GchKnxwMViCV37JN6kHnZNvVQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725606314)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330406314)\\/\",\"ClientRequestId\":\"76a25009-b687-41a7-9ed6-9804f4fe6e39-2021-04-18 07:00:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DWn+IcxkAew+QG/5BYa0LXLdaK8u/rZKw8wOlfO35Co=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16189,35 +15718,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11820" + "11844" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "fda7eaca-365f-4117-a7d9-51a3fb578b11" + "1b12e7e2-84cf-4088-8ecf-5c39f9978c68" ], "x-ms-client-request-id": [ - "e147a6c2-722a-4211-9b02-33d3a8c428a6-2020-05-02 05:28:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3adae63b-f7b8-4c25-b13a-4048ae7ef4fa" ], "x-ms-correlation-request-id": [ - "fda7eaca-365f-4117-a7d9-51a3fb578b11" + "1b12e7e2-84cf-4088-8ecf-5c39f9978c68" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052836Z:fda7eaca-365f-4117-a7d9-51a3fb578b11" + "CENTRALUSEUAP:20210418T070006Z:1b12e7e2-84cf-4088-8ecf-5c39f9978c68" ], "Date": [ - "Sat, 02 May 2020 05:28:36 GMT" + "Sun, 18 Apr 2021 07:00:06 GMT" ], "Content-Length": [ "4554" @@ -16229,29 +15755,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d46a8f33-3015-447b-846a-612988d855b2-2020-05-02 05:28:47Z-Ps" + "8981c3f6-9778-4f17-96ae-c57f011672d7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393727023)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998527023)\\/\",\"ClientRequestId\":\"d46a8f33-3015-447b-846a-612988d855b2-2020-05-02 05:28:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uWhpIqLgf6ResXAjaOfDkAdAowwhCNEfVMsXzyO8CSo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725616675)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330416675)\\/\",\"ClientRequestId\":\"37288d07-fe69-4c44-88d9-d11041e9384f-2021-04-18 07:00:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WB21LuwCtxJ9YpcL59EF/MLGssfjDzT8EcXVS/6aQko=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16261,36 +15787,33 @@ "Pragma": [ "no-cache" ], - "Server": [ - "Microsoft-IIS/10.0", + "x-ms-ratelimit-remaining-subscription-reads": [ + "11843" + ], + "Server": [ + "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7564d0d0-27f8-40df-a780-2ca312dccdd6" + "11568fda-51e4-401d-a53f-2eddfb0e1bf1" ], "x-ms-client-request-id": [ - "d46a8f33-3015-447b-846a-612988d855b2-2020-05-02 05:28:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11819" + "8981c3f6-9778-4f17-96ae-c57f011672d7" ], "x-ms-correlation-request-id": [ - "7564d0d0-27f8-40df-a780-2ca312dccdd6" + "11568fda-51e4-401d-a53f-2eddfb0e1bf1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052847Z:7564d0d0-27f8-40df-a780-2ca312dccdd6" + "CENTRALUSEUAP:20210418T070016Z:11568fda-51e4-401d-a53f-2eddfb0e1bf1" ], "Date": [ - "Sat, 02 May 2020 05:28:46 GMT" + "Sun, 18 Apr 2021 07:00:16 GMT" ], "Content-Length": [ "4554" @@ -16302,29 +15825,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "650f9da4-138d-4856-945f-257f301ec0cc-2020-05-02 05:28:57Z-Ps" + "d663dcda-8593-493f-967d-75bc42a7ee06" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393737362)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998537362)\\/\",\"ClientRequestId\":\"650f9da4-138d-4856-945f-257f301ec0cc-2020-05-02 05:28:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CpoCh37ocME89yTfM1LI5tgKa2Miw8jVMS9EC8Iqgyc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725626992)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330426992)\\/\",\"ClientRequestId\":\"079b7794-26d5-4cc6-9e13-c68b6fa6938e-2021-04-18 07:00:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Dff1UTIzS2H3+KxF5tQ6HhD/GtKGzmRZpDd71wCs+RM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16335,35 +15858,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11818" + "11842" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "477d3b36-3f13-474a-89a2-f7b8a50347ea" + "3dbbccda-51e8-4863-8f93-ce5e9d6ed9e6" ], "x-ms-client-request-id": [ - "650f9da4-138d-4856-945f-257f301ec0cc-2020-05-02 05:28:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d663dcda-8593-493f-967d-75bc42a7ee06" ], "x-ms-correlation-request-id": [ - "477d3b36-3f13-474a-89a2-f7b8a50347ea" + "3dbbccda-51e8-4863-8f93-ce5e9d6ed9e6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052857Z:477d3b36-3f13-474a-89a2-f7b8a50347ea" + "CENTRALUSEUAP:20210418T070027Z:3dbbccda-51e8-4863-8f93-ce5e9d6ed9e6" ], "Date": [ - "Sat, 02 May 2020 05:28:57 GMT" + "Sun, 18 Apr 2021 07:00:27 GMT" ], "Content-Length": [ "4554" @@ -16375,29 +15895,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0148fef5-e639-4be5-a29b-0d04aff2b0b9-2020-05-02 05:29:07Z-Ps" + "a03f0a90-f90c-49b8-b8ea-d6c0266fa703" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393747845)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998547845)\\/\",\"ClientRequestId\":\"0148fef5-e639-4be5-a29b-0d04aff2b0b9-2020-05-02 05:29:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XPMsN394rLA2IH/UFkLayfY4zA3i5ljd7PIbD+3Up+8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725637410)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330437410)\\/\",\"ClientRequestId\":\"63c694e9-9f26-41a4-a616-de1e9ac03b74-2021-04-18 07:00:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FeMVnt7BZkiwLcDWThyyXyiUg7jIDrg9xVhzOxvN74c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16408,35 +15928,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11817" + "11841" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c996492e-7dfd-4f92-ace4-ef070891b1d0" + "69f0273a-3a22-4e8b-bdd3-744150f74613" ], "x-ms-client-request-id": [ - "0148fef5-e639-4be5-a29b-0d04aff2b0b9-2020-05-02 05:29:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a03f0a90-f90c-49b8-b8ea-d6c0266fa703" ], "x-ms-correlation-request-id": [ - "c996492e-7dfd-4f92-ace4-ef070891b1d0" + "69f0273a-3a22-4e8b-bdd3-744150f74613" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052907Z:c996492e-7dfd-4f92-ace4-ef070891b1d0" + "CENTRALUSEUAP:20210418T070037Z:69f0273a-3a22-4e8b-bdd3-744150f74613" ], "Date": [ - "Sat, 02 May 2020 05:29:07 GMT" + "Sun, 18 Apr 2021 07:00:37 GMT" ], "Content-Length": [ "4554" @@ -16448,29 +15965,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d147921d-b4ca-4e8f-8a92-cd72c9dbbcb4-2020-05-02 05:29:18Z-Ps" + "bc28dd31-4cb1-48d2-86e1-281888161adf" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393758148)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998558148)\\/\",\"ClientRequestId\":\"d147921d-b4ca-4e8f-8a92-cd72c9dbbcb4-2020-05-02 05:29:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bi8l8EQ4YuwZV0ORMGYTdXQyjtAFSK0rUSs/bvlKG6Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725647732)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330447732)\\/\",\"ClientRequestId\":\"abb3681c-9280-46d2-941d-20f35a0b45b8-2021-04-18 07:00:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vUOsVbE2Q4+opmMh1iVhL5gTEif+ZJBhe3iG8fJFmRM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16481,35 +15998,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11815" + "11840" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ffc98417-f876-4cee-a18c-dd1775a617ab" + "bb538b56-c15b-493d-914f-a3f516212261" ], "x-ms-client-request-id": [ - "d147921d-b4ca-4e8f-8a92-cd72c9dbbcb4-2020-05-02 05:29:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bc28dd31-4cb1-48d2-86e1-281888161adf" ], "x-ms-correlation-request-id": [ - "ffc98417-f876-4cee-a18c-dd1775a617ab" + "bb538b56-c15b-493d-914f-a3f516212261" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052918Z:ffc98417-f876-4cee-a18c-dd1775a617ab" + "CENTRALUSEUAP:20210418T070047Z:bb538b56-c15b-493d-914f-a3f516212261" ], "Date": [ - "Sat, 02 May 2020 05:29:18 GMT" + "Sun, 18 Apr 2021 07:00:47 GMT" ], "Content-Length": [ "4554" @@ -16521,29 +16035,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be71c058-767b-4c63-b835-228953146a2d-2020-05-02 05:29:28Z-Ps" + "5b35ba01-394e-42de-9551-c528f66d6648" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393768484)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998568484)\\/\",\"ClientRequestId\":\"be71c058-767b-4c63-b835-228953146a2d-2020-05-02 05:29:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9ftiTsWBN94co8KVqBjxGib1Gnn8plvBIOwt/6iiEhA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725658104)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330458104)\\/\",\"ClientRequestId\":\"df37d2bb-d51e-42c0-a427-08dc81776266-2021-04-18 07:00:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MtspxNnc5qW2x7AhaUjag9dg8lQe342tgJ1Kg3gss9w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16553,36 +16067,33 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11814" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c826df70-d8e7-4f16-ab45-db0a64c74994" + "52d3a949-dd56-48db-9b5f-b16adcee4b5d" ], "x-ms-client-request-id": [ - "be71c058-767b-4c63-b835-228953146a2d-2020-05-02 05:29:28Z-Ps" + "5b35ba01-394e-42de-9551-c528f66d6648" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11839" ], "x-ms-correlation-request-id": [ - "c826df70-d8e7-4f16-ab45-db0a64c74994" + "52d3a949-dd56-48db-9b5f-b16adcee4b5d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052928Z:c826df70-d8e7-4f16-ab45-db0a64c74994" + "CENTRALUSEUAP:20210418T070058Z:52d3a949-dd56-48db-9b5f-b16adcee4b5d" ], "Date": [ - "Sat, 02 May 2020 05:29:28 GMT" + "Sun, 18 Apr 2021 07:00:57 GMT" ], "Content-Length": [ "4554" @@ -16594,29 +16105,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f67dae05-7ffd-4050-b4d9-2965abc2c2fd-2020-05-02 05:29:38Z-Ps" + "6264147c-8500-4e04-8f80-39fae0ddfe68" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393778777)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998578777)\\/\",\"ClientRequestId\":\"f67dae05-7ffd-4050-b4d9-2965abc2c2fd-2020-05-02 05:29:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Iz7TuxTear2a+lup5badTAs3veYmq18FXRBEx1at+mY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725668418)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330468418)\\/\",\"ClientRequestId\":\"a50d73e0-7d72-436d-a756-be651f958f80-2021-04-18 07:01:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Thsqvvocn0I0eUrHzqqRZSZ22lEKMDJ44Lz8F47P0jM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16627,35 +16138,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11813" + "11838" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "fba3b769-66af-4d35-9687-8f06a9d509a3" + "d0aaa3a1-9336-4c61-9003-595b26b28460" ], "x-ms-client-request-id": [ - "f67dae05-7ffd-4050-b4d9-2965abc2c2fd-2020-05-02 05:29:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6264147c-8500-4e04-8f80-39fae0ddfe68" ], "x-ms-correlation-request-id": [ - "fba3b769-66af-4d35-9687-8f06a9d509a3" + "d0aaa3a1-9336-4c61-9003-595b26b28460" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052938Z:fba3b769-66af-4d35-9687-8f06a9d509a3" + "CENTRALUSEUAP:20210418T070108Z:d0aaa3a1-9336-4c61-9003-595b26b28460" ], "Date": [ - "Sat, 02 May 2020 05:29:38 GMT" + "Sun, 18 Apr 2021 07:01:08 GMT" ], "Content-Length": [ "4554" @@ -16667,29 +16175,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b2c2140-19df-483b-ba7a-dc7c24eae68e-2020-05-02 05:29:49Z-Ps" + "9a834ecf-ef54-4fed-85ad-a8868329a513" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393789074)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998589074)\\/\",\"ClientRequestId\":\"5b2c2140-19df-483b-ba7a-dc7c24eae68e-2020-05-02 05:29:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"aGrQ8n8wJLmxx+00VHZdAgbpWlQizvWX0J603YDww7I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725678959)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330478959)\\/\",\"ClientRequestId\":\"b2944714-923d-4585-85fd-00d40288f3fb-2021-04-18 07:01:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jPpRxtTuhIitu9q3eewKqG3VU+uN4Of4mvXr5+YuoUc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16700,35 +16208,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11811" + "11837" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "ef25153b-6220-407f-88d2-6d8278ca3ed4" + "15ff151e-4d5d-4198-9e81-1619e1215ada" ], "x-ms-client-request-id": [ - "5b2c2140-19df-483b-ba7a-dc7c24eae68e-2020-05-02 05:29:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9a834ecf-ef54-4fed-85ad-a8868329a513" ], "x-ms-correlation-request-id": [ - "ef25153b-6220-407f-88d2-6d8278ca3ed4" + "15ff151e-4d5d-4198-9e81-1619e1215ada" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052949Z:ef25153b-6220-407f-88d2-6d8278ca3ed4" + "CENTRALUSEUAP:20210418T070119Z:15ff151e-4d5d-4198-9e81-1619e1215ada" ], "Date": [ - "Sat, 02 May 2020 05:29:48 GMT" + "Sun, 18 Apr 2021 07:01:18 GMT" ], "Content-Length": [ "4554" @@ -16740,29 +16245,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9cb2f4e5-0821-4998-b001-35e9943a1115-2020-05-02 05:29:59Z-Ps" + "66710936-3a2d-406f-a207-338e5cca8ae0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393799395)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998599395)\\/\",\"ClientRequestId\":\"9cb2f4e5-0821-4998-b001-35e9943a1115-2020-05-02 05:29:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jfV842TCDYjIBmSjfXhdaA7511uyvPMpEcyGtwC82vA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725689321)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330489321)\\/\",\"ClientRequestId\":\"5b3d337c-9a41-44cd-ac1f-c7b0c4711b50-2021-04-18 07:01:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QiXkiZMs7aTbZikTTIM4hoJYvuJ/iGe73iq6MvI1mJ4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16772,36 +16277,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11836" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "fe84940b-c0cf-4de5-8249-6ab577635af7" + "b039a02f-35d7-41a3-b1fe-2c60ead55ed8" ], "x-ms-client-request-id": [ - "9cb2f4e5-0821-4998-b001-35e9943a1115-2020-05-02 05:29:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11810" + "66710936-3a2d-406f-a207-338e5cca8ae0" ], "x-ms-correlation-request-id": [ - "fe84940b-c0cf-4de5-8249-6ab577635af7" + "b039a02f-35d7-41a3-b1fe-2c60ead55ed8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T052959Z:fe84940b-c0cf-4de5-8249-6ab577635af7" + "CENTRALUSEUAP:20210418T070129Z:b039a02f-35d7-41a3-b1fe-2c60ead55ed8" ], "Date": [ - "Sat, 02 May 2020 05:29:58 GMT" + "Sun, 18 Apr 2021 07:01:29 GMT" ], "Content-Length": [ "4554" @@ -16813,29 +16315,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b558fc3-b695-4d37-9cb9-61f6df00bfa7-2020-05-02 05:30:09Z-Ps" + "5b65e3f9-c66f-44f8-a0b7-a2e1a42286e6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393809745)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998609745)\\/\",\"ClientRequestId\":\"0b558fc3-b695-4d37-9cb9-61f6df00bfa7-2020-05-02 05:30:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NMJitFV/f2YrrA9+nJZ8HmNyzAn8lb4pYaLxXQqCWi8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725699666)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330499666)\\/\",\"ClientRequestId\":\"5ac7baf7-1c2a-4c84-be38-0b19eef05f86-2021-04-18 07:01:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MtDKN5QYRn62Bhh6LhFlVnilFkKTXu95QNDZG9HxYLM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16846,35 +16348,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11809" + "11835" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "300ee064-61a5-4d1c-9fb2-a5f2aee6fc7f" + "07f86305-4210-4b5c-85a2-10f76f22d1f3" ], "x-ms-client-request-id": [ - "0b558fc3-b695-4d37-9cb9-61f6df00bfa7-2020-05-02 05:30:09Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5b65e3f9-c66f-44f8-a0b7-a2e1a42286e6" ], "x-ms-correlation-request-id": [ - "300ee064-61a5-4d1c-9fb2-a5f2aee6fc7f" + "07f86305-4210-4b5c-85a2-10f76f22d1f3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053010Z:300ee064-61a5-4d1c-9fb2-a5f2aee6fc7f" + "CENTRALUSEUAP:20210418T070139Z:07f86305-4210-4b5c-85a2-10f76f22d1f3" ], "Date": [ - "Sat, 02 May 2020 05:30:10 GMT" + "Sun, 18 Apr 2021 07:01:39 GMT" ], "Content-Length": [ "4554" @@ -16886,29 +16385,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e4ac9335-7665-42ad-a0c0-99d83c784d44-2020-05-02 05:30:20Z-Ps" + "811f5ec6-b292-4c1e-a7c0-1bfdbf3220b5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393820271)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998620271)\\/\",\"ClientRequestId\":\"e4ac9335-7665-42ad-a0c0-99d83c784d44-2020-05-02 05:30:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"r/b5Fer5i2kH7DB74M5O7BEqzcq7QOU2jN03M4OosqI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725709996)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330509996)\\/\",\"ClientRequestId\":\"5bd06eff-45e4-473d-be61-74b1320daf4d-2021-04-18 07:01:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"g12t49L5UaqftfpFTvA/fYst1haf/vbzNEadLxAtdVY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16919,35 +16418,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11808" + "11834" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "062a20f7-b84e-44d1-a8e7-d629c9f1733f" + "37466fe7-0bdf-4e17-bccc-f36092db26fc" ], "x-ms-client-request-id": [ - "e4ac9335-7665-42ad-a0c0-99d83c784d44-2020-05-02 05:30:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "811f5ec6-b292-4c1e-a7c0-1bfdbf3220b5" ], "x-ms-correlation-request-id": [ - "062a20f7-b84e-44d1-a8e7-d629c9f1733f" + "37466fe7-0bdf-4e17-bccc-f36092db26fc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053020Z:062a20f7-b84e-44d1-a8e7-d629c9f1733f" + "CENTRALUSEUAP:20210418T070150Z:37466fe7-0bdf-4e17-bccc-f36092db26fc" ], "Date": [ - "Sat, 02 May 2020 05:30:20 GMT" + "Sun, 18 Apr 2021 07:01:50 GMT" ], "Content-Length": [ "4554" @@ -16959,29 +16455,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c471b45-1bfa-41f0-874a-fb5d87ccef12-2020-05-02 05:30:30Z-Ps" + "d5e0d2de-a7b5-4a8b-8c8f-65fbd0b0df63" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393830583)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998630583)\\/\",\"ClientRequestId\":\"1c471b45-1bfa-41f0-874a-fb5d87ccef12-2020-05-02 05:30:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"d2D54OtMzyEQtCzg+Ig3mK6Q7jw2U0QqVswTOAlYVyo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725720369)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330520369)\\/\",\"ClientRequestId\":\"ece6fc32-4822-449e-b64f-f487ddf36781-2021-04-18 07:02:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XS7G4LcC8xvL3YlucQIMG9fDeZsLZ5d/GQjxpXjFU6I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -16992,35 +16488,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11807" + "11833" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "244b4672-7336-4b47-bd76-88390b42a844" + "7adebe8a-05a6-4f09-9eea-0b49539a3735" ], "x-ms-client-request-id": [ - "1c471b45-1bfa-41f0-874a-fb5d87ccef12-2020-05-02 05:30:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d5e0d2de-a7b5-4a8b-8c8f-65fbd0b0df63" ], "x-ms-correlation-request-id": [ - "244b4672-7336-4b47-bd76-88390b42a844" + "7adebe8a-05a6-4f09-9eea-0b49539a3735" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053030Z:244b4672-7336-4b47-bd76-88390b42a844" + "CENTRALUSEUAP:20210418T070200Z:7adebe8a-05a6-4f09-9eea-0b49539a3735" ], "Date": [ - "Sat, 02 May 2020 05:30:30 GMT" + "Sun, 18 Apr 2021 07:02:00 GMT" ], "Content-Length": [ "4554" @@ -17032,29 +16525,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77fbe927-6f9e-4d25-b300-906cf142ebcc-2020-05-02 05:30:40Z-Ps" + "3930f39a-001c-4a4b-aefe-43289589d522" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393840897)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998640897)\\/\",\"ClientRequestId\":\"77fbe927-6f9e-4d25-b300-906cf142ebcc-2020-05-02 05:30:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qBBmh5ihH0NVnTsGGqB/r3B2wynjrQvsMo9N/rQnuts=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725730764)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330530764)\\/\",\"ClientRequestId\":\"e445f937-3428-49bd-acc0-07caf374b198-2021-04-18 07:02:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kFidqF2L3tXln2RDDHMH7Vg9yG77+Yp22Hpxzu+6l3E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17065,35 +16558,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11806" + "11832" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "c59cebcf-e41d-4145-8574-5b3a1ab8fb7e" + "f2c509c7-b368-442e-97c8-57e0f900bc0d" ], "x-ms-client-request-id": [ - "77fbe927-6f9e-4d25-b300-906cf142ebcc-2020-05-02 05:30:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3930f39a-001c-4a4b-aefe-43289589d522" ], "x-ms-correlation-request-id": [ - "c59cebcf-e41d-4145-8574-5b3a1ab8fb7e" + "f2c509c7-b368-442e-97c8-57e0f900bc0d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053041Z:c59cebcf-e41d-4145-8574-5b3a1ab8fb7e" + "CENTRALUSEUAP:20210418T070210Z:f2c509c7-b368-442e-97c8-57e0f900bc0d" ], "Date": [ - "Sat, 02 May 2020 05:30:41 GMT" + "Sun, 18 Apr 2021 07:02:10 GMT" ], "Content-Length": [ "4554" @@ -17105,29 +16595,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "69af0b99-3a0f-4d7a-af3f-904fe3befbdf-2020-05-02 05:30:51Z-Ps" + "51e2c0b8-d7da-4ef7-a67b-bb0434f2b578" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393851208)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998651208)\\/\",\"ClientRequestId\":\"69af0b99-3a0f-4d7a-af3f-904fe3befbdf-2020-05-02 05:30:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EqYrzQeV3mbguUPn74BYorThEcZgMvB0FwuKainWqxw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725741108)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330541108)\\/\",\"ClientRequestId\":\"407faca7-f80b-45de-934f-e3f03880bb4b-2021-04-18 07:02:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yb6SHrO2uhJF+fJ5d1JLx0ue/sD3dz5ZtvUBuRxygXM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17138,35 +16628,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11805" + "11831" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b57b98a9-5221-4e14-b949-f85d3c2f5675" + "95472283-97b0-4bba-87a8-0766d86c5727" ], "x-ms-client-request-id": [ - "69af0b99-3a0f-4d7a-af3f-904fe3befbdf-2020-05-02 05:30:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "51e2c0b8-d7da-4ef7-a67b-bb0434f2b578" ], "x-ms-correlation-request-id": [ - "b57b98a9-5221-4e14-b949-f85d3c2f5675" + "95472283-97b0-4bba-87a8-0766d86c5727" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053051Z:b57b98a9-5221-4e14-b949-f85d3c2f5675" + "CENTRALUSEUAP:20210418T070221Z:95472283-97b0-4bba-87a8-0766d86c5727" ], "Date": [ - "Sat, 02 May 2020 05:30:51 GMT" + "Sun, 18 Apr 2021 07:02:20 GMT" ], "Content-Length": [ "4554" @@ -17178,29 +16665,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a56fea8-c962-4d06-aaef-01500004b989-2020-05-02 05:31:01Z-Ps" + "42597bd8-9354-4b15-990a-eca474d997a5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393861555)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998661555)\\/\",\"ClientRequestId\":\"1a56fea8-c962-4d06-aaef-01500004b989-2020-05-02 05:31:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"U+J9rQTKLu/vvLFIiEkcLvGtIRfry8+wg4pXQHl8s5U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725751446)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330551446)\\/\",\"ClientRequestId\":\"c127b9c9-ee67-4b65-adad-4b5707a2edcc-2021-04-18 07:02:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8Era3MKFOLj4qdKTMdSp7ZAESdhhJ2GQBWm4bDQ/h8M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17211,35 +16698,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11804" + "11830" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "eb881685-1619-47d3-9e20-0d38108b990d" + "bf5df9ef-3509-45d6-bf01-528c20b23428" ], "x-ms-client-request-id": [ - "1a56fea8-c962-4d06-aaef-01500004b989-2020-05-02 05:31:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "42597bd8-9354-4b15-990a-eca474d997a5" ], "x-ms-correlation-request-id": [ - "eb881685-1619-47d3-9e20-0d38108b990d" + "bf5df9ef-3509-45d6-bf01-528c20b23428" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053101Z:eb881685-1619-47d3-9e20-0d38108b990d" + "CENTRALUSEUAP:20210418T070231Z:bf5df9ef-3509-45d6-bf01-528c20b23428" ], "Date": [ - "Sat, 02 May 2020 05:31:01 GMT" + "Sun, 18 Apr 2021 07:02:30 GMT" ], "Content-Length": [ "4554" @@ -17251,29 +16735,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4660558f-8ef1-4ad5-8c1d-fc1eddbb6568-2020-05-02 05:31:11Z-Ps" + "a96c7534-4381-4fdf-b30b-a85417fdf40f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393871876)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998671876)\\/\",\"ClientRequestId\":\"4660558f-8ef1-4ad5-8c1d-fc1eddbb6568-2020-05-02 05:31:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nKWZyv7QPFCa4pFJnWM04OgsZvTKTBURYnnSxYB31sc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725761787)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330561787)\\/\",\"ClientRequestId\":\"7d0f2cf9-e60b-4c42-af55-cf208a4b6576-2021-04-18 07:02:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wLq2xvL2LOvHqIyUVCzQ8M4iRrL/QdaklZq0/gFcTCw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17283,36 +16767,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11829" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "b8581750-bbd4-4b5e-bc0f-828236131d40" + "59a7376e-4eea-4855-949b-96ed3a187c9b" ], "x-ms-client-request-id": [ - "4660558f-8ef1-4ad5-8c1d-fc1eddbb6568-2020-05-02 05:31:11Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11803" + "a96c7534-4381-4fdf-b30b-a85417fdf40f" ], "x-ms-correlation-request-id": [ - "b8581750-bbd4-4b5e-bc0f-828236131d40" + "59a7376e-4eea-4855-949b-96ed3a187c9b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053112Z:b8581750-bbd4-4b5e-bc0f-828236131d40" + "CENTRALUSEUAP:20210418T070241Z:59a7376e-4eea-4855-949b-96ed3a187c9b" ], "Date": [ - "Sat, 02 May 2020 05:31:11 GMT" + "Sun, 18 Apr 2021 07:02:41 GMT" ], "Content-Length": [ "4554" @@ -17324,29 +16805,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36363519-6a18-46a5-b2b6-f47e50b9ff24-2020-05-02 05:31:22Z-Ps" + "b853a314-6039-404b-8855-1e65b97bdb92" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393882208)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998682208)\\/\",\"ClientRequestId\":\"36363519-6a18-46a5-b2b6-f47e50b9ff24-2020-05-02 05:31:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/hMwNcGLU5nWDpTQx8cwM6c6ISN46mbQBWMGgOgxM1Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725772135)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330572135)\\/\",\"ClientRequestId\":\"f4b56c90-6369-4a7b-8a50-867a175c5e45-2021-04-18 07:02:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1VBB0oEHZCShHA9fZT1XXvZXZJY7f+v0yZD8wrd/t1g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17357,35 +16838,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11802" + "11828" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "de59a320-4eaf-4f1d-a20f-8cb6a8975a5c" + "9b837502-bd14-4f47-8d73-5410a96a0847" ], "x-ms-client-request-id": [ - "36363519-6a18-46a5-b2b6-f47e50b9ff24-2020-05-02 05:31:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b853a314-6039-404b-8855-1e65b97bdb92" ], "x-ms-correlation-request-id": [ - "de59a320-4eaf-4f1d-a20f-8cb6a8975a5c" + "9b837502-bd14-4f47-8d73-5410a96a0847" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053122Z:de59a320-4eaf-4f1d-a20f-8cb6a8975a5c" + "CENTRALUSEUAP:20210418T070252Z:9b837502-bd14-4f47-8d73-5410a96a0847" ], "Date": [ - "Sat, 02 May 2020 05:31:22 GMT" + "Sun, 18 Apr 2021 07:02:51 GMT" ], "Content-Length": [ "4554" @@ -17397,29 +16875,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a29169ee-c184-4492-9507-e97cfa35290f-2020-05-02 05:31:32Z-Ps" + "dec3e925-95a6-445d-9572-4c805409a895" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393892709)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998692709)\\/\",\"ClientRequestId\":\"a29169ee-c184-4492-9507-e97cfa35290f-2020-05-02 05:31:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MGEfz34uVPT1YNXgx8gtFvrM9oVSuk/d654skhJAUaY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725782478)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330582478)\\/\",\"ClientRequestId\":\"c8c0f4f7-abb5-4e18-a89e-d9e520e3d5da-2021-04-18 07:03:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vz9CyU3nXhMG7btWKllaSMY9yHSR5oGsY16+rBMptO4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17430,35 +16908,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11801" + "11827" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "52f6e346-3950-49fd-9c96-8318f8264623" + "673acd67-93cf-4c6b-a9bd-18abfdbf1722" ], "x-ms-client-request-id": [ - "a29169ee-c184-4492-9507-e97cfa35290f-2020-05-02 05:31:32Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "dec3e925-95a6-445d-9572-4c805409a895" ], "x-ms-correlation-request-id": [ - "52f6e346-3950-49fd-9c96-8318f8264623" + "673acd67-93cf-4c6b-a9bd-18abfdbf1722" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053132Z:52f6e346-3950-49fd-9c96-8318f8264623" + "CENTRALUSEUAP:20210418T070302Z:673acd67-93cf-4c6b-a9bd-18abfdbf1722" ], "Date": [ - "Sat, 02 May 2020 05:31:32 GMT" + "Sun, 18 Apr 2021 07:03:02 GMT" ], "Content-Length": [ "4554" @@ -17470,29 +16945,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a54adcd5-5347-4831-aa5f-024358610e32-2020-05-02 05:31:43Z-Ps" + "ec2e83a8-1091-46d2-9bdf-3276e60095f3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393903058)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998703058)\\/\",\"ClientRequestId\":\"a54adcd5-5347-4831-aa5f-024358610e32-2020-05-02 05:31:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Cmg/qsSbPk8MridGvobHvUxbarXjzb+7JwLNsRsSEK0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725792817)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330592817)\\/\",\"ClientRequestId\":\"3f592b05-7465-4f23-bcfc-d2939794f606-2021-04-18 07:03:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"e3TD87Pqaq+Z0S5sDDJ3BqyQ9+JH8ZJwBYjdL8fJ4gA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17503,35 +16978,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11800" + "11826" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "88dc5d07-dfcf-4fed-a2f7-36d4e57e4a5b" + "ec67dc47-e1a9-4dd7-b14d-6ff3ffe3bf6b" ], "x-ms-client-request-id": [ - "a54adcd5-5347-4831-aa5f-024358610e32-2020-05-02 05:31:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ec2e83a8-1091-46d2-9bdf-3276e60095f3" ], "x-ms-correlation-request-id": [ - "88dc5d07-dfcf-4fed-a2f7-36d4e57e4a5b" + "ec67dc47-e1a9-4dd7-b14d-6ff3ffe3bf6b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053143Z:88dc5d07-dfcf-4fed-a2f7-36d4e57e4a5b" + "CENTRALUSEUAP:20210418T070312Z:ec67dc47-e1a9-4dd7-b14d-6ff3ffe3bf6b" ], "Date": [ - "Sat, 02 May 2020 05:31:42 GMT" + "Sun, 18 Apr 2021 07:03:12 GMT" ], "Content-Length": [ "4554" @@ -17543,29 +17015,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15066d01-a8f4-43fc-beba-9bdc8b7d9e68-2020-05-02 05:31:53Z-Ps" + "1df86d26-dea1-4a56-be1e-5883c7e8259b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393913400)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998713400)\\/\",\"ClientRequestId\":\"15066d01-a8f4-43fc-beba-9bdc8b7d9e68-2020-05-02 05:31:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lOgZq8ux+MFGwJNNEh5MTOsgNuiObhkCm6Gu57yWaBI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725803162)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330603162)\\/\",\"ClientRequestId\":\"804b806d-5fab-4cee-a70e-c5504c8f6393-2021-04-18 07:03:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"f5wQIQW1ZU0KcJ7I3kzbgN3aGabNF4Mx/f9CDioHqg4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17576,35 +17048,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11799" + "11825" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "7c8b8ed6-bc92-4911-b045-d5f8876a5cf4" + "59dffc2c-e53c-4b4a-b91a-d0298c6e94fb" ], "x-ms-client-request-id": [ - "15066d01-a8f4-43fc-beba-9bdc8b7d9e68-2020-05-02 05:31:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1df86d26-dea1-4a56-be1e-5883c7e8259b" ], "x-ms-correlation-request-id": [ - "7c8b8ed6-bc92-4911-b045-d5f8876a5cf4" + "59dffc2c-e53c-4b4a-b91a-d0298c6e94fb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053153Z:7c8b8ed6-bc92-4911-b045-d5f8876a5cf4" + "CENTRALUSEUAP:20210418T070323Z:59dffc2c-e53c-4b4a-b91a-d0298c6e94fb" ], "Date": [ - "Sat, 02 May 2020 05:31:52 GMT" + "Sun, 18 Apr 2021 07:03:22 GMT" ], "Content-Length": [ "4554" @@ -17616,29 +17085,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "121ba23b-2f07-4579-90f8-ef9ebf3687ea-2020-05-02 05:32:03Z-Ps" + "dee0ebbe-3366-4552-9018-cc1dfbcecae1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393923726)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998723726)\\/\",\"ClientRequestId\":\"121ba23b-2f07-4579-90f8-ef9ebf3687ea-2020-05-02 05:32:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EnGMU8aj3QLXn2gwSgomd6v4BeOn3IuNgej0tINdPBs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725813508)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330613508)\\/\",\"ClientRequestId\":\"25600e52-731d-4f0b-8afb-7b56f0350d6f-2021-04-18 07:03:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lWasyePH+ARFYoejtSznFMwL93RAWZzIg8qbuN51oLg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17649,35 +17118,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11798" + "11824" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8a59aee4-e91c-43ac-87ee-2331f14648c7" + "2bff1fa5-7418-4c30-8818-c998aa9a2831" ], "x-ms-client-request-id": [ - "121ba23b-2f07-4579-90f8-ef9ebf3687ea-2020-05-02 05:32:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "dee0ebbe-3366-4552-9018-cc1dfbcecae1" ], "x-ms-correlation-request-id": [ - "8a59aee4-e91c-43ac-87ee-2331f14648c7" + "2bff1fa5-7418-4c30-8818-c998aa9a2831" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053203Z:8a59aee4-e91c-43ac-87ee-2331f14648c7" + "CENTRALUSEUAP:20210418T070333Z:2bff1fa5-7418-4c30-8818-c998aa9a2831" ], "Date": [ - "Sat, 02 May 2020 05:32:03 GMT" + "Sun, 18 Apr 2021 07:03:33 GMT" ], "Content-Length": [ "4554" @@ -17689,29 +17155,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aace0c08-d3f0-44c6-9dcf-db40967d4ffb-2020-05-02 05:32:14Z-Ps" + "50f907ff-b08d-4c70-8a62-5ec2b49469d0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393934048)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998734048)\\/\",\"ClientRequestId\":\"aace0c08-d3f0-44c6-9dcf-db40967d4ffb-2020-05-02 05:32:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Aoof6qP9WrAVGjwmtfmpiODaHy5ojb4p4AU1meb6oHo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725823854)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330623854)\\/\",\"ClientRequestId\":\"d2dda80d-4fe6-428a-905a-4f934a82704c-2021-04-18 07:03:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"odaiv53zznCxEfMRKfWEizf5X8ZciGtZLtvQMVklvWU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17722,35 +17188,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11797" + "11823" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "f2be3cc6-37ed-44d2-a5e6-7a040ae507fc" + "a7acbd9d-8355-444f-bdc4-f706683d206b" ], "x-ms-client-request-id": [ - "aace0c08-d3f0-44c6-9dcf-db40967d4ffb-2020-05-02 05:32:14Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "50f907ff-b08d-4c70-8a62-5ec2b49469d0" ], "x-ms-correlation-request-id": [ - "f2be3cc6-37ed-44d2-a5e6-7a040ae507fc" + "a7acbd9d-8355-444f-bdc4-f706683d206b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053214Z:f2be3cc6-37ed-44d2-a5e6-7a040ae507fc" + "CENTRALUSEUAP:20210418T070344Z:a7acbd9d-8355-444f-bdc4-f706683d206b" ], "Date": [ - "Sat, 02 May 2020 05:32:13 GMT" + "Sun, 18 Apr 2021 07:03:43 GMT" ], "Content-Length": [ "4554" @@ -17762,29 +17225,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64aa1f19-855b-45d8-8b7c-0df0b4812f7e-2020-05-02 05:32:24Z-Ps" + "73da6728-afe9-4dc2-b665-1caa3add9f98" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393944351)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998744351)\\/\",\"ClientRequestId\":\"64aa1f19-855b-45d8-8b7c-0df0b4812f7e-2020-05-02 05:32:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XchDXMRjd9rHBnMq6tAeTdo3GmuG8KQNuIKDcun5hqE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725834195)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330634195)\\/\",\"ClientRequestId\":\"0ebf18b5-80e4-4ed1-b153-5d048c982375-2021-04-18 07:03:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hu3twLwamWAwJtzcB0wwdXwucf/ZLZsxXsjbSGNfY04=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17794,36 +17257,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11822" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "42bc3557-03e3-4bd7-8f27-592fa1a40c29" + "3a637d66-4d36-4857-b66d-4b34f3f6a0b5" ], "x-ms-client-request-id": [ - "64aa1f19-855b-45d8-8b7c-0df0b4812f7e-2020-05-02 05:32:24Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11796" + "73da6728-afe9-4dc2-b665-1caa3add9f98" ], "x-ms-correlation-request-id": [ - "42bc3557-03e3-4bd7-8f27-592fa1a40c29" + "3a637d66-4d36-4857-b66d-4b34f3f6a0b5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053224Z:42bc3557-03e3-4bd7-8f27-592fa1a40c29" + "CENTRALUSEUAP:20210418T070354Z:3a637d66-4d36-4857-b66d-4b34f3f6a0b5" ], "Date": [ - "Sat, 02 May 2020 05:32:24 GMT" + "Sun, 18 Apr 2021 07:03:53 GMT" ], "Content-Length": [ "4554" @@ -17835,29 +17295,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "819a8079-ae94-4807-bb86-5eef163b4c7e-2020-05-02 05:32:34Z-Ps" + "510a83ce-7692-4453-b248-4b69b12e9a30" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393954694)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998754694)\\/\",\"ClientRequestId\":\"819a8079-ae94-4807-bb86-5eef163b4c7e-2020-05-02 05:32:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2/YIgaaA05q5efKyr+1Wss07JZpREMYXSgWRXaQBb9E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725844529)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330644529)\\/\",\"ClientRequestId\":\"f3d235b8-940d-41f6-8c96-47655cb4173d-2021-04-18 07:04:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pibAOOP+LBNxHss/Rdi3VztHi6OyxFIz5yG0wVuTUzE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17868,35 +17328,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11795" + "11821" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4a8cf633-4cc5-4dd8-aa0e-fabed2ef3371" + "7cca349e-5a2b-4ccf-9b54-81159a67c343" ], "x-ms-client-request-id": [ - "819a8079-ae94-4807-bb86-5eef163b4c7e-2020-05-02 05:32:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "510a83ce-7692-4453-b248-4b69b12e9a30" ], "x-ms-correlation-request-id": [ - "4a8cf633-4cc5-4dd8-aa0e-fabed2ef3371" + "7cca349e-5a2b-4ccf-9b54-81159a67c343" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053235Z:4a8cf633-4cc5-4dd8-aa0e-fabed2ef3371" + "CENTRALUSEUAP:20210418T070404Z:7cca349e-5a2b-4ccf-9b54-81159a67c343" ], "Date": [ - "Sat, 02 May 2020 05:32:34 GMT" + "Sun, 18 Apr 2021 07:04:04 GMT" ], "Content-Length": [ "4554" @@ -17908,29 +17365,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fdd0cb6a-b976-4dd0-b1e4-bba0e0aeb748-2020-05-02 05:32:45Z-Ps" + "7cccda46-da58-41cd-9af9-de8fc7a3ad2f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393965231)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998765231)\\/\",\"ClientRequestId\":\"fdd0cb6a-b976-4dd0-b1e4-bba0e0aeb748-2020-05-02 05:32:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"//6hJMGUhguIfqC0kxKRMePeLPP+myfOcaPrdC8qqXM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725854863)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330654863)\\/\",\"ClientRequestId\":\"41248d98-e9b4-4396-8f71-c87c2a2ebb41-2021-04-18 07:04:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LcP3csdlTsyuAgTZ9zFA5ifYEutSLTWvg3fGM+SCVD8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -17941,35 +17398,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11794" + "11820" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "001cdf22-a4d8-4067-8dc2-861987c09356" + "e8c5f03a-9a89-4302-8d55-198dccade58c" ], "x-ms-client-request-id": [ - "fdd0cb6a-b976-4dd0-b1e4-bba0e0aeb748-2020-05-02 05:32:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "7cccda46-da58-41cd-9af9-de8fc7a3ad2f" ], "x-ms-correlation-request-id": [ - "001cdf22-a4d8-4067-8dc2-861987c09356" + "e8c5f03a-9a89-4302-8d55-198dccade58c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053245Z:001cdf22-a4d8-4067-8dc2-861987c09356" + "CENTRALUSEUAP:20210418T070415Z:e8c5f03a-9a89-4302-8d55-198dccade58c" ], "Date": [ - "Sat, 02 May 2020 05:32:44 GMT" + "Sun, 18 Apr 2021 07:04:14 GMT" ], "Content-Length": [ "4554" @@ -17981,29 +17435,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2f0ca4b-c143-4983-85e7-26a00e994812-2020-05-02 05:32:55Z-Ps" + "9c91ed45-63ec-48e9-97ed-f9f57bb0c011" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393975564)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998775564)\\/\",\"ClientRequestId\":\"b2f0ca4b-c143-4983-85e7-26a00e994812-2020-05-02 05:32:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"R5X6HnecgH02sC4qfNbUWhSUzFQG2uK48WoVYKd3pB8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725865201)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330665201)\\/\",\"ClientRequestId\":\"d2e8db31-9de1-419c-b06d-714deea4f886-2021-04-18 07:04:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jnnf9Wu71AhuephYkwK+RCm+zx4FLbckX9/iOMiJV90=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18014,35 +17468,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11793" + "11819" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "808f6bd9-ff14-4d71-a854-248268418102" + "d6a025b0-c054-4e1d-98b8-77fd703e28a3" ], "x-ms-client-request-id": [ - "b2f0ca4b-c143-4983-85e7-26a00e994812-2020-05-02 05:32:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "9c91ed45-63ec-48e9-97ed-f9f57bb0c011" ], "x-ms-correlation-request-id": [ - "808f6bd9-ff14-4d71-a854-248268418102" + "d6a025b0-c054-4e1d-98b8-77fd703e28a3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053255Z:808f6bd9-ff14-4d71-a854-248268418102" + "CENTRALUSEUAP:20210418T070425Z:d6a025b0-c054-4e1d-98b8-77fd703e28a3" ], "Date": [ - "Sat, 02 May 2020 05:32:55 GMT" + "Sun, 18 Apr 2021 07:04:25 GMT" ], "Content-Length": [ "4554" @@ -18054,29 +17505,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a85c76a9-6b6d-4be5-95c7-769cde18bf99-2020-05-02 05:33:06Z-Ps" + "80f7b348-daef-4e70-a997-67bb48c80028" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393986093)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998786093)\\/\",\"ClientRequestId\":\"a85c76a9-6b6d-4be5-95c7-769cde18bf99-2020-05-02 05:33:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vPWhswijL7/IBJ9uOaxE25E4ShGCRh6GcK+4pfft68U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725875554)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330675554)\\/\",\"ClientRequestId\":\"67b7cad8-c922-4331-99f0-c9c54d84d7d9-2021-04-18 07:04:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YvWESGQCbODPOG8kxCqp+lyU0M/BelOEqHtmz+pIhWs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18087,35 +17538,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11792" + "11818" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e2e476b8-0c4a-48ae-b932-a464e1b242d7" + "9c5c1190-a1ff-432a-b312-95b930c34de8" ], "x-ms-client-request-id": [ - "a85c76a9-6b6d-4be5-95c7-769cde18bf99-2020-05-02 05:33:06Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "80f7b348-daef-4e70-a997-67bb48c80028" ], "x-ms-correlation-request-id": [ - "e2e476b8-0c4a-48ae-b932-a464e1b242d7" + "9c5c1190-a1ff-432a-b312-95b930c34de8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053306Z:e2e476b8-0c4a-48ae-b932-a464e1b242d7" + "CENTRALUSEUAP:20210418T070435Z:9c5c1190-a1ff-432a-b312-95b930c34de8" ], "Date": [ - "Sat, 02 May 2020 05:33:06 GMT" + "Sun, 18 Apr 2021 07:04:35 GMT" ], "Content-Length": [ "4554" @@ -18127,29 +17575,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d4ba400-8f2b-49a5-b65e-b27f9dce71da-2020-05-02 05:33:16Z-Ps" + "de812642-58b7-475a-ac0f-251f08ff435e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588393996537)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998796537)\\/\",\"ClientRequestId\":\"7d4ba400-8f2b-49a5-b65e-b27f9dce71da-2020-05-02 05:33:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6yhjxpQJPjKmh+23CS2jE3W1tsJgJq4VKOs7BFg+KIc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725885883)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330685883)\\/\",\"ClientRequestId\":\"12f8f754-1239-4ba4-a603-f3a32042b959-2021-04-18 07:04:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HiWzP8xC+tObxRLYbpaSXlcsgOyk3d7FOXLRjP0GVlA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18160,35 +17608,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11791" + "11817" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "4e15ca9f-ea3e-46c5-9ecf-71bb26971cc8" + "1bfe6ac4-ea6c-4838-95ce-bc455d0d0999" ], "x-ms-client-request-id": [ - "7d4ba400-8f2b-49a5-b65e-b27f9dce71da-2020-05-02 05:33:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "de812642-58b7-475a-ac0f-251f08ff435e" ], "x-ms-correlation-request-id": [ - "4e15ca9f-ea3e-46c5-9ecf-71bb26971cc8" + "1bfe6ac4-ea6c-4838-95ce-bc455d0d0999" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053316Z:4e15ca9f-ea3e-46c5-9ecf-71bb26971cc8" + "CENTRALUSEUAP:20210418T070446Z:1bfe6ac4-ea6c-4838-95ce-bc455d0d0999" ], "Date": [ - "Sat, 02 May 2020 05:33:16 GMT" + "Sun, 18 Apr 2021 07:04:46 GMT" ], "Content-Length": [ "4554" @@ -18200,29 +17645,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6217bee6-4619-44f9-9c5d-3a3d17d4de0a-2020-05-02 05:33:26Z-Ps" + "c854d615-b46b-40fc-8da7-9e62ea7646f3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394006849)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998806849)\\/\",\"ClientRequestId\":\"6217bee6-4619-44f9-9c5d-3a3d17d4de0a-2020-05-02 05:33:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rkOeazhygD4tlWRySsfyfMMWH6beZZ+YCnYdhyB/o5Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725896229)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330696229)\\/\",\"ClientRequestId\":\"7eb63a0e-4aad-4afd-b287-f84ce487237a-2021-04-18 07:04:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Mf6VcDeQqtvQvQCH8pNE7kjYOvq3tx7g7PCqWQw2pmg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18233,35 +17678,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11790" + "11816" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "12abf094-7b8b-45c2-96f3-88572ec4f255" + "bae7232e-0ca6-4d60-b164-bada8d7b1716" ], "x-ms-client-request-id": [ - "6217bee6-4619-44f9-9c5d-3a3d17d4de0a-2020-05-02 05:33:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c854d615-b46b-40fc-8da7-9e62ea7646f3" ], "x-ms-correlation-request-id": [ - "12abf094-7b8b-45c2-96f3-88572ec4f255" + "bae7232e-0ca6-4d60-b164-bada8d7b1716" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053326Z:12abf094-7b8b-45c2-96f3-88572ec4f255" + "CENTRALUSEUAP:20210418T070456Z:bae7232e-0ca6-4d60-b164-bada8d7b1716" ], "Date": [ - "Sat, 02 May 2020 05:33:26 GMT" + "Sun, 18 Apr 2021 07:04:56 GMT" ], "Content-Length": [ "4554" @@ -18273,29 +17715,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b12f0a6a-a0f8-4b60-97f3-9882b0398c89-2020-05-02 05:33:37Z-Ps" + "5da51ac9-0db1-4ebb-9594-3a554936de3e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394017196)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998817196)\\/\",\"ClientRequestId\":\"b12f0a6a-a0f8-4b60-97f3-9882b0398c89-2020-05-02 05:33:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oIldoOGtLn/Xr8HlHqj75Ecf+CQ+FKex0AkjS2tlu70=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725906637)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330706637)\\/\",\"ClientRequestId\":\"cf07b0e1-d881-41db-9812-69d1536d5e9d-2021-04-18 07:05:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"E1iwrzC5Yu9trISDfmqptALvCMt4g8sfcZvw2BCV00k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18305,36 +17747,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11815" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "a4a48bd0-778c-46d0-a229-8d798456c6d9" + "b6a1dede-9abd-4298-adcc-33fff876e7ac" ], "x-ms-client-request-id": [ - "b12f0a6a-a0f8-4b60-97f3-9882b0398c89-2020-05-02 05:33:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11789" + "5da51ac9-0db1-4ebb-9594-3a554936de3e" ], "x-ms-correlation-request-id": [ - "a4a48bd0-778c-46d0-a229-8d798456c6d9" + "b6a1dede-9abd-4298-adcc-33fff876e7ac" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053337Z:a4a48bd0-778c-46d0-a229-8d798456c6d9" + "CENTRALUSEUAP:20210418T070506Z:b6a1dede-9abd-4298-adcc-33fff876e7ac" ], "Date": [ - "Sat, 02 May 2020 05:33:37 GMT" + "Sun, 18 Apr 2021 07:05:06 GMT" ], "Content-Length": [ "4554" @@ -18346,29 +17785,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97f8b012-08ef-444f-a96d-1accf2c791e5-2020-05-02 05:33:47Z-Ps" + "87e0de7b-fada-469e-aabd-f1ecccb1a488" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394027589)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998827589)\\/\",\"ClientRequestId\":\"97f8b012-08ef-444f-a96d-1accf2c791e5-2020-05-02 05:33:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LlA7djT47f43PPVFaQ4Ur2lJJqlVl/rkQRnDsy3iQIY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725916966)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330716966)\\/\",\"ClientRequestId\":\"36526802-3a16-4342-91cf-ee89d71b01fa-2021-04-18 07:05:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qeckgWD+vxAbOQ4vAbi2N2kxmxK/4/TSLYp33AgMITU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18379,35 +17818,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11788" + "11814" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "0910205e-a8bb-4042-beca-1e1a83668d66" + "b27f8285-8ec4-4a35-b6b5-023d36c28c6a" ], "x-ms-client-request-id": [ - "97f8b012-08ef-444f-a96d-1accf2c791e5-2020-05-02 05:33:47Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "87e0de7b-fada-469e-aabd-f1ecccb1a488" ], "x-ms-correlation-request-id": [ - "0910205e-a8bb-4042-beca-1e1a83668d66" + "b27f8285-8ec4-4a35-b6b5-023d36c28c6a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053348Z:0910205e-a8bb-4042-beca-1e1a83668d66" + "CENTRALUSEUAP:20210418T070517Z:b27f8285-8ec4-4a35-b6b5-023d36c28c6a" ], "Date": [ - "Sat, 02 May 2020 05:33:47 GMT" + "Sun, 18 Apr 2021 07:05:16 GMT" ], "Content-Length": [ "4554" @@ -18419,29 +17855,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b5eb9c9-a1ca-4e18-98d2-b49baea2742a-2020-05-02 05:33:58Z-Ps" + "a2a0306d-a034-4127-82db-7411e6007a72" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394038268)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998838268)\\/\",\"ClientRequestId\":\"0b5eb9c9-a1ca-4e18-98d2-b49baea2742a-2020-05-02 05:33:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"djk+atUvM4FaPuRNHIxsz+qrMgGWWLXhrgTCUt+sJj0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725927327)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330727327)\\/\",\"ClientRequestId\":\"ca49c2b4-ff3a-4104-8615-52b46b1bdaf8-2021-04-18 07:05:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2t3w/Cbm/UDSXWKRaqtY+3frhfJTCb3/b2iARvAJSQo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18452,35 +17888,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11787" + "11813" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2f4d0963-1e90-4e00-a79f-8f9b774a9237" + "8bbe2eb0-fbdf-427d-a695-659d506e1c4b" ], "x-ms-client-request-id": [ - "0b5eb9c9-a1ca-4e18-98d2-b49baea2742a-2020-05-02 05:33:58Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a2a0306d-a034-4127-82db-7411e6007a72" ], "x-ms-correlation-request-id": [ - "2f4d0963-1e90-4e00-a79f-8f9b774a9237" + "8bbe2eb0-fbdf-427d-a695-659d506e1c4b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053358Z:2f4d0963-1e90-4e00-a79f-8f9b774a9237" + "CENTRALUSEUAP:20210418T070527Z:8bbe2eb0-fbdf-427d-a695-659d506e1c4b" ], "Date": [ - "Sat, 02 May 2020 05:33:57 GMT" + "Sun, 18 Apr 2021 07:05:26 GMT" ], "Content-Length": [ "4554" @@ -18492,29 +17925,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "333c0797-ba41-4f3d-a5f8-3578345a1e09-2020-05-02 05:34:08Z-Ps" + "a333434e-c8a8-437f-93fc-7aa0a8b9cffc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394048584)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998848584)\\/\",\"ClientRequestId\":\"333c0797-ba41-4f3d-a5f8-3578345a1e09-2020-05-02 05:34:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NZFLd78Kii2COJ9CrQP1FC/8dmlZouv3kgRv6KGpv0c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725937649)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330737649)\\/\",\"ClientRequestId\":\"273c6769-b835-4332-aaf4-2294aeeaa4ba-2021-04-18 07:05:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mJ/RogUAfcIpkxpBqnYqXpW9r2dw/zu8HmG9zOoZKo4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18525,35 +17958,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11786" + "11812" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "841a274c-b3e2-43d2-8086-2f4a4a68d8b2" + "a0005ede-1ee2-40c5-8431-752c8f2c4d97" ], "x-ms-client-request-id": [ - "333c0797-ba41-4f3d-a5f8-3578345a1e09-2020-05-02 05:34:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a333434e-c8a8-437f-93fc-7aa0a8b9cffc" ], "x-ms-correlation-request-id": [ - "841a274c-b3e2-43d2-8086-2f4a4a68d8b2" + "a0005ede-1ee2-40c5-8431-752c8f2c4d97" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053408Z:841a274c-b3e2-43d2-8086-2f4a4a68d8b2" + "CENTRALUSEUAP:20210418T070537Z:a0005ede-1ee2-40c5-8431-752c8f2c4d97" ], "Date": [ - "Sat, 02 May 2020 05:34:07 GMT" + "Sun, 18 Apr 2021 07:05:37 GMT" ], "Content-Length": [ "4554" @@ -18565,29 +17995,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3730dde8-febf-4281-a189-bef835c89d21-2020-05-02 05:34:18Z-Ps" + "243dfd59-2e37-41a5-83a3-47abd6773309" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394058918)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998858918)\\/\",\"ClientRequestId\":\"3730dde8-febf-4281-a189-bef835c89d21-2020-05-02 05:34:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NL0+XfKDJafI27FaZaNWooZeyYoofXn/47DMXVa2L5c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725947999)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330747999)\\/\",\"ClientRequestId\":\"53a36dba-29a9-481c-a51d-4f4b76349bbe-2021-04-18 07:05:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tX05UHMKUnWqf/c0iTCzgf8EC3GQfS3AGIZtn2400ds=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18598,35 +18028,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11785" + "11811" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5404d7d3-e116-416b-895c-c590f83357eb" + "d64b6943-0f87-4abc-ad8c-dca51c074aad" ], "x-ms-client-request-id": [ - "3730dde8-febf-4281-a189-bef835c89d21-2020-05-02 05:34:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "243dfd59-2e37-41a5-83a3-47abd6773309" ], "x-ms-correlation-request-id": [ - "5404d7d3-e116-416b-895c-c590f83357eb" + "d64b6943-0f87-4abc-ad8c-dca51c074aad" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053419Z:5404d7d3-e116-416b-895c-c590f83357eb" + "CENTRALUSEUAP:20210418T070548Z:d64b6943-0f87-4abc-ad8c-dca51c074aad" ], "Date": [ - "Sat, 02 May 2020 05:34:19 GMT" + "Sun, 18 Apr 2021 07:05:47 GMT" ], "Content-Length": [ "4554" @@ -18638,29 +18065,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4014a65c-4ffa-4974-9df3-6751e4eac493-2020-05-02 05:34:29Z-Ps" + "e280e71a-da8a-43b0-9658-e1cb891d689f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394069268)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998869268)\\/\",\"ClientRequestId\":\"4014a65c-4ffa-4974-9df3-6751e4eac493-2020-05-02 05:34:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UBVeppwb941lt7LE+1Xz/esGxZkVTh6vAeKTZbNeFhA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725958339)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330758339)\\/\",\"ClientRequestId\":\"87139627-a344-4168-bf5c-adb2b6d22f22-2021-04-18 07:05:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"elFEOAc2kLOMnmofcxhKyIlHVnmF5FrDCt6JW78UVvk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18670,36 +18097,33 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11784" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d2349084-e87f-4340-8eb4-07851046acda" + "c51c3c63-f9a4-4be0-84cc-d9d0fd788ef1" ], "x-ms-client-request-id": [ - "4014a65c-4ffa-4974-9df3-6751e4eac493-2020-05-02 05:34:29Z-Ps" + "e280e71a-da8a-43b0-9658-e1cb891d689f" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11810" ], "x-ms-correlation-request-id": [ - "d2349084-e87f-4340-8eb4-07851046acda" + "c51c3c63-f9a4-4be0-84cc-d9d0fd788ef1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053429Z:d2349084-e87f-4340-8eb4-07851046acda" + "CENTRALUSEUAP:20210418T070558Z:c51c3c63-f9a4-4be0-84cc-d9d0fd788ef1" ], "Date": [ - "Sat, 02 May 2020 05:34:29 GMT" + "Sun, 18 Apr 2021 07:05:58 GMT" ], "Content-Length": [ "4554" @@ -18711,29 +18135,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f491ece7-5b32-4bc5-96db-4f064b628a40-2020-05-02 05:34:39Z-Ps" + "010e592c-9bdb-4204-bbe3-94dab18c905d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394079629)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998879629)\\/\",\"ClientRequestId\":\"f491ece7-5b32-4bc5-96db-4f064b628a40-2020-05-02 05:34:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zy89tMuapOjPPDyN+urnacYP/VkaFU3x1HcWPCrpPRg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725968673)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330768673)\\/\",\"ClientRequestId\":\"e427a27c-2c89-4338-a77b-55994a19e86d-2021-04-18 07:06:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"e9hPjl308SY6WRgAfHTRR1IlCCfiMFc6iW5oanRj+e4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18744,35 +18168,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11783" + "11809" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "41b1fbbc-5214-42b3-81d0-f0f4ef40caf9" + "cc766ca1-a9bb-42b6-802b-9a08fd764f6b" ], "x-ms-client-request-id": [ - "f491ece7-5b32-4bc5-96db-4f064b628a40-2020-05-02 05:34:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "010e592c-9bdb-4204-bbe3-94dab18c905d" ], "x-ms-correlation-request-id": [ - "41b1fbbc-5214-42b3-81d0-f0f4ef40caf9" + "cc766ca1-a9bb-42b6-802b-9a08fd764f6b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053439Z:41b1fbbc-5214-42b3-81d0-f0f4ef40caf9" + "CENTRALUSEUAP:20210418T070608Z:cc766ca1-a9bb-42b6-802b-9a08fd764f6b" ], "Date": [ - "Sat, 02 May 2020 05:34:38 GMT" + "Sun, 18 Apr 2021 07:06:08 GMT" ], "Content-Length": [ "4554" @@ -18784,29 +18205,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0bce4746-a911-44bf-a4a0-2a8700dd1685-2020-05-02 05:34:49Z-Ps" + "1f5488ac-aa36-4318-8e34-f1c701bd1592" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394089965)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998889965)\\/\",\"ClientRequestId\":\"0bce4746-a911-44bf-a4a0-2a8700dd1685-2020-05-02 05:34:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VXMN2TlgBVI0TOgOIbl+8jbp1axOdOrJg7AVjsK+s6I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725979173)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330779173)\\/\",\"ClientRequestId\":\"28473186-45cf-4dad-af83-d1d1a1f79e71-2021-04-18 07:06:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UCBA95qdpe+YQZPoj+/Fi4fAagwVfpIgk5cDJw630hA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18816,36 +18237,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11808" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5bf5bf34-3ef5-4683-9709-85270b5b95b9" + "ba1d16d3-1e10-4a2c-b4b7-2b4a588aa8b4" ], "x-ms-client-request-id": [ - "0bce4746-a911-44bf-a4a0-2a8700dd1685-2020-05-02 05:34:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11782" + "1f5488ac-aa36-4318-8e34-f1c701bd1592" ], "x-ms-correlation-request-id": [ - "5bf5bf34-3ef5-4683-9709-85270b5b95b9" + "ba1d16d3-1e10-4a2c-b4b7-2b4a588aa8b4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053450Z:5bf5bf34-3ef5-4683-9709-85270b5b95b9" + "CENTRALUSEUAP:20210418T070619Z:ba1d16d3-1e10-4a2c-b4b7-2b4a588aa8b4" ], "Date": [ - "Sat, 02 May 2020 05:34:49 GMT" + "Sun, 18 Apr 2021 07:06:19 GMT" ], "Content-Length": [ "4554" @@ -18857,29 +18275,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce0e626f-127e-4351-9bf2-a20f380e904b-2020-05-02 05:35:00Z-Ps" + "5f395d1e-cb04-47b3-964c-a74c8c99e325" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394100273)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998900273)\\/\",\"ClientRequestId\":\"ce0e626f-127e-4351-9bf2-a20f380e904b-2020-05-02 05:35:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"a4rDU9ks8jfCyC2A5rM0wf7xSav9lJN8BX9AbMUUpZo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725989504)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330789504)\\/\",\"ClientRequestId\":\"88cc9a34-2a58-4c11-a486-04d95471c0ba-2021-04-18 07:06:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JQOfwH0QsQsvQqByouXItrIfMHx85ZLglP++ZG/EJrY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18890,35 +18308,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11781" + "11807" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "61d2c9d3-1016-4017-b769-640636a7dfa7" + "67be1bb7-c581-4964-9c87-226437ab88c4" ], "x-ms-client-request-id": [ - "ce0e626f-127e-4351-9bf2-a20f380e904b-2020-05-02 05:35:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5f395d1e-cb04-47b3-964c-a74c8c99e325" ], "x-ms-correlation-request-id": [ - "61d2c9d3-1016-4017-b769-640636a7dfa7" + "67be1bb7-c581-4964-9c87-226437ab88c4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053500Z:61d2c9d3-1016-4017-b769-640636a7dfa7" + "CENTRALUSEUAP:20210418T070629Z:67be1bb7-c581-4964-9c87-226437ab88c4" ], "Date": [ - "Sat, 02 May 2020 05:35:00 GMT" + "Sun, 18 Apr 2021 07:06:29 GMT" ], "Content-Length": [ "4554" @@ -18930,29 +18345,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfea9343-00a8-4f0a-98b6-8cfdc8af22da-2020-05-02 05:35:10Z-Ps" + "1acd5b3f-a7a6-4327-a614-d6c79000234e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394110776)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998910776)\\/\",\"ClientRequestId\":\"cfea9343-00a8-4f0a-98b6-8cfdc8af22da-2020-05-02 05:35:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cpc6TEydOC8MiNGYlRGnjlM0BNd79ZvICxCH/2oPO1s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618725999825)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330799825)\\/\",\"ClientRequestId\":\"7c07920c-b22e-4c07-9bcb-b28e3d6b985e-2021-04-18 07:06:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OKDc8WLZFom9NjNn7YyCDI6BAtCGjA9r2m+MXFm9Kog=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -18963,35 +18378,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11780" + "11806" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "57800a5b-76d1-4da8-a95f-80e9151435ed" + "9618fb7b-4dc6-44ce-bb46-c2d6ffba5f60" ], "x-ms-client-request-id": [ - "cfea9343-00a8-4f0a-98b6-8cfdc8af22da-2020-05-02 05:35:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1acd5b3f-a7a6-4327-a614-d6c79000234e" ], "x-ms-correlation-request-id": [ - "57800a5b-76d1-4da8-a95f-80e9151435ed" + "9618fb7b-4dc6-44ce-bb46-c2d6ffba5f60" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053510Z:57800a5b-76d1-4da8-a95f-80e9151435ed" + "CENTRALUSEUAP:20210418T070639Z:9618fb7b-4dc6-44ce-bb46-c2d6ffba5f60" ], "Date": [ - "Sat, 02 May 2020 05:35:10 GMT" + "Sun, 18 Apr 2021 07:06:39 GMT" ], "Content-Length": [ "4554" @@ -19003,29 +18415,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1e6915e-a66e-41d5-bd00-8477d9521ada-2020-05-02 05:35:21Z-Ps" + "dccefd01-323e-4153-be0c-d8b1788af875" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394121098)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998921098)\\/\",\"ClientRequestId\":\"a1e6915e-a66e-41d5-bd00-8477d9521ada-2020-05-02 05:35:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MPxn+gEPei5LFLuYork2k0A5EtBDl5vBwV5/xuLLTCs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726010158)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330810158)\\/\",\"ClientRequestId\":\"f0385bfb-fb5f-413e-b16f-bb7b34e1785f-2021-04-18 07:06:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GB2PGbLe6O2XjgDX7hkieTHnFXHS+9EZ6R/9asCYNlY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19036,35 +18448,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11779" + "11805" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "db4a0190-31ed-4591-8367-cfba8a25d20e" + "126aba60-75aa-4189-bd31-c47cd71541c5" ], "x-ms-client-request-id": [ - "a1e6915e-a66e-41d5-bd00-8477d9521ada-2020-05-02 05:35:21Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "dccefd01-323e-4153-be0c-d8b1788af875" ], "x-ms-correlation-request-id": [ - "db4a0190-31ed-4591-8367-cfba8a25d20e" + "126aba60-75aa-4189-bd31-c47cd71541c5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053521Z:db4a0190-31ed-4591-8367-cfba8a25d20e" + "CENTRALUSEUAP:20210418T070650Z:126aba60-75aa-4189-bd31-c47cd71541c5" ], "Date": [ - "Sat, 02 May 2020 05:35:20 GMT" + "Sun, 18 Apr 2021 07:06:49 GMT" ], "Content-Length": [ "4554" @@ -19076,29 +18485,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e50cd76a-8ea2-4997-b928-5fce8db665be-2020-05-02 05:35:31Z-Ps" + "5aa5ff2f-3f06-4189-a368-5000dfd6c0c5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394131444)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998931444)\\/\",\"ClientRequestId\":\"e50cd76a-8ea2-4997-b928-5fce8db665be-2020-05-02 05:35:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TP/A+LAJD1CSPdM7iUp1V8ZYBuKJ2ZMrEtDNlyCMt60=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726020480)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330820480)\\/\",\"ClientRequestId\":\"523ede66-0d4e-4357-8bab-3b0bb00b084f-2021-04-18 07:07:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YH299FqTV5xOpvgRBdzD31mqTS9kU99PfX445uHT+Cc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19109,35 +18518,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11778" + "11804" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "135fbae8-b1bc-4c40-ac26-ab0c4dc2bf3d" + "9bcc4025-aedc-4992-a99e-3d82e5d1b7a4" ], "x-ms-client-request-id": [ - "e50cd76a-8ea2-4997-b928-5fce8db665be-2020-05-02 05:35:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5aa5ff2f-3f06-4189-a368-5000dfd6c0c5" ], "x-ms-correlation-request-id": [ - "135fbae8-b1bc-4c40-ac26-ab0c4dc2bf3d" + "9bcc4025-aedc-4992-a99e-3d82e5d1b7a4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053531Z:135fbae8-b1bc-4c40-ac26-ab0c4dc2bf3d" + "CENTRALUSEUAP:20210418T070700Z:9bcc4025-aedc-4992-a99e-3d82e5d1b7a4" ], "Date": [ - "Sat, 02 May 2020 05:35:30 GMT" + "Sun, 18 Apr 2021 07:07:00 GMT" ], "Content-Length": [ "4554" @@ -19149,29 +18555,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2d9a869a-a64f-4e01-a0f3-b28e8f6800ec-2020-05-02 05:35:41Z-Ps" + "0b3ca663-228f-4c62-964a-f29e7b30123f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394141786)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998941786)\\/\",\"ClientRequestId\":\"2d9a869a-a64f-4e01-a0f3-b28e8f6800ec-2020-05-02 05:35:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"emPDyz7J+0eusUJ0w80iXGPtV4lS5b6I57PUR8XeHj0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726030805)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330830805)\\/\",\"ClientRequestId\":\"7ddb4bec-ce58-4f26-a833-704c1cc863b3-2021-04-18 07:07:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lXWx+7NgO89+A4qBDMaWjuukSvFcyhhfMu3qyzWWa/k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19182,35 +18588,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11777" + "11803" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9028acb8-0437-4538-970b-c90c932557de" + "ef75afc3-8c1d-415d-ba2d-0602b44df705" ], "x-ms-client-request-id": [ - "2d9a869a-a64f-4e01-a0f3-b28e8f6800ec-2020-05-02 05:35:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0b3ca663-228f-4c62-964a-f29e7b30123f" ], "x-ms-correlation-request-id": [ - "9028acb8-0437-4538-970b-c90c932557de" + "ef75afc3-8c1d-415d-ba2d-0602b44df705" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053541Z:9028acb8-0437-4538-970b-c90c932557de" + "CENTRALUSEUAP:20210418T070710Z:ef75afc3-8c1d-415d-ba2d-0602b44df705" ], "Date": [ - "Sat, 02 May 2020 05:35:41 GMT" + "Sun, 18 Apr 2021 07:07:10 GMT" ], "Content-Length": [ "4554" @@ -19222,29 +18625,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "336e8dc1-699a-4c28-b92b-b4f54bcbf4d1-2020-05-02 05:35:52Z-Ps" + "931b131f-d07e-4dcc-a516-053305965a69" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394152100)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998952100)\\/\",\"ClientRequestId\":\"336e8dc1-699a-4c28-b92b-b4f54bcbf4d1-2020-05-02 05:35:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HwansU/4UeDCP8xO9uGylgUhP08Ie7R7S84w0EgzFLI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726041121)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330841121)\\/\",\"ClientRequestId\":\"8182113d-936e-45e3-9950-a61fc938475b-2021-04-18 07:07:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yXFEnQNRv3IuGu3G8sZiD89EPeSS0KdQfxCeer383eQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19255,35 +18658,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11776" + "11802" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3bb56a07-d9e1-45b4-b9b6-c6311c7bba59" + "4b8bd213-ff6b-4cc0-9586-90721ed7861c" ], "x-ms-client-request-id": [ - "336e8dc1-699a-4c28-b92b-b4f54bcbf4d1-2020-05-02 05:35:52Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "931b131f-d07e-4dcc-a516-053305965a69" ], "x-ms-correlation-request-id": [ - "3bb56a07-d9e1-45b4-b9b6-c6311c7bba59" + "4b8bd213-ff6b-4cc0-9586-90721ed7861c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053552Z:3bb56a07-d9e1-45b4-b9b6-c6311c7bba59" + "CENTRALUSEUAP:20210418T070721Z:4b8bd213-ff6b-4cc0-9586-90721ed7861c" ], "Date": [ - "Sat, 02 May 2020 05:35:51 GMT" + "Sun, 18 Apr 2021 07:07:21 GMT" ], "Content-Length": [ "4554" @@ -19295,29 +18695,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b68dd034-02d3-4e73-8d3d-80b958e979f8-2020-05-02 05:36:02Z-Ps" + "35f18b01-6134-444b-bfa9-a9b524a55418" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394162521)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998962521)\\/\",\"ClientRequestId\":\"b68dd034-02d3-4e73-8d3d-80b958e979f8-2020-05-02 05:36:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PBZZVB2Xee0R7FiL41TgFkd0nSehhX75/TI20NB+zTA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726051507)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330851507)\\/\",\"ClientRequestId\":\"7149e73d-acef-43d0-b031-7e4a5c3ccfd4-2021-04-18 07:07:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UteM0zg+7ThM6eX0h2TZ3i811KGP72VU3aYBADf9Dxw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19327,36 +18727,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11801" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6f7869a5-3d54-4d14-954e-d5b99c8d908a" + "e03dc14e-0980-44cf-a15e-bd8b968c7408" ], "x-ms-client-request-id": [ - "b68dd034-02d3-4e73-8d3d-80b958e979f8-2020-05-02 05:36:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11775" + "35f18b01-6134-444b-bfa9-a9b524a55418" ], "x-ms-correlation-request-id": [ - "6f7869a5-3d54-4d14-954e-d5b99c8d908a" + "e03dc14e-0980-44cf-a15e-bd8b968c7408" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053602Z:6f7869a5-3d54-4d14-954e-d5b99c8d908a" + "CENTRALUSEUAP:20210418T070731Z:e03dc14e-0980-44cf-a15e-bd8b968c7408" ], "Date": [ - "Sat, 02 May 2020 05:36:01 GMT" + "Sun, 18 Apr 2021 07:07:31 GMT" ], "Content-Length": [ "4554" @@ -19368,29 +18765,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d7ac043-82a3-44bb-b409-607c9c01a620-2020-05-02 05:36:12Z-Ps" + "83158f03-334b-4e92-959c-47b6bedf319b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394172881)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998972881)\\/\",\"ClientRequestId\":\"5d7ac043-82a3-44bb-b409-607c9c01a620-2020-05-02 05:36:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AlSsJumZuR3dRVhp4kmQAKWaPvlIXCqhwqPZfLv+pQM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726061834)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330861834)\\/\",\"ClientRequestId\":\"6a1319b0-139a-4e76-a6fb-110981fa9bfa-2021-04-18 07:07:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"13QRbzSwktPgM2TDkHHMinoqcuN8Nk825M2mrA8QVFU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19401,35 +18798,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11774" + "11800" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "277682f4-df79-42a2-8eab-9fad2ea212ba" + "52e8532b-1488-440a-a52c-7be2e6e7c793" ], "x-ms-client-request-id": [ - "5d7ac043-82a3-44bb-b409-607c9c01a620-2020-05-02 05:36:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "83158f03-334b-4e92-959c-47b6bedf319b" ], "x-ms-correlation-request-id": [ - "277682f4-df79-42a2-8eab-9fad2ea212ba" + "52e8532b-1488-440a-a52c-7be2e6e7c793" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053613Z:277682f4-df79-42a2-8eab-9fad2ea212ba" + "CENTRALUSEUAP:20210418T070741Z:52e8532b-1488-440a-a52c-7be2e6e7c793" ], "Date": [ - "Sat, 02 May 2020 05:36:13 GMT" + "Sun, 18 Apr 2021 07:07:41 GMT" ], "Content-Length": [ "4554" @@ -19441,29 +18835,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a66b64cb-338b-4e17-88a2-0f82da53eb6e-2020-05-02 05:36:23Z-Ps" + "2a26a014-11d9-4eba-8758-eb39f43bfe5d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394183500)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998983500)\\/\",\"ClientRequestId\":\"a66b64cb-338b-4e17-88a2-0f82da53eb6e-2020-05-02 05:36:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"G679V4tYkk8FlB7dfGJ4IHWi5//zZjlSf3PTLiq1Kk0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726072158)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330872158)\\/\",\"ClientRequestId\":\"9beb945e-ba3e-47f9-9c78-7c2d6847257c-2021-04-18 07:07:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"G40zhh4irGmeGZKP7POL6DAyYbldo/eKieKX+1kPdTg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19474,35 +18868,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11773" + "11799" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5b3bdc87-6a8b-4e20-ae73-75d2a858fdd5" + "db220240-8db9-4868-b45d-130a7bb58429" ], "x-ms-client-request-id": [ - "a66b64cb-338b-4e17-88a2-0f82da53eb6e-2020-05-02 05:36:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "2a26a014-11d9-4eba-8758-eb39f43bfe5d" ], "x-ms-correlation-request-id": [ - "5b3bdc87-6a8b-4e20-ae73-75d2a858fdd5" + "db220240-8db9-4868-b45d-130a7bb58429" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053623Z:5b3bdc87-6a8b-4e20-ae73-75d2a858fdd5" + "CENTRALUSEUAP:20210418T070752Z:db220240-8db9-4868-b45d-130a7bb58429" ], "Date": [ - "Sat, 02 May 2020 05:36:23 GMT" + "Sun, 18 Apr 2021 07:07:51 GMT" ], "Content-Length": [ "4554" @@ -19514,29 +18905,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "600e09fa-4099-493d-a442-e4ef3caf5692-2020-05-02 05:36:33Z-Ps" + "28de2b26-31e6-4dd0-839a-69438c1fba81" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394193850)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588998993850)\\/\",\"ClientRequestId\":\"600e09fa-4099-493d-a442-e4ef3caf5692-2020-05-02 05:36:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Q5pURuUMHPiFFwGh4c22R1LWoT2axwZ8kHgaFxYctHk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726082503)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330882503)\\/\",\"ClientRequestId\":\"6249e9a7-a43d-423c-8aa6-6b75b093655f-2021-04-18 07:08:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5hH/hz5kb3g2aftBpUnXWEhnxXdotZkryP078cJQf6k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19547,35 +18938,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11772" + "11798" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "fbfdc39b-2b0f-45a1-b4a6-3d4bafb4ff9d" + "08ffc2c2-a067-479d-ae91-7fdddfd68ab4" ], "x-ms-client-request-id": [ - "600e09fa-4099-493d-a442-e4ef3caf5692-2020-05-02 05:36:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "28de2b26-31e6-4dd0-839a-69438c1fba81" ], "x-ms-correlation-request-id": [ - "fbfdc39b-2b0f-45a1-b4a6-3d4bafb4ff9d" + "08ffc2c2-a067-479d-ae91-7fdddfd68ab4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053634Z:fbfdc39b-2b0f-45a1-b4a6-3d4bafb4ff9d" + "CENTRALUSEUAP:20210418T070802Z:08ffc2c2-a067-479d-ae91-7fdddfd68ab4" ], "Date": [ - "Sat, 02 May 2020 05:36:33 GMT" + "Sun, 18 Apr 2021 07:08:02 GMT" ], "Content-Length": [ "4554" @@ -19587,29 +18975,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0eb4e8cc-b507-4e21-ad1c-d449c50cef4c-2020-05-02 05:36:44Z-Ps" + "442172f6-3cca-4215-8344-3072b97f9a14" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394204268)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999004268)\\/\",\"ClientRequestId\":\"0eb4e8cc-b507-4e21-ad1c-d449c50cef4c-2020-05-02 05:36:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KDvIGLYBFunXrP41txyLRQfrps5xZCGuhQswldmYO+w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726092837)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330892837)\\/\",\"ClientRequestId\":\"290963d4-9ae1-4d69-a1c4-d1e118bc464f-2021-04-18 07:08:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ODVKqwGRPLT30Ez6lvIPpREZNoPoAaO3+EMzoNqGjiU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19620,35 +19008,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11771" + "11797" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "6f667b86-bb3f-4f7c-a52b-119f9aa5b326" + "3232a50b-6b29-428d-a114-926c77b2e582" ], "x-ms-client-request-id": [ - "0eb4e8cc-b507-4e21-ad1c-d449c50cef4c-2020-05-02 05:36:44Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "442172f6-3cca-4215-8344-3072b97f9a14" ], "x-ms-correlation-request-id": [ - "6f667b86-bb3f-4f7c-a52b-119f9aa5b326" + "3232a50b-6b29-428d-a114-926c77b2e582" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053644Z:6f667b86-bb3f-4f7c-a52b-119f9aa5b326" + "CENTRALUSEUAP:20210418T070813Z:3232a50b-6b29-428d-a114-926c77b2e582" ], "Date": [ - "Sat, 02 May 2020 05:36:44 GMT" + "Sun, 18 Apr 2021 07:08:12 GMT" ], "Content-Length": [ "4554" @@ -19660,29 +19045,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "910d63e5-f895-4acd-ae81-f723af0d3646-2020-05-02 05:36:55Z-Ps" + "e139bb53-9ddd-406d-a59b-94c9920bfd06" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394215643)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999015643)\\/\",\"ClientRequestId\":\"910d63e5-f895-4acd-ae81-f723af0d3646-2020-05-02 05:36:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"C0Kr/Y9e0xCbm86YJhwTM3zmCwA1eDU0T8YIXv40d6A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726103212)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330903212)\\/\",\"ClientRequestId\":\"55bd7ee6-6f38-4272-95bb-8a3a7ba73f60-2021-04-18 07:08:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UOoumvpJpNIL32xy+O6ailFHK2bJVUtLG3oyMa+I/r4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19693,35 +19078,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11770" + "11796" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "79fe4a56-779a-475b-851d-0050b8aecea0" + "92f3b45d-3e52-47c8-9511-2da6444f693c" ], "x-ms-client-request-id": [ - "910d63e5-f895-4acd-ae81-f723af0d3646-2020-05-02 05:36:55Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e139bb53-9ddd-406d-a59b-94c9920bfd06" ], "x-ms-correlation-request-id": [ - "79fe4a56-779a-475b-851d-0050b8aecea0" + "92f3b45d-3e52-47c8-9511-2da6444f693c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053656Z:79fe4a56-779a-475b-851d-0050b8aecea0" + "CENTRALUSEUAP:20210418T070823Z:92f3b45d-3e52-47c8-9511-2da6444f693c" ], "Date": [ - "Sat, 02 May 2020 05:36:56 GMT" + "Sun, 18 Apr 2021 07:08:23 GMT" ], "Content-Length": [ "4554" @@ -19733,29 +19115,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "58675ef4-6a94-4127-8544-75734be2cd65-2020-05-02 05:37:07Z-Ps" + "8ad28da6-6e78-4bcf-a971-de516a19eb10" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394227849)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999027849)\\/\",\"ClientRequestId\":\"58675ef4-6a94-4127-8544-75734be2cd65-2020-05-02 05:37:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ztj/d9oHrodeRyGoCfPxOwhRWZeWEMSFt10dFqGYlpY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726113540)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330913540)\\/\",\"ClientRequestId\":\"f4da357d-cf09-48ad-a8d7-e6025a9250fc-2021-04-18 07:08:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rIh/5a4YkN9fhW6Z+kWFB/k0w8YNwh48qfnUXP/VLzg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19766,35 +19148,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11769" + "11795" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "e436adbe-17d3-404d-bf44-f7cc0f0a824e" + "a10e66a5-da23-408f-901f-003282070569" ], "x-ms-client-request-id": [ - "58675ef4-6a94-4127-8544-75734be2cd65-2020-05-02 05:37:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8ad28da6-6e78-4bcf-a971-de516a19eb10" ], "x-ms-correlation-request-id": [ - "e436adbe-17d3-404d-bf44-f7cc0f0a824e" + "a10e66a5-da23-408f-901f-003282070569" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053708Z:e436adbe-17d3-404d-bf44-f7cc0f0a824e" + "CENTRALUSEUAP:20210418T070833Z:a10e66a5-da23-408f-901f-003282070569" ], "Date": [ - "Sat, 02 May 2020 05:37:07 GMT" + "Sun, 18 Apr 2021 07:08:33 GMT" ], "Content-Length": [ "4554" @@ -19806,29 +19185,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12e5d79f-6410-4bdb-ac72-08fcf9761cf1-2020-05-02 05:37:18Z-Ps" + "a3ed8970-3557-467a-bbd5-658ffc5d4b4d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394238195)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999038195)\\/\",\"ClientRequestId\":\"12e5d79f-6410-4bdb-ac72-08fcf9761cf1-2020-05-02 05:37:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wg2cb01TVqIWeIMQGKTMZuWSiOXGKPJR0fxNSOajmpo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726123871)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330923871)\\/\",\"ClientRequestId\":\"5839269e-f2f4-4843-bb63-f5371310618e-2021-04-18 07:08:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JqNH0PyYUjkBGU0Jafgc0aOsBioo+52fz8/lQccewQY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19838,36 +19217,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11794" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "53053869-3d92-4d6b-a85b-add462cd10b9" + "9dbaaefa-14f4-45e6-a26f-d6775fffc993" ], "x-ms-client-request-id": [ - "12e5d79f-6410-4bdb-ac72-08fcf9761cf1-2020-05-02 05:37:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11768" + "a3ed8970-3557-467a-bbd5-658ffc5d4b4d" ], "x-ms-correlation-request-id": [ - "53053869-3d92-4d6b-a85b-add462cd10b9" + "9dbaaefa-14f4-45e6-a26f-d6775fffc993" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053718Z:53053869-3d92-4d6b-a85b-add462cd10b9" + "CENTRALUSEUAP:20210418T070844Z:9dbaaefa-14f4-45e6-a26f-d6775fffc993" ], "Date": [ - "Sat, 02 May 2020 05:37:17 GMT" + "Sun, 18 Apr 2021 07:08:43 GMT" ], "Content-Length": [ "4554" @@ -19879,29 +19255,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc1ed8b2-1eb4-45e3-bd92-eea9ff2bf4d6-2020-05-02 05:37:28Z-Ps" + "fedf6d6a-6125-4a48-8a36-8b0e2d0facd1" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394248547)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999048547)\\/\",\"ClientRequestId\":\"fc1ed8b2-1eb4-45e3-bd92-eea9ff2bf4d6-2020-05-02 05:37:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yhnf8c3FnHsZGnGBE+OWpxt9RHcceN1ScgomwgQsYVg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726134195)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330934195)\\/\",\"ClientRequestId\":\"9cbf7f3c-fef4-4a98-81f3-23681901b51a-2021-04-18 07:08:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VSN1BJ0E+FVARYzoqDLHY3oY/BmIEOxtMS2bUWZwgCU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19912,35 +19288,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11767" + "11793" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "d8919234-ccd5-4af1-ab13-c60ffb023569" + "0bddb572-4077-4764-8b27-f5d316adddd8" ], "x-ms-client-request-id": [ - "fc1ed8b2-1eb4-45e3-bd92-eea9ff2bf4d6-2020-05-02 05:37:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "fedf6d6a-6125-4a48-8a36-8b0e2d0facd1" ], "x-ms-correlation-request-id": [ - "d8919234-ccd5-4af1-ab13-c60ffb023569" + "0bddb572-4077-4764-8b27-f5d316adddd8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053728Z:d8919234-ccd5-4af1-ab13-c60ffb023569" + "CENTRALUSEUAP:20210418T070854Z:0bddb572-4077-4764-8b27-f5d316adddd8" ], "Date": [ - "Sat, 02 May 2020 05:37:28 GMT" + "Sun, 18 Apr 2021 07:08:54 GMT" ], "Content-Length": [ "4554" @@ -19952,29 +19325,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f047dc11-37ca-4125-b670-a72618981db3-2020-05-02 05:37:39Z-Ps" + "09dda7c8-b682-4c48-ba5b-ef587b048472" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394259063)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999059063)\\/\",\"ClientRequestId\":\"f047dc11-37ca-4125-b670-a72618981db3-2020-05-02 05:37:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mUc4VSCUpgFCmcTgklyG/loPoSJ9UQrTKQyg5NB4mK4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726144520)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330944520)\\/\",\"ClientRequestId\":\"bfdeb60e-c356-4405-9ffc-c0e0c8326995-2021-04-18 07:09:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3bL8q1ZOeBlt4+XizaN1YQ5xYZzH7S1kOSEHd8Pu9G0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -19985,35 +19358,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11766" + "11792" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "935c7e5a-d541-4b6d-9cca-d06364d5ae89" + "b324b98d-d0e3-496e-a0bb-1f6ca92db671" ], "x-ms-client-request-id": [ - "f047dc11-37ca-4125-b670-a72618981db3-2020-05-02 05:37:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "09dda7c8-b682-4c48-ba5b-ef587b048472" ], "x-ms-correlation-request-id": [ - "935c7e5a-d541-4b6d-9cca-d06364d5ae89" + "b324b98d-d0e3-496e-a0bb-1f6ca92db671" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053739Z:935c7e5a-d541-4b6d-9cca-d06364d5ae89" + "CENTRALUSEUAP:20210418T070904Z:b324b98d-d0e3-496e-a0bb-1f6ca92db671" ], "Date": [ - "Sat, 02 May 2020 05:37:38 GMT" + "Sun, 18 Apr 2021 07:09:04 GMT" ], "Content-Length": [ "4554" @@ -20025,29 +19395,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "868fc407-edc3-42a3-a26d-acbe770f84bb-2020-05-02 05:37:49Z-Ps" + "479d9ee8-9ea4-44b0-8cf2-cf128627eefc" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394269422)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999069422)\\/\",\"ClientRequestId\":\"868fc407-edc3-42a3-a26d-acbe770f84bb-2020-05-02 05:37:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JNQhLprwG7u4Xtrln+E72ERZ/9sYyDYRRvCaK0eEuTs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726154884)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330954884)\\/\",\"ClientRequestId\":\"558672bd-e774-4e7b-9190-0ddb1a45b84a-2021-04-18 07:09:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kyJ2/4jLtZnft8Z3u52QYQQbibk/bGpRwSQY4YV3ulI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20058,35 +19428,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11765" + "11791" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "bc920767-7942-4370-86a5-c8a0fe83ea7f" + "c69272cb-265b-454f-85b6-7d35ff2ad5dd" ], "x-ms-client-request-id": [ - "868fc407-edc3-42a3-a26d-acbe770f84bb-2020-05-02 05:37:49Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "479d9ee8-9ea4-44b0-8cf2-cf128627eefc" ], "x-ms-correlation-request-id": [ - "bc920767-7942-4370-86a5-c8a0fe83ea7f" + "c69272cb-265b-454f-85b6-7d35ff2ad5dd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053749Z:bc920767-7942-4370-86a5-c8a0fe83ea7f" + "CENTRALUSEUAP:20210418T070915Z:c69272cb-265b-454f-85b6-7d35ff2ad5dd" ], "Date": [ - "Sat, 02 May 2020 05:37:48 GMT" + "Sun, 18 Apr 2021 07:09:14 GMT" ], "Content-Length": [ "4554" @@ -20098,29 +19465,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0326abcc-026c-4be6-9bcf-f65ca959d520-2020-05-02 05:37:59Z-Ps" + "39ab02ef-f84e-412a-b801-3cc6daf01917" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394279767)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999079767)\\/\",\"ClientRequestId\":\"0326abcc-026c-4be6-9bcf-f65ca959d520-2020-05-02 05:37:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"b0mobtrZxbtDs42wzcftZbBcy7SKkXwb9pULQgJQ5q0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726165209)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330965209)\\/\",\"ClientRequestId\":\"cc105fb6-61fc-4ac2-b15d-ffecc7f3f3ba-2021-04-18 07:09:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uqcmEcoURDuMZY2zg574/KvFhaK66vF8oXuoB0uWVjk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20131,35 +19498,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11764" + "11790" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5b27273c-a58f-456e-b357-a64577e384b0" + "7e7730fb-ae55-488c-b50e-490ba9ec7d2a" ], "x-ms-client-request-id": [ - "0326abcc-026c-4be6-9bcf-f65ca959d520-2020-05-02 05:37:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "39ab02ef-f84e-412a-b801-3cc6daf01917" ], "x-ms-correlation-request-id": [ - "5b27273c-a58f-456e-b357-a64577e384b0" + "7e7730fb-ae55-488c-b50e-490ba9ec7d2a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053759Z:5b27273c-a58f-456e-b357-a64577e384b0" + "CENTRALUSEUAP:20210418T070925Z:7e7730fb-ae55-488c-b50e-490ba9ec7d2a" ], "Date": [ - "Sat, 02 May 2020 05:37:59 GMT" + "Sun, 18 Apr 2021 07:09:24 GMT" ], "Content-Length": [ "4554" @@ -20171,29 +19535,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9c39873-485c-420c-823c-641be90339a3-2020-05-02 05:38:10Z-Ps" + "83e2910a-5cfc-4b30-9f39-ae0280eb4ab0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394290077)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999090077)\\/\",\"ClientRequestId\":\"a9c39873-485c-420c-823c-641be90339a3-2020-05-02 05:38:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sBATX1RX7BxdUXVlXnW0y/nOmtWcxEnSSAg/BctUVSc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726175536)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330975536)\\/\",\"ClientRequestId\":\"666febb3-cd39-4f02-bff6-40c68cb9fb43-2021-04-18 07:09:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"eGYO1qwUs6nWQSDIf7eenn70qXoiseUojKyaVNnQ8nU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20204,35 +19568,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11763" + "11789" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "3de24ff3-2256-4598-a8c1-e973e95d8176" + "2061d74d-7803-4d26-9681-ad0727a5ff44" ], "x-ms-client-request-id": [ - "a9c39873-485c-420c-823c-641be90339a3-2020-05-02 05:38:10Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "83e2910a-5cfc-4b30-9f39-ae0280eb4ab0" ], "x-ms-correlation-request-id": [ - "3de24ff3-2256-4598-a8c1-e973e95d8176" + "2061d74d-7803-4d26-9681-ad0727a5ff44" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053810Z:3de24ff3-2256-4598-a8c1-e973e95d8176" + "CENTRALUSEUAP:20210418T070935Z:2061d74d-7803-4d26-9681-ad0727a5ff44" ], "Date": [ - "Sat, 02 May 2020 05:38:10 GMT" + "Sun, 18 Apr 2021 07:09:35 GMT" ], "Content-Length": [ "4554" @@ -20244,29 +19605,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcdeab11-c0f1-46fc-aec3-9ff601140d4c-2020-05-02 05:38:20Z-Ps" + "757fc3cd-86e6-4136-a5b9-729b0818e9e5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394300389)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999100389)\\/\",\"ClientRequestId\":\"fcdeab11-c0f1-46fc-aec3-9ff601140d4c-2020-05-02 05:38:20Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FvYMFQk9SjX9UmF7QVIu/WJ4VjcXevcM69nyASCKRq4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726185871)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330985871)\\/\",\"ClientRequestId\":\"c2d7959e-5efc-48af-990c-9175c0aad4fe-2021-04-18 07:09:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4M3ps5xtENJ1EcKCBveJsz12a/x89owhZd3N+zAlPn8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20277,35 +19638,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11762" + "11788" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "20553704-ed03-40c4-9de6-b6feb2cfbd08" + "3b5bec31-db5e-4b32-92e7-093b0117c7a5" ], "x-ms-client-request-id": [ - "fcdeab11-c0f1-46fc-aec3-9ff601140d4c-2020-05-02 05:38:20Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "757fc3cd-86e6-4136-a5b9-729b0818e9e5" ], "x-ms-correlation-request-id": [ - "20553704-ed03-40c4-9de6-b6feb2cfbd08" + "3b5bec31-db5e-4b32-92e7-093b0117c7a5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053820Z:20553704-ed03-40c4-9de6-b6feb2cfbd08" + "CENTRALUSEUAP:20210418T070946Z:3b5bec31-db5e-4b32-92e7-093b0117c7a5" ], "Date": [ - "Sat, 02 May 2020 05:38:19 GMT" + "Sun, 18 Apr 2021 07:09:46 GMT" ], "Content-Length": [ "4554" @@ -20317,29 +19675,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a56aefbc-3e15-4572-bae6-9a3a0a0d4ed5-2020-05-02 05:38:30Z-Ps" + "ff8ce353-10eb-46f3-a700-bbe9b11373c3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394310702)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999110702)\\/\",\"ClientRequestId\":\"a56aefbc-3e15-4572-bae6-9a3a0a0d4ed5-2020-05-02 05:38:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yuJZ03A18mbNPPDlfWWdwJcJp+jGWHZKYZ3jzHrqjO4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726196204)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619330996204)\\/\",\"ClientRequestId\":\"e393113e-4c7c-412d-8c9a-296e7bc247dc-2021-04-18 07:09:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Y7pRIQQ7curif2M2bYzE4cCJiMj0fqIqUDiOyyNGUyg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20349,36 +19707,33 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11787" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "afdabed1-4789-408e-96c0-fa4dece1fe2a" + "b63fd77e-196a-40ea-8c7a-b22ace65af23" ], "x-ms-client-request-id": [ - "a56aefbc-3e15-4572-bae6-9a3a0a0d4ed5-2020-05-02 05:38:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11761" + "ff8ce353-10eb-46f3-a700-bbe9b11373c3" ], "x-ms-correlation-request-id": [ - "afdabed1-4789-408e-96c0-fa4dece1fe2a" + "b63fd77e-196a-40ea-8c7a-b22ace65af23" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053830Z:afdabed1-4789-408e-96c0-fa4dece1fe2a" + "CENTRALUSEUAP:20210418T070956Z:b63fd77e-196a-40ea-8c7a-b22ace65af23" ], "Date": [ - "Sat, 02 May 2020 05:38:30 GMT" + "Sun, 18 Apr 2021 07:09:55 GMT" ], "Content-Length": [ "4554" @@ -20390,29 +19745,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ac45b7a-56f2-475e-84b8-56112db4be6a-2020-05-02 05:38:41Z-Ps" + "6aef68c0-f9ea-48da-b86e-e603dfdce372" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394321011)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999121011)\\/\",\"ClientRequestId\":\"0ac45b7a-56f2-475e-84b8-56112db4be6a-2020-05-02 05:38:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ywJ6zXvmyL9ZxTD4Nm5DhM39fbjc9JIgqdP7qE4F3p0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726206523)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331006523)\\/\",\"ClientRequestId\":\"429b776b-e9f1-4995-891f-78e8da2fec2d-2021-04-18 07:10:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Cq/7RtvMQI0dujQxUnpVEMTXX2goEWT0PwCjnG0+9rU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20423,32 +19778,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11760" + "11786" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "677257c0-4e5b-492d-ae08-1125057888b1" + "4d90030f-6187-4c7a-8bab-d2fa1d2dbbcb" ], "x-ms-client-request-id": [ - "0ac45b7a-56f2-475e-84b8-56112db4be6a-2020-05-02 05:38:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "6aef68c0-f9ea-48da-b86e-e603dfdce372" ], "x-ms-correlation-request-id": [ - "677257c0-4e5b-492d-ae08-1125057888b1" + "4d90030f-6187-4c7a-8bab-d2fa1d2dbbcb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053841Z:677257c0-4e5b-492d-ae08-1125057888b1" + "CENTRALUSEUAP:20210418T071006Z:4d90030f-6187-4c7a-8bab-d2fa1d2dbbcb" ], "Date": [ - "Sat, 02 May 2020 05:38:41 GMT" + "Sun, 18 Apr 2021 07:10:06 GMT" ], "Content-Length": [ "4554" @@ -20460,29 +19815,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a3e7a50-7984-4e17-99c9-893ecf15f632-2020-05-02 05:38:51Z-Ps" + "05c99833-f6c7-4e6b-ab8b-710714fd7058" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394331568)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999131568)\\/\",\"ClientRequestId\":\"3a3e7a50-7984-4e17-99c9-893ecf15f632-2020-05-02 05:38:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hZY0pLwUNmCmsxqP90EzN+XsN5FVqmBB25kTXo048DY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726216895)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331016895)\\/\",\"ClientRequestId\":\"3af3bc6f-a576-4863-9215-277052859955-2021-04-18 07:10:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pJSgX2+LsPuUnDKYH1oRcDtRS+puuNLgoftR4ohdmMo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20493,32 +19848,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11759" + "11785" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "01876a18-a573-400f-85e4-0dfc58f9cf57" + "2bd5a5a6-550e-40a6-a83d-90e671abe2c1" ], "x-ms-client-request-id": [ - "3a3e7a50-7984-4e17-99c9-893ecf15f632-2020-05-02 05:38:51Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "05c99833-f6c7-4e6b-ab8b-710714fd7058" ], "x-ms-correlation-request-id": [ - "01876a18-a573-400f-85e4-0dfc58f9cf57" + "2bd5a5a6-550e-40a6-a83d-90e671abe2c1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053851Z:01876a18-a573-400f-85e4-0dfc58f9cf57" + "CENTRALUSEUAP:20210418T071017Z:2bd5a5a6-550e-40a6-a83d-90e671abe2c1" ], "Date": [ - "Sat, 02 May 2020 05:38:51 GMT" + "Sun, 18 Apr 2021 07:10:17 GMT" ], "Content-Length": [ "4554" @@ -20530,29 +19885,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95058774-47d8-41ed-aaeb-977eaf3a19c4-2020-05-02 05:39:01Z-Ps" + "5809941d-cf44-4c5c-bada-43ee6a602c72" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394341888)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999141888)\\/\",\"ClientRequestId\":\"95058774-47d8-41ed-aaeb-977eaf3a19c4-2020-05-02 05:39:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CWu5+Pj+gZX7AaV3htylgvFWpmXLb8LjrAPnfiPIumI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726227209)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331027209)\\/\",\"ClientRequestId\":\"7a7d2c5b-b088-4f41-a952-4f34186a8830-2021-04-18 07:10:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UjoEEGwXbja+rnQtKpoXRdV1Zzw0D9adPcWebsBMGPA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20563,32 +19918,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11758" + "11784" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8152d147-a1e6-4e91-a09e-951ff7d31b6e" + "61ecb67a-e715-48de-8d3b-c5c84641810f" ], "x-ms-client-request-id": [ - "95058774-47d8-41ed-aaeb-977eaf3a19c4-2020-05-02 05:39:01Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5809941d-cf44-4c5c-bada-43ee6a602c72" ], "x-ms-correlation-request-id": [ - "8152d147-a1e6-4e91-a09e-951ff7d31b6e" + "61ecb67a-e715-48de-8d3b-c5c84641810f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053902Z:8152d147-a1e6-4e91-a09e-951ff7d31b6e" + "CENTRALUSEUAP:20210418T071027Z:61ecb67a-e715-48de-8d3b-c5c84641810f" ], "Date": [ - "Sat, 02 May 2020 05:39:01 GMT" + "Sun, 18 Apr 2021 07:10:26 GMT" ], "Content-Length": [ "4554" @@ -20600,29 +19955,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3b409c7-2242-494e-8407-836f55584ea9-2020-05-02 05:39:12Z-Ps" + "666cea67-9c27-4982-8f9f-e2ecfe05b622" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394352228)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999152228)\\/\",\"ClientRequestId\":\"e3b409c7-2242-494e-8407-836f55584ea9-2020-05-02 05:39:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QLOCH+tuAuWDnzwIeZgARkjhhjJbwCxW14pUuUD9+Zo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726237553)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331037553)\\/\",\"ClientRequestId\":\"ba82a616-f13e-4947-aa25-73c3d6682c59-2021-04-18 07:10:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jOPZ1v6P0LC7AqnIiqgRVEOb0KlbKewn41IZ1fTHJrI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20633,32 +19988,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11757" + "11783" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "2fc54988-e5e2-4a06-a261-25c383ceba00" + "2c810858-3bea-4f88-b02e-8d5cf392dcfb" ], "x-ms-client-request-id": [ - "e3b409c7-2242-494e-8407-836f55584ea9-2020-05-02 05:39:12Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "666cea67-9c27-4982-8f9f-e2ecfe05b622" ], "x-ms-correlation-request-id": [ - "2fc54988-e5e2-4a06-a261-25c383ceba00" + "2c810858-3bea-4f88-b02e-8d5cf392dcfb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053912Z:2fc54988-e5e2-4a06-a261-25c383ceba00" + "CENTRALUSEUAP:20210418T071037Z:2c810858-3bea-4f88-b02e-8d5cf392dcfb" ], "Date": [ - "Sat, 02 May 2020 05:39:11 GMT" + "Sun, 18 Apr 2021 07:10:37 GMT" ], "Content-Length": [ "4554" @@ -20670,29 +20025,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eea9a399-60d6-49e7-bb13-f83b8b9e00f1-2020-05-02 05:39:22Z-Ps" + "e11d1c45-5716-48b1-b846-fd5e97b2ed0d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394362564)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999162564)\\/\",\"ClientRequestId\":\"eea9a399-60d6-49e7-bb13-f83b8b9e00f1-2020-05-02 05:39:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OizhflLbRbDqvhhlfvME0/AtAQ9EXjZdi87OX8F+Sig=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726247867)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331047867)\\/\",\"ClientRequestId\":\"f52797fa-080c-40c5-a8fc-07c14f0b4444-2021-04-18 07:10:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qQAFEj2074MJOhMjPBuRZd2HhSIb6wTQl8nQ7E8oOy8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20703,32 +20058,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11756" + "11782" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "8621b57e-1185-43f9-ab7d-143807bb7c39" + "82a9e15d-93c6-4fad-8982-b030ef1a13f8" ], "x-ms-client-request-id": [ - "eea9a399-60d6-49e7-bb13-f83b8b9e00f1-2020-05-02 05:39:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e11d1c45-5716-48b1-b846-fd5e97b2ed0d" ], "x-ms-correlation-request-id": [ - "8621b57e-1185-43f9-ab7d-143807bb7c39" + "82a9e15d-93c6-4fad-8982-b030ef1a13f8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053922Z:8621b57e-1185-43f9-ab7d-143807bb7c39" + "CENTRALUSEUAP:20210418T071047Z:82a9e15d-93c6-4fad-8982-b030ef1a13f8" ], "Date": [ - "Sat, 02 May 2020 05:39:22 GMT" + "Sun, 18 Apr 2021 07:10:47 GMT" ], "Content-Length": [ "4554" @@ -20740,29 +20095,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f122a492-f52f-4d3d-9374-e9ef59246164-2020-05-02 05:39:32Z-Ps" + "6c99f378-53b2-4607-aab4-48688a365c4a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394372891)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999172891)\\/\",\"ClientRequestId\":\"f122a492-f52f-4d3d-9374-e9ef59246164-2020-05-02 05:39:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NfvPbzzSAW7NUivehQGNtMtY/Ocxv8SyswDrA+uaMeM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726258187)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331058187)\\/\",\"ClientRequestId\":\"023b576f-b2b4-4761-8582-e99db0a2399a-2021-04-18 07:10:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"F6AzrP1WGgI9hmjOB1ViD+oYyrIbfAiLNXY4I+SSysM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20772,36 +20127,33 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11755" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "9313dcc7-edcf-4980-b415-9fcde6a22be4" + "645b1829-6795-471d-98c9-068f6ec4950a" ], "x-ms-client-request-id": [ - "f122a492-f52f-4d3d-9374-e9ef59246164-2020-05-02 05:39:32Z-Ps" + "6c99f378-53b2-4607-aab4-48688a365c4a" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11781" ], "x-ms-correlation-request-id": [ - "9313dcc7-edcf-4980-b415-9fcde6a22be4" + "645b1829-6795-471d-98c9-068f6ec4950a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053933Z:9313dcc7-edcf-4980-b415-9fcde6a22be4" + "CENTRALUSEUAP:20210418T071058Z:645b1829-6795-471d-98c9-068f6ec4950a" ], "Date": [ - "Sat, 02 May 2020 05:39:32 GMT" + "Sun, 18 Apr 2021 07:10:57 GMT" ], "Content-Length": [ "4554" @@ -20813,29 +20165,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7949649a-59e7-42d8-b429-43458be6c192-2020-05-02 05:39:43Z-Ps" + "f6938834-3456-4bc4-9dea-68f1cb95a507" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394383252)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999183252)\\/\",\"ClientRequestId\":\"7949649a-59e7-42d8-b429-43458be6c192-2020-05-02 05:39:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WGY5KpYlzY19GEL5EczWe7x8vb8NfOd7Bth3ZCSys6c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726268533)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331068533)\\/\",\"ClientRequestId\":\"2b565e53-cc19-4847-923f-a020cf4956b0-2021-04-18 07:11:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qSireHlwyZMbuNszKC943uuT+usRSjR3qq17m+1pf/o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20845,39 +20197,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11780" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "253684ac-3f31-4947-ba49-0a2b178736a9" + "bd7b32d8-d0dc-4f5e-bcf3-c7350e7afb97" ], "x-ms-client-request-id": [ - "7949649a-59e7-42d8-b429-43458be6c192-2020-05-02 05:39:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11754" + "f6938834-3456-4bc4-9dea-68f1cb95a507" ], "x-ms-correlation-request-id": [ - "253684ac-3f31-4947-ba49-0a2b178736a9" + "bd7b32d8-d0dc-4f5e-bcf3-c7350e7afb97" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053943Z:253684ac-3f31-4947-ba49-0a2b178736a9" + "CENTRALUSEUAP:20210418T071108Z:bd7b32d8-d0dc-4f5e-bcf3-c7350e7afb97" ], "Date": [ - "Sat, 02 May 2020 05:39:42 GMT" + "Sun, 18 Apr 2021 07:11:08 GMT" ], "Content-Length": [ - "5331" + "4554" ], "Content-Type": [ "application/json" @@ -20886,29 +20235,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/c6b32a37-24d2-4dd3-a9ae-8c1ca645369d\",\r\n \"name\": \"c6b32a37-24d2-4dd3-a9ae-8c1ca645369d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T05:39:40.8491478Z\",\r\n \"endTime\": \"2020-05-02T05:39:41Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cc3b6317-6fba-4b9c-8a9f-3a1421795e6a-2020-05-02 05:39:53Z-Ps" + "ebd793e9-1918-4f8c-9f09-a783f2cd4805" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394393664)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999193664)\\/\",\"ClientRequestId\":\"cc3b6317-6fba-4b9c-8a9f-3a1421795e6a-2020-05-02 05:39:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iFdG2DaD0HC7u3EmxFEuev5akiC+5tMz6pee6anKyg8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726279012)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331079012)\\/\",\"ClientRequestId\":\"e007e2c2-2160-48cc-b248-7a852d55f6f2-2021-04-18 07:11:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fcg4GtsV0tpn2Ts5GxU0L+MJAYf7QR2tOwV28su+EMA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20919,38 +20268,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11753" + "11779" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "03d5387d-71eb-4f47-a09e-e8d8b69a597f" + "04fd5e25-4f73-4746-9a8e-a77848d32b75" ], "x-ms-client-request-id": [ - "cc3b6317-6fba-4b9c-8a9f-3a1421795e6a-2020-05-02 05:39:53Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ebd793e9-1918-4f8c-9f09-a783f2cd4805" ], "x-ms-correlation-request-id": [ - "03d5387d-71eb-4f47-a09e-e8d8b69a597f" + "04fd5e25-4f73-4746-9a8e-a77848d32b75" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T053953Z:03d5387d-71eb-4f47-a09e-e8d8b69a597f" + "CENTRALUSEUAP:20210418T071119Z:04fd5e25-4f73-4746-9a8e-a77848d32b75" ], "Date": [ - "Sat, 02 May 2020 05:39:53 GMT" + "Sun, 18 Apr 2021 07:11:19 GMT" ], "Content-Length": [ - "5331" + "4554" ], "Content-Type": [ "application/json" @@ -20959,29 +20305,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/c6b32a37-24d2-4dd3-a9ae-8c1ca645369d\",\r\n \"name\": \"c6b32a37-24d2-4dd3-a9ae-8c1ca645369d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T05:39:40.8491478Z\",\r\n \"endTime\": \"2020-05-02T05:39:41Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2a8d7dda-d441-4278-a30d-771de8ca98dd-2020-05-02 05:40:04Z-Ps" + "4d105b66-5324-4389-af9c-b29f416b39fb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394404240)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999204240)\\/\",\"ClientRequestId\":\"2a8d7dda-d441-4278-a30d-771de8ca98dd-2020-05-02 05:40:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2lVDGcJPcKnEHRROc/Y7ryDmv1O9lcCnI+mL1rD+YtA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726289544)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331089544)\\/\",\"ClientRequestId\":\"e3079856-04bc-4e25-a766-5d29226b057b-2021-04-18 07:11:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WCd98P/Ruu5W+sH53qVHH1M472zqZdw3985joM3YVeU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -20992,38 +20338,1085 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11752" + "11778" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fb7a1e3a-9ea9-48ec-94bc-9fd146c106b2" + ], + "x-ms-client-request-id": [ + "4d105b66-5324-4389-af9c-b29f416b39fb" + ], + "x-ms-correlation-request-id": [ + "fb7a1e3a-9ea9-48ec-94bc-9fd146c106b2" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T071129Z:fb7a1e3a-9ea9-48ec-94bc-9fd146c106b2" + ], + "Date": [ + "Sun, 18 Apr 2021 07:11:29 GMT" + ], + "Content-Length": [ + "4554" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "61617910-7c11-44e8-9963-9a7ae390b88b" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618726299871)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331099871)\\/\",\"ClientRequestId\":\"898b70fe-7c62-4096-8da5-465ec68df36b-2021-04-18 07:11:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"19rT0umuAJj0bFRe5vGB+04U6X54QqcSyWWNk4FJmtw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11777" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d3764ec3-941c-476f-baf2-f0b70fb2e03d" + ], + "x-ms-client-request-id": [ + "61617910-7c11-44e8-9963-9a7ae390b88b" + ], + "x-ms-correlation-request-id": [ + "d3764ec3-941c-476f-baf2-f0b70fb2e03d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T071140Z:d3764ec3-941c-476f-baf2-f0b70fb2e03d" + ], + "Date": [ + "Sun, 18 Apr 2021 07:11:40 GMT" + ], + "Content-Length": [ + "4554" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b176573c-1d02-4a51-9071-ada82b380f53" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618726310224)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331110224)\\/\",\"ClientRequestId\":\"4917156d-bf8d-4cf7-9b56-4f25d8f18970-2021-04-18 07:11:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PimsVscWtUB0v5l8oDkjBBAy27HBweJKOv8Rp9o5dO8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11776" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ce0c4718-7c11-45c2-8905-63f917487621" + ], + "x-ms-client-request-id": [ + "b176573c-1d02-4a51-9071-ada82b380f53" + ], + "x-ms-correlation-request-id": [ + "ce0c4718-7c11-45c2-8905-63f917487621" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T071150Z:ce0c4718-7c11-45c2-8905-63f917487621" + ], + "Date": [ + "Sun, 18 Apr 2021 07:11:49 GMT" + ], + "Content-Length": [ + "4554" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e48c003-74f3-44d2-8853-eeac1f814789" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618726320555)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331120555)\\/\",\"ClientRequestId\":\"9345286b-151b-4f8e-b0f6-0917306631b3-2021-04-18 07:12:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Gr6Pnu8SkF/0HvcLl5QLYIfCv3KTOx3ip90sc7GBPdY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11775" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6d95f727-585c-4b06-8c60-fea4ce7a2344" + ], + "x-ms-client-request-id": [ + "0e48c003-74f3-44d2-8853-eeac1f814789" + ], + "x-ms-correlation-request-id": [ + "6d95f727-585c-4b06-8c60-fea4ce7a2344" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T071200Z:6d95f727-585c-4b06-8c60-fea4ce7a2344" + ], + "Date": [ + "Sun, 18 Apr 2021 07:11:59 GMT" + ], + "Content-Length": [ + "4554" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4d0c575-33e6-4ec7-abbb-dd1d56945cab" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618726330888)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331130888)\\/\",\"ClientRequestId\":\"be080c9c-ddda-45d5-91e5-0eb6b811ef53-2021-04-18 07:12:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LsmgFCKDVFsmFksCXoPWvCuq7DdUkKgQynDhEyruzxM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11774" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c38f2d93-a833-4ff4-a35b-cd9f35b7f2a7" + ], + "x-ms-client-request-id": [ + "f4d0c575-33e6-4ec7-abbb-dd1d56945cab" + ], + "x-ms-correlation-request-id": [ + "c38f2d93-a833-4ff4-a35b-cd9f35b7f2a7" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T071211Z:c38f2d93-a833-4ff4-a35b-cd9f35b7f2a7" + ], + "Date": [ + "Sun, 18 Apr 2021 07:12:10 GMT" + ], + "Content-Length": [ + "4554" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f7f00bb6-8813-43c9-9b7f-6ee8e77b0059" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618726341215)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331141215)\\/\",\"ClientRequestId\":\"e136542d-5d71-474e-a4a3-56aaa5b15cf1-2021-04-18 07:12:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uAeJiUIF9+q/ygz2MgpRSk6RjqFPmJGf5MelvOU5FN0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11773" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "ae5764ea-7a20-42e7-884f-be8eb1a3cbd9" + ], + "x-ms-client-request-id": [ + "f7f00bb6-8813-43c9-9b7f-6ee8e77b0059" + ], + "x-ms-correlation-request-id": [ + "ae5764ea-7a20-42e7-884f-be8eb1a3cbd9" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T071221Z:ae5764ea-7a20-42e7-884f-be8eb1a3cbd9" + ], + "Date": [ + "Sun, 18 Apr 2021 07:12:21 GMT" + ], + "Content-Length": [ + "4554" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d3eb14f-5e35-4281-91c6-c04044666ef6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618726351542)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331151542)\\/\",\"ClientRequestId\":\"4ee54c1c-b493-4b99-b5a3-091ac9027c03-2021-04-18 07:12:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LaN6ppKqhQAB3eXgzhfAQVaEtkrmVu05WPiodsAZdIE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11772" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "213f4fd9-15a1-440e-9dc7-df8ead4eddd4" + ], + "x-ms-client-request-id": [ + "8d3eb14f-5e35-4281-91c6-c04044666ef6" + ], + "x-ms-correlation-request-id": [ + "213f4fd9-15a1-440e-9dc7-df8ead4eddd4" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T071231Z:213f4fd9-15a1-440e-9dc7-df8ead4eddd4" + ], + "Date": [ + "Sun, 18 Apr 2021 07:12:31 GMT" + ], + "Content-Length": [ + "4554" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0fbc1ebd-95fb-4ac4-9e42-caa4493cf7d3" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618726361891)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331161891)\\/\",\"ClientRequestId\":\"079a5c80-16fb-44c2-9544-add95185b594-2021-04-18 07:12:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kaA8KZIVEtkKiabYae7fFgMk9sxPMSA4SbtsRAsqmsY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11771" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "eabc69cc-bad2-4d0f-9194-fcad4492e89e" + ], + "x-ms-client-request-id": [ + "0fbc1ebd-95fb-4ac4-9e42-caa4493cf7d3" + ], + "x-ms-correlation-request-id": [ + "eabc69cc-bad2-4d0f-9194-fcad4492e89e" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T071242Z:eabc69cc-bad2-4d0f-9194-fcad4492e89e" + ], + "Date": [ + "Sun, 18 Apr 2021 07:12:41 GMT" + ], + "Content-Length": [ + "4554" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a32a1d80-88e6-420c-a420-92dac86bbe28" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618726372213)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331172213)\\/\",\"ClientRequestId\":\"fa66b53f-58a7-4378-add1-fe84d7a95650-2021-04-18 07:12:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vPUMH0EuMv/wENnX/OD1LAKIt3rG4tKc+C9xzUnjcLk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11770" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "7e67065e-e732-41ed-90e2-3c5afe952ac9" + ], + "x-ms-client-request-id": [ + "a32a1d80-88e6-420c-a420-92dac86bbe28" + ], + "x-ms-correlation-request-id": [ + "7e67065e-e732-41ed-90e2-3c5afe952ac9" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T071252Z:7e67065e-e732-41ed-90e2-3c5afe952ac9" + ], + "Date": [ + "Sun, 18 Apr 2021 07:12:51 GMT" + ], + "Content-Length": [ + "4554" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52e20faf-4bd6-45c1-91b1-333afa923d8f" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618726382542)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331182542)\\/\",\"ClientRequestId\":\"8b619613-609f-4d4b-8ea9-d556d72d37ad-2021-04-18 07:13:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ynhYCxhKEBcKRnQ1riB1KHE8qlQhkwCfnMgHwEbaL70=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11769" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "59643ab8-1902-48f1-ba6c-84d246bd656b" + ], + "x-ms-client-request-id": [ + "52e20faf-4bd6-45c1-91b1-333afa923d8f" + ], + "x-ms-correlation-request-id": [ + "59643ab8-1902-48f1-ba6c-84d246bd656b" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T071302Z:59643ab8-1902-48f1-ba6c-84d246bd656b" + ], + "Date": [ + "Sun, 18 Apr 2021 07:13:02 GMT" + ], + "Content-Length": [ + "4554" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "183bb00d-d4f9-4a04-af1a-f11ce8aeb940" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618726392867)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331192867)\\/\",\"ClientRequestId\":\"19456af3-6bf8-43f1-b022-98290dbb9c32-2021-04-18 07:13:12Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Yf9Cd95qhpz6W7ImYR3u9DydN+ETJUCgsg08rDOV5Ds=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11768" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "05920e4c-b05e-4554-9263-06494d30e9f1" + ], + "x-ms-client-request-id": [ + "183bb00d-d4f9-4a04-af1a-f11ce8aeb940" + ], + "x-ms-correlation-request-id": [ + "05920e4c-b05e-4554-9263-06494d30e9f1" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T071313Z:05920e4c-b05e-4554-9263-06494d30e9f1" + ], + "Date": [ + "Sun, 18 Apr 2021 07:13:12 GMT" + ], + "Content-Length": [ + "4554" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "744c949a-f580-4ce6-baa9-387e067511b3" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618726403224)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331203224)\\/\",\"ClientRequestId\":\"8c5ee45e-4e95-4339-a500-1045a153d58f-2021-04-18 07:13:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yqE7wujEPZRFflxircGH3hKtVNZpGKcQZaa5kjYRR4g=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11767" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "4a29b4b7-5373-46cc-848e-1cacfa2bd3a8" + ], + "x-ms-client-request-id": [ + "744c949a-f580-4ce6-baa9-387e067511b3" + ], + "x-ms-correlation-request-id": [ + "4a29b4b7-5373-46cc-848e-1cacfa2bd3a8" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T071323Z:4a29b4b7-5373-46cc-848e-1cacfa2bd3a8" + ], + "Date": [ + "Sun, 18 Apr 2021 07:13:22 GMT" + ], + "Content-Length": [ + "4554" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a91571a1-5b6d-40e0-a6a5-7281b103d99a" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618726413558)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331213558)\\/\",\"ClientRequestId\":\"b68eaad4-f1d4-46b9-8a42-072c618acd43-2021-04-18 07:13:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TLtJSVTr6YlYSfaZQktiV0sTLLmj0szBboZYI7hm0Hg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11766" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "55df72fd-b07a-405a-b86a-eb1caf1f1328" + ], + "x-ms-client-request-id": [ + "a91571a1-5b6d-40e0-a6a5-7281b103d99a" + ], + "x-ms-correlation-request-id": [ + "55df72fd-b07a-405a-b86a-eb1caf1f1328" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T071333Z:55df72fd-b07a-405a-b86a-eb1caf1f1328" + ], + "Date": [ + "Sun, 18 Apr 2021 07:13:33 GMT" + ], + "Content-Length": [ + "4554" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "854abb6b-99ec-4c42-a083-6d3aa2e2eeed" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618726423881)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331223881)\\/\",\"ClientRequestId\":\"520f5c3f-0a06-4ce7-b376-9bcff1bc73e8-2021-04-18 07:13:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"uc2vczTZEzu4711b4CY2j7d0hi3BKhjZPn372AG5SRk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11765" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5729eaa4-064b-4711-8efe-f9456e3da7f6" + ], + "x-ms-client-request-id": [ + "854abb6b-99ec-4c42-a083-6d3aa2e2eeed" + ], + "x-ms-correlation-request-id": [ + "5729eaa4-064b-4711-8efe-f9456e3da7f6" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T071344Z:5729eaa4-064b-4711-8efe-f9456e3da7f6" + ], + "Date": [ + "Sun, 18 Apr 2021 07:13:43 GMT" + ], + "Content-Length": [ + "4554" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b216d031-124a-48a9-85ac-a4decf8a9609" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618726434197)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331234197)\\/\",\"ClientRequestId\":\"7eb49607-191d-4509-80ae-346cc15a9094-2021-04-18 07:13:54Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Q8uO+F3oFl78QqkvbuPxU2Gb+DGOOYI/9fGRuEg1vpo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11764" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "5741af48-7d06-46fb-862d-c6149bf28ac0" + "cfa01ead-ce2f-44be-9d28-2db9d0d3e702" + ], + "x-ms-client-request-id": [ + "b216d031-124a-48a9-85ac-a4decf8a9609" + ], + "x-ms-correlation-request-id": [ + "cfa01ead-ce2f-44be-9d28-2db9d0d3e702" ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T071354Z:cfa01ead-ce2f-44be-9d28-2db9d0d3e702" + ], + "Date": [ + "Sun, 18 Apr 2021 07:13:53 GMT" + ], + "Content-Length": [ + "4554" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "x-ms-client-request-id": [ - "2a8d7dda-d441-4278-a30d-771de8ca98dd-2020-05-02 05:40:04Z-Ps" + "953f3d92-3da5-453f-9699-6e38e5134fd0" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618726444544)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331244544)\\/\",\"ClientRequestId\":\"3ab725d0-4513-41e7-bc38-c31a53f6a610-2021-04-18 07:14:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9dWNZOo0y3DAa1htC2Q+eqDtuBQcxE8UoIXrjj5RtTs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11763" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "421a7cb3-deb9-4b5e-b95c-9760318569db" + ], + "x-ms-client-request-id": [ + "953f3d92-3da5-453f-9699-6e38e5134fd0" + ], "x-ms-correlation-request-id": [ - "5741af48-7d06-46fb-862d-c6149bf28ac0" + "421a7cb3-deb9-4b5e-b95c-9760318569db" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T054004Z:5741af48-7d06-46fb-862d-c6149bf28ac0" + "CENTRALUSEUAP:20210418T071404Z:421a7cb3-deb9-4b5e-b95c-9760318569db" ], "Date": [ - "Sat, 02 May 2020 05:40:03 GMT" + "Sun, 18 Apr 2021 07:14:04 GMT" ], "Content-Length": [ - "5331" + "4554" ], "Content-Type": [ "application/json" @@ -21032,29 +21425,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/c6b32a37-24d2-4dd3-a9ae-8c1ca645369d\",\r\n \"name\": \"c6b32a37-24d2-4dd3-a9ae-8c1ca645369d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T05:39:40.8491478Z\",\r\n \"endTime\": \"2020-05-02T05:39:41Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4b29c7c-4f45-4d12-a842-f02c97e6afd0-2020-05-02 05:40:14Z-Ps" + "878560d9-e3b6-4767-8dbf-ee36891639ad" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394414697)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999214697)\\/\",\"ClientRequestId\":\"c4b29c7c-4f45-4d12-a842-f02c97e6afd0-2020-05-02 05:40:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"46N3zC1AKr0dIYEsFFtJb35i2HZv64V6sIiKNqE12MA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726454879)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331254879)\\/\",\"ClientRequestId\":\"48be9469-965b-4dbc-ae05-3b6f85ddee60-2021-04-18 07:14:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kVNbNEEbhcyQxCH19u2tNAZ2qUAGUDRbKs3Zaw2OIbc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21065,38 +21458,245 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11751" + "11762" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "159b4e4e-4389-4e87-aeec-6a1ecb2199ca" + ], + "x-ms-client-request-id": [ + "878560d9-e3b6-4767-8dbf-ee36891639ad" + ], + "x-ms-correlation-request-id": [ + "159b4e4e-4389-4e87-aeec-6a1ecb2199ca" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T071415Z:159b4e4e-4389-4e87-aeec-6a1ecb2199ca" + ], + "Date": [ + "Sun, 18 Apr 2021 07:14:14 GMT" + ], + "Content-Length": [ + "4554" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "63674fd9-bd8f-4e6d-8299-d0d33a5c525d" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618726465288)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331265288)\\/\",\"ClientRequestId\":\"fc73c9c7-7857-4f20-b81d-8b48e54b0f55-2021-04-18 07:14:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Q0EmF//YducwKkF8/joBbVReNcLz0kZyjmFaUejfp1M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11761" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c01e285f-93fd-45b9-b609-aaf1c82c8019" + ], + "x-ms-client-request-id": [ + "63674fd9-bd8f-4e6d-8299-d0d33a5c525d" + ], + "x-ms-correlation-request-id": [ + "c01e285f-93fd-45b9-b609-aaf1c82c8019" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T071425Z:c01e285f-93fd-45b9-b609-aaf1c82c8019" + ], + "Date": [ + "Sun, 18 Apr 2021 07:14:24 GMT" + ], + "Content-Length": [ + "4554" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "09f9785a-f116-4814-a288-1038673a383a" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618726475612)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331275612)\\/\",\"ClientRequestId\":\"e5768d8f-9d34-43d1-985f-b534b8df1e0c-2021-04-18 07:14:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Kh2uwUJrWhPNYJukxsrf1s5xXdxXS5ETtIYwY87QGfI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11760" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "880abedb-3bd8-4691-968a-5bd2abbdc580" + "ee175073-856e-4107-9711-014a80724a2c" + ], + "x-ms-client-request-id": [ + "09f9785a-f116-4814-a288-1038673a383a" + ], + "x-ms-correlation-request-id": [ + "ee175073-856e-4107-9711-014a80724a2c" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T071435Z:ee175073-856e-4107-9711-014a80724a2c" ], + "Date": [ + "Sun, 18 Apr 2021 07:14:35 GMT" + ], + "Content-Length": [ + "4554" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { "x-ms-client-request-id": [ - "c4b29c7c-4f45-4d12-a842-f02c97e6afd0-2020-05-02 05:40:14Z-Ps" + "180713ee-680a-40ab-bd72-466ced49059a" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618726485939)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331285939)\\/\",\"ClientRequestId\":\"3264756f-1cba-4131-b520-84a5602b3032-2021-04-18 07:14:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bXvDNg7p5SrPHNR8+6G4LUTdgX1xfndvyXJSFglszpc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11759" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6ad2a83d-947a-4c62-b82c-a604c55b6a6d" + ], + "x-ms-client-request-id": [ + "180713ee-680a-40ab-bd72-466ced49059a" + ], "x-ms-correlation-request-id": [ - "880abedb-3bd8-4691-968a-5bd2abbdc580" + "6ad2a83d-947a-4c62-b82c-a604c55b6a6d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T054015Z:880abedb-3bd8-4691-968a-5bd2abbdc580" + "CENTRALUSEUAP:20210418T071446Z:6ad2a83d-947a-4c62-b82c-a604c55b6a6d" ], "Date": [ - "Sat, 02 May 2020 05:40:15 GMT" + "Sun, 18 Apr 2021 07:14:46 GMT" ], "Content-Length": [ - "5331" + "4554" ], "Content-Type": [ "application/json" @@ -21105,29 +21705,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/c6b32a37-24d2-4dd3-a9ae-8c1ca645369d\",\r\n \"name\": \"c6b32a37-24d2-4dd3-a9ae-8c1ca645369d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T05:39:40.8491478Z\",\r\n \"endTime\": \"2020-05-02T05:39:41Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81da4a8f-ee15-4c35-80ec-30ea3e3dcd42-2020-05-02 05:40:25Z-Ps" + "d1f69b27-19cb-4364-bbef-22abb1d2f923" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394425328)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999225328)\\/\",\"ClientRequestId\":\"81da4a8f-ee15-4c35-80ec-30ea3e3dcd42-2020-05-02 05:40:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DY1SXh5YRGaarjV4V4BtjlhviibMpkm05Vz1IkcfEvw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726496262)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331296262)\\/\",\"ClientRequestId\":\"1d894e5e-ebfa-4a94-930e-e0f54353ea3e-2021-04-18 07:14:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"n9uydEj/INS7Ca/PoaMKEA11GHxMEAY+kJP3WCMj+lg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21138,38 +21738,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11750" + "11758" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-request-id": [ - "798d1281-bfec-4289-b94f-2da49e30f101" + "1123e24c-e41f-461a-8791-5327a1a61cf4" ], "x-ms-client-request-id": [ - "81da4a8f-ee15-4c35-80ec-30ea3e3dcd42-2020-05-02 05:40:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d1f69b27-19cb-4364-bbef-22abb1d2f923" ], "x-ms-correlation-request-id": [ - "798d1281-bfec-4289-b94f-2da49e30f101" + "1123e24c-e41f-461a-8791-5327a1a61cf4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T054025Z:798d1281-bfec-4289-b94f-2da49e30f101" + "CENTRALUSEUAP:20210418T071456Z:1123e24c-e41f-461a-8791-5327a1a61cf4" ], "Date": [ - "Sat, 02 May 2020 05:40:25 GMT" + "Sun, 18 Apr 2021 07:14:55 GMT" ], "Content-Length": [ - "6111" + "4554" ], "Content-Type": [ "application/json" @@ -21178,29 +21775,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4c4f2ba9-4da2-404f-b5c2-4e8a61f7b8ea\",\r\n \"name\": \"4c4f2ba9-4da2-404f-b5c2-4e8a61f7b8ea\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T05:40:17.4913332Z\",\r\n \"endTime\": \"2020-05-02T05:40:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/c6b32a37-24d2-4dd3-a9ae-8c1ca645369d\",\r\n \"name\": \"c6b32a37-24d2-4dd3-a9ae-8c1ca645369d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T05:39:40.8491478Z\",\r\n \"endTime\": \"2020-05-02T05:39:41Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"name\": \"93142581-28f7-49ed-acc4-bc71d582d1ff\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:56:57.0467668Z\",\r\n \"endTime\": \"2020-05-02T05:09:48Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"name\": \"9a72e768-1b62-48d4-8971-4fd4d4c81cb3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:33.5241775Z\",\r\n \"endTime\": \"2020-05-02T04:56:38Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"name\": \"142e3700-1814-4874-b1b7-8acd5c674ca9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:32.040349Z\",\r\n \"endTime\": \"2020-05-02T04:55:32Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"name\": \"e3825524-e2d0-4b32-b174-eb491fcea816\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:27.8169916Z\",\r\n \"endTime\": \"2020-05-02T04:55:28Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"name\": \"46ffe3bb-e211-46da-8d49-dc386140309d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:55:26.0261229Z\",\r\n \"endTime\": \"2020-05-02T04:55:26Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"name\": \"045c8105-ea66-4d0a-a8d6-e9db05564ee3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T04:54:01.6411675Z\",\r\n \"endTime\": \"2020-05-02T04:55:06Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4c4f2ba9-4da2-404f-b5c2-4e8a61f7b8ea?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvNGM0ZjJiYTktNGRhMi00MDRmLWI1YzItNGU4YTYxZjdiOGVhP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80583ae2-d801-4a4e-9013-cf55e834686f-2020-05-02 05:40:25Z-Ps" + "8ec2adb5-57a9-41a5-bdaa-150f8eae94cf" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394425722)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999225722)\\/\",\"ClientRequestId\":\"80583ae2-d801-4a4e-9013-cf55e834686f-2020-05-02 05:40:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TwMpXkRrVFq16ddb2LuitCyF+SeIpnJM109VAzFHcM4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726506605)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331306605)\\/\",\"ClientRequestId\":\"debab4a5-5494-4b86-889b-315b0d19cfbc-2021-04-18 07:15:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lYRWh9ndp+jX7HbYWMu4GsBqmW+AUnRBR5ekf5SO37E=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21211,38 +21808,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11749" + "11757" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4c4f2ba9-4da2-404f-b5c2-4e8a61f7b8ea" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "80583ae2-d801-4a4e-9013-cf55e834686f-2020-05-02 05:40:25Z-Ps" + "x-ms-request-id": [ + "a17f6537-ef94-4729-b396-5303fce54aca" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "8ec2adb5-57a9-41a5-bdaa-150f8eae94cf" ], "x-ms-correlation-request-id": [ - "261b56da-4978-4cd8-8857-07355f41bc1b" + "a17f6537-ef94-4729-b396-5303fce54aca" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T054025Z:261b56da-4978-4cd8-8857-07355f41bc1b" + "CENTRALUSEUAP:20210418T071506Z:a17f6537-ef94-4729-b396-5303fce54aca" ], "Date": [ - "Sat, 02 May 2020 05:40:25 GMT" + "Sun, 18 Apr 2021 07:15:06 GMT" ], "Content-Length": [ - "3155" + "4554" ], "Content-Type": [ "application/json" @@ -21251,29 +21845,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4c4f2ba9-4da2-404f-b5c2-4e8a61f7b8ea\",\r\n \"name\": \"4c4f2ba9-4da2-404f-b5c2-4e8a61f7b8ea\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"262e8675-e117-4e47-8062-f8c0c3a32782-2020-05-02 04:56:56Z-Ps ActivityId: 1c1a63c0-d19a-4aee-bd30-a076b10054e4\",\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CompleteInitialReplicationTask\",\r\n \"name\": \"CompleteInitialReplication\",\r\n \"startTime\": \"2020-05-02T05:40:17.8665467Z\",\r\n \"endTime\": \"2020-05-02T05:40:18.0700191Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationPreflightChecksTask\",\r\n \"name\": \"FailWorkflowOnIRFailureTask\",\r\n \"startTime\": \"2020-05-02T05:40:18.0700191Z\",\r\n \"endTime\": \"2020-05-02T05:40:18.2259387Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationTask\",\r\n \"name\": \"ReplicaConfiguration\",\r\n \"startTime\": \"2020-05-02T05:40:18.2259387Z\",\r\n \"endTime\": \"2020-05-02T05:40:20.7177247Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete network and post-replication configuration\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2020-05-02T05:40:20.7177247Z\",\r\n \"endTime\": \"2020-05-02T05:40:20.9834701Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T05:40:17.4913332Z\",\r\n \"endTime\": \"2020-05-02T05:40:20Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"5e3e4527-2901-57bf-ba05-4a7edb8a86b8\",\r\n \"primaryCloudId\": \"80d4b287-d836-5f76-9877-c7ea763ffbdf\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"143d1512-39f9-5c98-99f8-7ebcd6b6f425\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzNDcvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09248e39-f424-4df2-ac25-ea797eb1ae44-2020-05-02 05:40:26Z-Ps" + "a4e4ebc0-a7b4-48b7-ad76-b3b3895eeb8d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394426039)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999226039)\\/\",\"ClientRequestId\":\"09248e39-f424-4df2-ac25-ea797eb1ae44-2020-05-02 05:40:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"S3w2E5OChIGEGhzWXK4C1Mgb76Ubr3nE3sjWpRIYzp8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726516916)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331316916)\\/\",\"ClientRequestId\":\"5ac34d52-7bbf-4313-af51-268547aee73e-2021-04-18 07:15:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pnMOG6qjihcZRMDGW33tMg11DNri3eqCrX4nUYEUwCo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21284,38 +21878,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11748" + "11756" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "09248e39-f424-4df2-ac25-ea797eb1ae44-2020-05-02 05:40:26Z-Ps 5/2/2020 5:40:26 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "09248e39-f424-4df2-ac25-ea797eb1ae44-2020-05-02 05:40:26Z-Ps" + "x-ms-request-id": [ + "275efffc-daad-4c24-9a28-7c00ea4d5101" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "a4e4ebc0-a7b4-48b7-ad76-b3b3895eeb8d" ], "x-ms-correlation-request-id": [ - "37c10eac-7b11-4e0b-8121-23e85a0ee564" + "275efffc-daad-4c24-9a28-7c00ea4d5101" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T054026Z:37c10eac-7b11-4e0b-8121-23e85a0ee564" + "CENTRALUSEUAP:20210418T071517Z:275efffc-daad-4c24-9a28-7c00ea4d5101" ], "Date": [ - "Sat, 02 May 2020 05:40:25 GMT" + "Sun, 18 Apr 2021 07:15:17 GMT" ], "Content-Length": [ - "7845" + "4554" ], "Content-Type": [ "application/json" @@ -21324,29 +21915,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\",\r\n \"name\": \"a2aVM347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM347\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationRecoveryServicesProviders/8bb5513b-6753-54dc-9f32-31d61d6b4ea6\",\r\n \"primaryFabricFriendlyName\": \"Southeast Asia\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"Southeast Asia\",\r\n \"recoveryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer347\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer347\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM347'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-05-02T05:40:21.334092Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"policyFriendlyName\": \"TestA2APolicy1347\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.compute/virtualmachines/a2avm347\",\r\n \"initialPrimaryZone\": \"1\",\r\n \"initialPrimaryFabricLocation\": \"southeastasia\",\r\n \"initialRecoveryZone\": \"2\",\r\n \"initialRecoveryFabricLocation\": \"southeastasia\",\r\n \"multiVmGroupId\": \"80103750-6ac6-40e1-9f45-d32b24b00c65\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"5fbc641b-c2bc-4aee-833d-797ad3a6a202\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.compute/disks/a2avm347_osdisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Storage/storageAccounts/cache347\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.38818359375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"tfoDiskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"southeastasia\",\r\n \"recoveryFabricLocation\": \"southeastasia\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM347\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"370a6c72-8026-5c5f-9f68-42657c714946\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\",\r\n \"vMSubnetName\": \"a2aVM347\",\r\n \"vMNetworkName\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.network/virtualnetworks/a2avm347\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUserOverride\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoNicName\": null,\r\n \"tfoNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 99,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2020-05-02T05:40:01.532201Z\",\r\n \"agentVersion\": \"9.32.5487.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"a0c5a85a-f444-40e5-899f-d39f017cab1a\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 1816,\r\n \"lastRpoCalculatedTime\": \"2020-05-02T05:40:16.4626914Z\",\r\n \"primaryAvailabilityZone\": \"1\",\r\n \"recoveryAvailabilityZone\": \"2\",\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM347-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"eventCorrelationId\": \"90ddade4-9e5c-469a-93f9-348d208993a6\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzNDcvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72158834-7e25-42e7-8752-dafabea4e504-2020-05-02 05:40:26Z-Ps" + "88b88239-3d58-4b3a-9df2-d2714ec01e72" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394426517)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999226517)\\/\",\"ClientRequestId\":\"72158834-7e25-42e7-8752-dafabea4e504-2020-05-02 05:40:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cfk8YQ/dPuXo+Ioa8dci2zzwIa6sD8r2OLwCtAFuhV4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726527284)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331327284)\\/\",\"ClientRequestId\":\"12d76d21-3b2f-4a9a-8340-b38fea4cefcc-2021-04-18 07:15:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"c3uHBlp1DO2iTMtMC7kSiolrx3oHgt5sAKFcbqlj7NY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21357,38 +21948,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11747" + "11755" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "72158834-7e25-42e7-8752-dafabea4e504-2020-05-02 05:40:26Z-Ps 5/2/2020 5:40:26 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "72158834-7e25-42e7-8752-dafabea4e504-2020-05-02 05:40:26Z-Ps" + "x-ms-request-id": [ + "4667d920-7fe4-4afa-a504-6f68ba9caf88" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "88b88239-3d58-4b3a-9df2-d2714ec01e72" ], "x-ms-correlation-request-id": [ - "4dd55df4-cf05-4d6c-9500-f002e7fa1009" + "4667d920-7fe4-4afa-a504-6f68ba9caf88" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T054026Z:4dd55df4-cf05-4d6c-9500-f002e7fa1009" + "CENTRALUSEUAP:20210418T071527Z:4667d920-7fe4-4afa-a504-6f68ba9caf88" ], "Date": [ - "Sat, 02 May 2020 05:40:26 GMT" + "Sun, 18 Apr 2021 07:15:27 GMT" ], "Content-Length": [ - "7845" + "5331" ], "Content-Type": [ "application/json" @@ -21397,29 +21985,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\",\r\n \"name\": \"a2aVM347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM347\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationRecoveryServicesProviders/8bb5513b-6753-54dc-9f32-31d61d6b4ea6\",\r\n \"primaryFabricFriendlyName\": \"Southeast Asia\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"Southeast Asia\",\r\n \"recoveryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer347\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer347\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM347'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-05-02T05:40:21.334092Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"policyFriendlyName\": \"TestA2APolicy1347\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.compute/virtualmachines/a2avm347\",\r\n \"initialPrimaryZone\": \"1\",\r\n \"initialPrimaryFabricLocation\": \"southeastasia\",\r\n \"initialRecoveryZone\": \"2\",\r\n \"initialRecoveryFabricLocation\": \"southeastasia\",\r\n \"multiVmGroupId\": \"80103750-6ac6-40e1-9f45-d32b24b00c65\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"5fbc641b-c2bc-4aee-833d-797ad3a6a202\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.compute/disks/a2avm347_osdisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Storage/storageAccounts/cache347\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.38818359375,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"tfoDiskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"southeastasia\",\r\n \"recoveryFabricLocation\": \"southeastasia\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM347\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"370a6c72-8026-5c5f-9f68-42657c714946\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\",\r\n \"vMSubnetName\": \"a2aVM347\",\r\n \"vMNetworkName\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.network/virtualnetworks/a2avm347\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUserOverride\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoNicName\": null,\r\n \"tfoNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 99,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2020-05-02T05:40:01.532201Z\",\r\n \"agentVersion\": \"9.32.5487.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"a0c5a85a-f444-40e5-899f-d39f017cab1a\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 1816,\r\n \"lastRpoCalculatedTime\": \"2020-05-02T05:40:16.4626914Z\",\r\n \"primaryAvailabilityZone\": \"1\",\r\n \"recoveryAvailabilityZone\": \"2\",\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM347-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"eventCorrelationId\": \"90ddade4-9e5c-469a-93f9-348d208993a6\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/aa0c23f7-f966-4e7f-9153-e4b61f7b9092\",\r\n \"name\": \"aa0c23f7-f966-4e7f-9153-e4b61f7b9092\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:15:22.7713597Z\",\r\n \"endTime\": \"2021-04-18T07:15:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzNDcvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23164d9d-b4d6-44d3-87e1-f1806247a7b1-2020-05-03 00:31:48Z-Ps" + "0dc182ef-3bb6-40b0-ba5c-ca78dc79a63b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462308016)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589067108016)\\/\",\"ClientRequestId\":\"23164d9d-b4d6-44d3-87e1-f1806247a7b1-2020-05-03 00:31:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mH01DD0xpVBBMnwi9paCoWVqsC42lE5luWeJHM4HGb4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726537662)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331337662)\\/\",\"ClientRequestId\":\"8e2706f3-c4f1-4c11-b3e5-ccb63d932bf0-2021-04-18 07:15:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OBI5B9x5gdlbKKVN+H9gkG/f9/tESEe/hfAQ/8NMUJw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21430,38 +22018,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11754" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "23164d9d-b4d6-44d3-87e1-f1806247a7b1-2020-05-03 00:31:48Z-Ps 5/3/2020 12:31:48 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "23164d9d-b4d6-44d3-87e1-f1806247a7b1-2020-05-03 00:31:48Z-Ps" + "x-ms-request-id": [ + "1f97b0f0-9352-4dcb-bf33-a786cf9539f4" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "0dc182ef-3bb6-40b0-ba5c-ca78dc79a63b" ], "x-ms-correlation-request-id": [ - "4cc71736-8ee9-4f52-9f76-39a90891ff16" + "1f97b0f0-9352-4dcb-bf33-a786cf9539f4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T003148Z:4cc71736-8ee9-4f52-9f76-39a90891ff16" + "CENTRALUSEUAP:20210418T071537Z:1f97b0f0-9352-4dcb-bf33-a786cf9539f4" ], "Date": [ - "Sun, 03 May 2020 00:31:47 GMT" + "Sun, 18 Apr 2021 07:15:37 GMT" ], "Content-Length": [ - "7977" + "5331" ], "Content-Type": [ "application/json" @@ -21470,35 +22055,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\",\r\n \"name\": \"a2aVM347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM347\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationRecoveryServicesProviders/8bb5513b-6753-54dc-9f32-31d61d6b4ea6\",\r\n \"primaryFabricFriendlyName\": \"Southeast Asia\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"Southeast Asia\",\r\n \"recoveryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer347\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer347\",\r\n \"protectionState\": \"UnplannedFailoverCommitPendingStatesBegin\",\r\n \"protectionStateDescription\": \"Failover completed\",\r\n \"activeLocation\": \"Recovery\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"CompleteMigration\",\r\n \"Commit\",\r\n \"DisableProtection\",\r\n \"ChangePit\",\r\n \"SwitchProtection\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Normal\",\r\n \"healthErrors\": [],\r\n \"policyId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"policyFriendlyName\": \"TestA2APolicy1347\",\r\n \"lastSuccessfulFailoverTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/80d4b287-d836-5f76-9877-c7ea763ffbdf/replicationProtectedItems/a2aVM347/recoveryPoints/059f949c-e1cc-4ecf-a02b-b09e1c7921b6\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.compute/virtualmachines/a2avm347\",\r\n \"initialPrimaryZone\": \"1\",\r\n \"initialPrimaryFabricLocation\": \"southeastasia\",\r\n \"initialRecoveryZone\": \"2\",\r\n \"initialRecoveryFabricLocation\": \"southeastasia\",\r\n \"multiVmGroupId\": \"80103750-6ac6-40e1-9f45-d32b24b00c65\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"5fbc641b-c2bc-4aee-833d-797ad3a6a202\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.compute/disks/a2avm347_osdisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347\",\r\n \"recoveryTargetDiskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"recoveryReplicaDiskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Storage/storageAccounts/cache347\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.7060546875,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"tfoDiskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"southeastasia\",\r\n \"recoveryFabricLocation\": \"southeastasia\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM347\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"370a6c72-8026-5c5f-9f68-42657c714946\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\",\r\n \"vMSubnetName\": \"a2aVM347\",\r\n \"vMNetworkName\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.network/virtualnetworks/a2avm347\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUserOverride\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoNicName\": null,\r\n \"tfoNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-05-03T00:23:22.3377104Z\",\r\n \"agentVersion\": \"9.32.5487.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/recrg347/providers/microsoft.compute/virtualmachines/a2avm347\",\r\n \"vmProtectionState\": \"UnplannedFailoverCommitPendingStatesBegin\",\r\n \"vmProtectionStateDescription\": \"Failover completed\",\r\n \"lifecycleId\": \"a0c5a85a-f444-40e5-899f-d39f017cab1a\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 258,\r\n \"lastRpoCalculatedTime\": \"2020-05-03T00:19:20.61342Z\",\r\n \"primaryAvailabilityZone\": \"1\",\r\n \"recoveryAvailabilityZone\": \"2\",\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM347-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"eventCorrelationId\": \"90ddade4-9e5c-469a-93f9-348d208993a6\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/aa0c23f7-f966-4e7f-9153-e4b61f7b9092\",\r\n \"name\": \"aa0c23f7-f966-4e7f-9153-e4b61f7b9092\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:15:22.7713597Z\",\r\n \"endTime\": \"2021-04-18T07:15:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblJlY292ZXJ5UGxhbnMvQTJBUlAzNDc/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"primaryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"recoveryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"groups\": [\r\n {\r\n \"groupType\": \"Boot\",\r\n \"replicationProtectedItems\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\"\r\n }\r\n ],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n }\r\n ],\r\n \"providerSpecificInput\": [\r\n {\r\n \"instanceType\": \"A2A\",\r\n \"primaryZone\": \"1\",\r\n \"recoveryZone\": \"2\"\r\n }\r\n ]\r\n }\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08bd0910-5731-48c8-ab34-8dada53d03a6-2020-05-02 05:40:26Z-Ps" + "7a382e48-0129-4f85-bb5f-bf697fee3508" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394426837)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999226837)\\/\",\"ClientRequestId\":\"08bd0910-5731-48c8-ab34-8dada53d03a6-2020-05-02 05:40:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XHkQZ3xImXIyCp2z6RmylJXJ62M0L5eqmOwJnPePO/o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726547997)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331347997)\\/\",\"ClientRequestId\":\"0e4e2bb7-d463-457b-8c94-27a728cd8315-2021-04-18 07:15:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0cmlTLYzjRMPlC2bS6Y8vzvUJdUKj7zVuafEAXn8IlI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "1190" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21508,73 +22087,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347/operationresults/ef3478ce-e3ee-488b-af44-a96e08d6c989?api-version=2018-07-10" - ], - "Retry-After": [ - "30" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11753" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ef3478ce-e3ee-488b-af44-a96e08d6c989", - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ef3478ce-e3ee-488b-af44-a96e08d6c989" + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationOperationStatus/ef3478ce-e3ee-488b-af44-a96e08d6c989?api-version=2018-07-10" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "08bd0910-5731-48c8-ab34-8dada53d03a6-2020-05-02 05:40:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "290a4106-dbba-403b-b416-ef57c7f0b443" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "x-ms-client-request-id": [ + "7a382e48-0129-4f85-bb5f-bf697fee3508" ], "x-ms-correlation-request-id": [ - "ece45de5-c4eb-44e2-bd20-ad1678de2f4f" + "290a4106-dbba-403b-b416-ef57c7f0b443" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T054027Z:ece45de5-c4eb-44e2-bd20-ad1678de2f4f" + "CENTRALUSEUAP:20210418T071548Z:290a4106-dbba-403b-b416-ef57c7f0b443" ], "Date": [ - "Sat, 02 May 2020 05:40:26 GMT" + "Sun, 18 Apr 2021 07:15:48 GMT" + ], + "Content-Length": [ + "5331" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/aa0c23f7-f966-4e7f-9153-e4b61f7b9092\",\r\n \"name\": \"aa0c23f7-f966-4e7f-9153-e4b61f7b9092\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:15:22.7713597Z\",\r\n \"endTime\": \"2021-04-18T07:15:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ef3478ce-e3ee-488b-af44-a96e08d6c989?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZWYzNDc4Y2UtZTNlZS00ODhiLWFmNDQtYTk2ZTA4ZDZjOTg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43aa97a8-752b-4d5a-8e9b-68dc222c562e-2020-05-02 05:40:27Z-Ps" + "e28e747e-c731-44f9-a54b-cb10e7b8823a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394427474)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999227474)\\/\",\"ClientRequestId\":\"43aa97a8-752b-4d5a-8e9b-68dc222c562e-2020-05-02 05:40:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9yU2oNk4qro/5IX2w8ce13edOr7TsvDUaVvZ9iG6xIg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726558314)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331358314)\\/\",\"ClientRequestId\":\"e085db3f-69a1-4224-939d-a55bca0ce2a2-2021-04-18 07:15:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7wncRP6W0++5nLY5EPWrHObyCrsHEiQT7F6d/LTRK0I=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21584,39 +22157,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11746" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ef3478ce-e3ee-488b-af44-a96e08d6c989" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], + "x-ms-request-id": [ + "238fef61-0004-451c-bb31-39fdfe4feb2c" + ], "x-ms-client-request-id": [ - "43aa97a8-752b-4d5a-8e9b-68dc222c562e-2020-05-02 05:40:27Z-Ps" + "e28e747e-c731-44f9-a54b-cb10e7b8823a" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11752" ], "x-ms-correlation-request-id": [ - "1926963e-fd4d-4775-a469-a1ff5e2e1627" + "238fef61-0004-451c-bb31-39fdfe4feb2c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T054027Z:1926963e-fd4d-4775-a469-a1ff5e2e1627" + "CENTRALUSEUAP:20210418T071558Z:238fef61-0004-451c-bb31-39fdfe4feb2c" ], "Date": [ - "Sat, 02 May 2020 05:40:27 GMT" + "Sun, 18 Apr 2021 07:15:58 GMT" ], "Content-Length": [ - "1499" + "5331" ], "Content-Type": [ "application/json" @@ -21625,29 +22195,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ef3478ce-e3ee-488b-af44-a96e08d6c989\",\r\n \"name\": \"ef3478ce-e3ee-488b-af44-a96e08d6c989\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"08bd0910-5731-48c8-ab34-8dada53d03a6-2020-05-02 05:40:26Z-Ps ActivityId: ece45de5-c4eb-44e2-bd20-ad1678de2f4f\",\r\n \"scenarioName\": \"SaveRecoveryPlan\",\r\n \"friendlyName\": \"Save a recovery plan\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"7befd97b-51e6-4d35-adc6-500231f2dd88\",\r\n \"name\": \"SaveRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Save a recovery plan task\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T05:40:27.1885454Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/aa0c23f7-f966-4e7f-9153-e4b61f7b9092\",\r\n \"name\": \"aa0c23f7-f966-4e7f-9153-e4b61f7b9092\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:15:22.7713597Z\",\r\n \"endTime\": \"2021-04-18T07:15:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ef3478ce-e3ee-488b-af44-a96e08d6c989?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZWYzNDc4Y2UtZTNlZS00ODhiLWFmNDQtYTk2ZTA4ZDZjOTg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c87aadf-09f9-494c-b91f-84fd892d0429-2020-05-02 05:40:27Z-Ps" + "43140bb6-b6b3-4ebd-bd92-89cba7504977" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394427720)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999227720)\\/\",\"ClientRequestId\":\"0c87aadf-09f9-494c-b91f-84fd892d0429-2020-05-02 05:40:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zvCS5vDkzpT4cAN8VwCX0YurHak20UDaJIcvJhC65Z4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726568649)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331368649)\\/\",\"ClientRequestId\":\"461c4475-e58f-4a42-8ba2-050ff761366b-2021-04-18 07:16:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"powNnUlclCVjfpTek9MIeueHZIuwbsQjxAri7igjFqs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21658,38 +22228,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11745" + "11751" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ef3478ce-e3ee-488b-af44-a96e08d6c989" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "0c87aadf-09f9-494c-b91f-84fd892d0429-2020-05-02 05:40:27Z-Ps" + "x-ms-request-id": [ + "2d1e1698-6feb-4a50-8a91-9c2eca94df73" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "43140bb6-b6b3-4ebd-bd92-89cba7504977" ], "x-ms-correlation-request-id": [ - "3db3ecbc-3d4f-4301-9ded-387e27aae787" + "2d1e1698-6feb-4a50-8a91-9c2eca94df73" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T054027Z:3db3ecbc-3d4f-4301-9ded-387e27aae787" + "CENTRALUSEUAP:20210418T071608Z:2d1e1698-6feb-4a50-8a91-9c2eca94df73" ], "Date": [ - "Sat, 02 May 2020 05:40:27 GMT" + "Sun, 18 Apr 2021 07:16:08 GMT" ], "Content-Length": [ - "1499" + "5331" ], "Content-Type": [ "application/json" @@ -21698,29 +22265,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ef3478ce-e3ee-488b-af44-a96e08d6c989\",\r\n \"name\": \"ef3478ce-e3ee-488b-af44-a96e08d6c989\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"08bd0910-5731-48c8-ab34-8dada53d03a6-2020-05-02 05:40:26Z-Ps ActivityId: ece45de5-c4eb-44e2-bd20-ad1678de2f4f\",\r\n \"scenarioName\": \"SaveRecoveryPlan\",\r\n \"friendlyName\": \"Save a recovery plan\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"7befd97b-51e6-4d35-adc6-500231f2dd88\",\r\n \"name\": \"SaveRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Save a recovery plan task\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T05:40:27.1885454Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/aa0c23f7-f966-4e7f-9153-e4b61f7b9092\",\r\n \"name\": \"aa0c23f7-f966-4e7f-9153-e4b61f7b9092\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:15:22.7713597Z\",\r\n \"endTime\": \"2021-04-18T07:15:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ef3478ce-e3ee-488b-af44-a96e08d6c989?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZWYzNDc4Y2UtZTNlZS00ODhiLWFmNDQtYTk2ZTA4ZDZjOTg5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8722dc98-ccaa-4fdb-a326-2eb9b433ab0d-2020-05-02 05:40:48Z-Ps" + "db57a1f5-7fb8-458d-841c-6f68821ee4a0" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394448058)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999248058)\\/\",\"ClientRequestId\":\"8722dc98-ccaa-4fdb-a326-2eb9b433ab0d-2020-05-02 05:40:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/2/sccTt9ERNe8nTXm0PNtxtPqmyZAN+IDLdweRPwGk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726579119)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331379119)\\/\",\"ClientRequestId\":\"4052fe67-4bfc-4e36-8363-d6312190442d-2021-04-18 07:16:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gTZZTHofhxqtaiE+E9POLqI+UlPr+/cbLaVKLK040H4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21731,38 +22298,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11744" + "11750" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ef3478ce-e3ee-488b-af44-a96e08d6c989" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "8722dc98-ccaa-4fdb-a326-2eb9b433ab0d-2020-05-02 05:40:48Z-Ps" + "x-ms-request-id": [ + "5c9fe412-a09d-43fc-bd35-76ab44ff0712" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "db57a1f5-7fb8-458d-841c-6f68821ee4a0" ], "x-ms-correlation-request-id": [ - "8ca8aca7-8dee-43e7-962a-2cc336ea369d" + "5c9fe412-a09d-43fc-bd35-76ab44ff0712" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T054048Z:8ca8aca7-8dee-43e7-962a-2cc336ea369d" + "CENTRALUSEUAP:20210418T071619Z:5c9fe412-a09d-43fc-bd35-76ab44ff0712" ], "Date": [ - "Sat, 02 May 2020 05:40:48 GMT" + "Sun, 18 Apr 2021 07:16:18 GMT" ], "Content-Length": [ - "1538" + "5331" ], "Content-Type": [ "application/json" @@ -21771,29 +22335,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ef3478ce-e3ee-488b-af44-a96e08d6c989\",\r\n \"name\": \"ef3478ce-e3ee-488b-af44-a96e08d6c989\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"08bd0910-5731-48c8-ab34-8dada53d03a6-2020-05-02 05:40:26Z-Ps ActivityId: ece45de5-c4eb-44e2-bd20-ad1678de2f4f\",\r\n \"scenarioName\": \"SaveRecoveryPlan\",\r\n \"friendlyName\": \"Save a recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"7befd97b-51e6-4d35-adc6-500231f2dd88\",\r\n \"name\": \"SaveRecoveryPlanTask\",\r\n \"startTime\": \"2020-05-02T05:40:27.4013267Z\",\r\n \"endTime\": \"2020-05-02T05:40:27.8388166Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Save a recovery plan task\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-02T05:40:27.1885454Z\",\r\n \"endTime\": \"2020-05-02T05:40:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/aa0c23f7-f966-4e7f-9153-e4b61f7b9092\",\r\n \"name\": \"aa0c23f7-f966-4e7f-9153-e4b61f7b9092\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:15:22.7713597Z\",\r\n \"endTime\": \"2021-04-18T07:15:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblJlY292ZXJ5UGxhbnMvQTJBUlAzNDc/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f5c3339-986f-431b-8818-bfefa59f130a-2020-05-02 05:40:48Z-Ps" + "fa401b39-6b26-4fdf-b0ae-a9246814d7d4" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394448382)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999248382)\\/\",\"ClientRequestId\":\"1f5c3339-986f-431b-8818-bfefa59f130a-2020-05-02 05:40:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NYxaSSYQ/7LmjHiUNuVDTtad0caLQ0zVR5HWISwG5mU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726589453)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331389453)\\/\",\"ClientRequestId\":\"4f04b28e-b8d5-4040-9c9e-1cee6e124da2-2021-04-18 07:16:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zmNMA42jBZOC6twvtyFu7rzQFLVy+4PyUUnqbf/nziY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21804,38 +22368,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11743" + "11749" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "1f5c3339-986f-431b-8818-bfefa59f130a-2020-05-02 05:40:48Z-Ps 5/2/2020 5:40:48 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "1f5c3339-986f-431b-8818-bfefa59f130a-2020-05-02 05:40:48Z-Ps" + "x-ms-request-id": [ + "7e699324-7a66-4c95-9368-ec8285f95437" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "fa401b39-6b26-4fdf-b0ae-a9246814d7d4" ], "x-ms-correlation-request-id": [ - "374239be-68a1-49f4-9790-9a4c4e356e44" + "7e699324-7a66-4c95-9368-ec8285f95437" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T054048Z:374239be-68a1-49f4-9790-9a4c4e356e44" + "CENTRALUSEUAP:20210418T071629Z:7e699324-7a66-4c95-9368-ec8285f95437" ], "Date": [ - "Sat, 02 May 2020 05:40:48 GMT" + "Sun, 18 Apr 2021 07:16:29 GMT" ], "Content-Length": [ - "1813" + "5331" ], "Content-Type": [ "application/json" @@ -21844,29 +22405,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347\",\r\n \"name\": \"A2ARP347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans\",\r\n \"properties\": {\r\n \"friendlyName\": \"A2ARP347\",\r\n \"primaryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"primaryFabricFriendlyName\": \"Southeast Asia\",\r\n \"recoveryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"recoveryFabricFriendlyName\": \"Southeast Asia\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"replicationProviders\": [\r\n \"A2A\"\r\n ],\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"TestFailover\"\r\n ],\r\n \"currentScenario\": null,\r\n \"currentScenarioStatus\": null,\r\n \"currentScenarioStatusDescription\": null,\r\n \"groups\": [\r\n {\r\n \"groupType\": \"Shutdown\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Failover\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Boot\",\r\n \"replicationProtectedItems\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\",\r\n \"virtualMachineId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\"\r\n }\r\n ],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n }\r\n ],\r\n \"providerSpecificDetails\": [\r\n {\r\n \"instanceType\": \"A2A\",\r\n \"primaryZone\": \"1\",\r\n \"recoveryZone\": \"2\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/aa0c23f7-f966-4e7f-9153-e4b61f7b9092\",\r\n \"name\": \"aa0c23f7-f966-4e7f-9153-e4b61f7b9092\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:15:22.7713597Z\",\r\n \"endTime\": \"2021-04-18T07:15:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblJlY292ZXJ5UGxhbnMvQTJBUlAzNDc/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6a4351f6-14df-4ede-bcca-5179c54f941c-2020-05-03 00:24:14Z-Ps" + "af24ccc1-36bd-42c6-b6c3-85c3373de615" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588461854216)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066654216)\\/\",\"ClientRequestId\":\"6a4351f6-14df-4ede-bcca-5179c54f941c-2020-05-03 00:24:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iY9FOdf6MUo8r0uE1bSrX0R8et0ddiu1q6ycFyu5fWM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726599759)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331399759)\\/\",\"ClientRequestId\":\"56c0b3e4-6cea-4ca9-b9e0-0b441ade4f13-2021-04-18 07:16:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zsmmYRbVdFCXDycO1yCugSUcHU/1rM/3X6+43v5h6UU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21877,38 +22438,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11748" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "6a4351f6-14df-4ede-bcca-5179c54f941c-2020-05-03 00:24:14Z-Ps 5/3/2020 12:24:15 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "6a4351f6-14df-4ede-bcca-5179c54f941c-2020-05-03 00:24:14Z-Ps" + "x-ms-request-id": [ + "ccb700a8-81b3-4a6e-bf63-6f14e761afd3" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "af24ccc1-36bd-42c6-b6c3-85c3373de615" ], "x-ms-correlation-request-id": [ - "227ca406-9eef-479c-ac84-1ba32e681d94" + "ccb700a8-81b3-4a6e-bf63-6f14e761afd3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002415Z:227ca406-9eef-479c-ac84-1ba32e681d94" + "CENTRALUSEUAP:20210418T071639Z:ccb700a8-81b3-4a6e-bf63-6f14e761afd3" ], "Date": [ - "Sun, 03 May 2020 00:24:15 GMT" + "Sun, 18 Apr 2021 07:16:39 GMT" ], "Content-Length": [ - "1813" + "5331" ], "Content-Type": [ "application/json" @@ -21917,29 +22475,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347\",\r\n \"name\": \"A2ARP347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans\",\r\n \"properties\": {\r\n \"friendlyName\": \"A2ARP347\",\r\n \"primaryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"primaryFabricFriendlyName\": \"Southeast Asia\",\r\n \"recoveryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"recoveryFabricFriendlyName\": \"Southeast Asia\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"replicationProviders\": [\r\n \"A2A\"\r\n ],\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"TestFailover\"\r\n ],\r\n \"currentScenario\": null,\r\n \"currentScenarioStatus\": null,\r\n \"currentScenarioStatusDescription\": null,\r\n \"groups\": [\r\n {\r\n \"groupType\": \"Shutdown\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Failover\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Boot\",\r\n \"replicationProtectedItems\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\",\r\n \"virtualMachineId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\"\r\n }\r\n ],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n }\r\n ],\r\n \"providerSpecificDetails\": [\r\n {\r\n \"instanceType\": \"A2A\",\r\n \"primaryZone\": \"1\",\r\n \"recoveryZone\": \"2\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/aa0c23f7-f966-4e7f-9153-e4b61f7b9092\",\r\n \"name\": \"aa0c23f7-f966-4e7f-9153-e4b61f7b9092\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:15:22.7713597Z\",\r\n \"endTime\": \"2021-04-18T07:15:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblJlY292ZXJ5UGxhbnMvQTJBUlAzNDc/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnM/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c31cce9-314d-423b-9173-001436331dc5-2020-05-03 00:31:48Z-Ps" + "70d1683c-8055-4a26-bf97-effba8a0c10f" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462308434)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589067108434)\\/\",\"ClientRequestId\":\"0c31cce9-314d-423b-9173-001436331dc5-2020-05-03 00:31:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UW3t/f6TljRNApM4bXH5E4IEiGFeFSdUbjZZWo5B7/4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726610070)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331410070)\\/\",\"ClientRequestId\":\"f337c3e2-4bbf-4042-ae6b-ef39ee4d4463-2021-04-18 07:16:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"iyCUzC6/W2vfzBY6Xu66KQdZPENTF1TIjh1yTKMMfMg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -21950,38 +22508,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11747" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "0c31cce9-314d-423b-9173-001436331dc5-2020-05-03 00:31:48Z-Ps 5/3/2020 12:31:48 AM" - ], - "X-Powered-By": [ - "ASP.NET" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-client-request-id": [ - "0c31cce9-314d-423b-9173-001436331dc5-2020-05-03 00:31:48Z-Ps" + "x-ms-request-id": [ + "206b3320-e605-40f9-bcfd-692ac463bac4" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-client-request-id": [ + "70d1683c-8055-4a26-bf97-effba8a0c10f" ], "x-ms-correlation-request-id": [ - "d9a225ea-c4f7-4197-8c6d-68901c5348c5" + "206b3320-e605-40f9-bcfd-692ac463bac4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T003148Z:d9a225ea-c4f7-4197-8c6d-68901c5348c5" + "CENTRALUSEUAP:20210418T071650Z:206b3320-e605-40f9-bcfd-692ac463bac4" ], "Date": [ - "Sun, 03 May 2020 00:31:47 GMT" + "Sun, 18 Apr 2021 07:16:50 GMT" ], "Content-Length": [ - "2187" + "6111" ], "Content-Type": [ "application/json" @@ -21990,29 +22545,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347\",\r\n \"name\": \"A2ARP347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans\",\r\n \"properties\": {\r\n \"friendlyName\": \"A2ARP347\",\r\n \"primaryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"primaryFabricFriendlyName\": \"Southeast Asia\",\r\n \"recoveryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"recoveryFabricFriendlyName\": \"Southeast Asia\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"replicationProviders\": [\r\n \"A2A\"\r\n ],\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"TestFailover\",\r\n \"Commit\"\r\n ],\r\n \"lastUnplannedFailoverTime\": \"2020-05-03T00:24:16.8083627Z\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"startTime\": \"2020-05-03T00:24:23.341125Z\"\r\n },\r\n \"currentScenarioStatus\": \"Succeeded\",\r\n \"currentScenarioStatusDescription\": \"Completed\",\r\n \"groups\": [\r\n {\r\n \"groupType\": \"Shutdown\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Failover\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Boot\",\r\n \"replicationProtectedItems\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\",\r\n \"virtualMachineId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\"\r\n }\r\n ],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n }\r\n ],\r\n \"providerSpecificDetails\": [\r\n {\r\n \"instanceType\": \"A2A\",\r\n \"primaryZone\": \"1\",\r\n \"recoveryZone\": \"2\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/d9ecc349-d287-45f6-a618-dc5aa326bbab\",\r\n \"name\": \"d9ecc349-d287-45f6-a618-dc5aa326bbab\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:16:41.9047428Z\",\r\n \"endTime\": \"2021-04-18T07:16:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/aa0c23f7-f966-4e7f-9153-e4b61f7b9092\",\r\n \"name\": \"aa0c23f7-f966-4e7f-9153-e4b61f7b9092\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"PrimaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the primary virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:15:22.7713597Z\",\r\n \"endTime\": \"2021-04-18T07:15:23Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"name\": \"99eeff00-079a-4c12-a316-e0b8e18f490f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:29:30.1059764Z\",\r\n \"endTime\": \"2021-04-18T06:40:13Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"name\": \"598fde85-d7be-4b5a-80ea-12eab2723699\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:06.1491343Z\",\r\n \"endTime\": \"2021-04-18T06:29:18Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"name\": \"4ffae285-9a83-45f2-b6f9-aa6b5310536c\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:04.498563Z\",\r\n \"endTime\": \"2021-04-18T06:28:04Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"targetObjectName\": \"TestA2APolicy1347\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"name\": \"2b5a3023-7624-4dac-81ea-f78f1a6edb83\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:02.5450935Z\",\r\n \"endTime\": \"2021-04-18T06:28:02Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"targetObjectName\": \"A2ARecoveryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"name\": \"80291e0f-3bfd-46a6-87c6-8dfc1f9df5fe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:28:00.4414078Z\",\r\n \"endTime\": \"2021-04-18T06:28:00Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"targetObjectName\": \"A2APrimaryContainer347\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": null\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"name\": \"52b5dcd8-dedc-44ff-91c6-7b689fa751fb\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": null,\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T06:25:55.9275184Z\",\r\n \"endTime\": \"2021-04-18T06:27:51Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"targetObjectName\": \"a2aPrimaryFabric347\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": null\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationProtectedItems?$filter=RecoveryPlanName%20eq%20'A2ARP347'&api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblByb3RlY3RlZEl0ZW1zPyRmaWx0ZXI9UmVjb3ZlcnlQbGFuTmFtZSUyMGVxJTIwJ0EyQVJQMzQ3JyZhcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/d9ecc349-d287-45f6-a618-dc5aa326bbab?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZDllY2MzNDktZDI4Ny00NWY2LWE2MTgtZGM1YWEzMjZiYmFiP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3cd36966-b919-4ef3-9852-54cbf7c3574e-2020-05-02 05:40:48Z-Ps" + "44b4c90d-af09-4269-8f94-7f746e561d16" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588394448790)\\/\",\"NotAfterTimestamp\":\"\\/Date(1588999248790)\\/\",\"ClientRequestId\":\"3cd36966-b919-4ef3-9852-54cbf7c3574e-2020-05-02 05:40:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"6tSJFlqCnHgFNafvDQC36MTwp1IpxTry1LWu5CZ0y5o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726610400)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331410400)\\/\",\"ClientRequestId\":\"a4a2f7c0-2fb1-4560-9e17-9b99d4c6cfd5-2021-04-18 07:16:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"929bTUoIcRcuJDqs5e5pbWS05RHKspmxjP27dLyyJl0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22023,38 +22578,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11742" + "11746" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "3cd36966-b919-4ef3-9852-54cbf7c3574e-2020-05-02 05:40:48Z-Ps 5/2/2020 5:40:49 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/d9ecc349-d287-45f6-a618-dc5aa326bbab" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3cd36966-b919-4ef3-9852-54cbf7c3574e-2020-05-02 05:40:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "44b4c90d-af09-4269-8f94-7f746e561d16" ], "x-ms-correlation-request-id": [ - "c9399f78-88a1-41b6-ae74-8046fb46026f" + "aaf67b46-e766-475c-8135-dc0c5db07a5f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200502T054049Z:c9399f78-88a1-41b6-ae74-8046fb46026f" + "CENTRALUSEUAP:20210418T071650Z:aaf67b46-e766-475c-8135-dc0c5db07a5f" ], "Date": [ - "Sat, 02 May 2020 05:40:49 GMT" + "Sun, 18 Apr 2021 07:16:50 GMT" ], "Content-Length": [ - "15693" + "3117" ], "Content-Type": [ "application/json" @@ -22063,29 +22615,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\",\r\n \"name\": \"a2aVM347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM347\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationRecoveryServicesProviders/8bb5513b-6753-54dc-9f32-31d61d6b4ea6\",\r\n \"primaryFabricFriendlyName\": \"Southeast Asia\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"Southeast Asia\",\r\n \"recoveryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer347\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer347\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM347'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-05-02T05:40:21.334092Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"policyFriendlyName\": \"TestA2APolicy1347\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.compute/virtualmachines/a2avm347\",\r\n \"initialPrimaryZone\": \"1\",\r\n \"initialPrimaryFabricLocation\": \"southeastasia\",\r\n \"initialRecoveryZone\": \"2\",\r\n \"initialRecoveryFabricLocation\": \"southeastasia\",\r\n \"multiVmGroupId\": \"80103750-6ac6-40e1-9f45-d32b24b00c65\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"5fbc641b-c2bc-4aee-833d-797ad3a6a202\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.compute/disks/a2avm347_osdisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Storage/storageAccounts/cache347\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.0,\r\n \"diskState\": null,\r\n \"allowedDiskLevelOperation\": null,\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"tfoDiskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"southeastasia\",\r\n \"recoveryFabricLocation\": \"southeastasia\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM347\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"370a6c72-8026-5c5f-9f68-42657c714946\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\",\r\n \"vMSubnetName\": \"a2aVM347\",\r\n \"vMNetworkName\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.network/virtualnetworks/a2avm347\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUserOverride\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoNicName\": null,\r\n \"tfoNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": null\r\n },\r\n \"monitoringPercentageCompletion\": 99,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2020-05-02T05:40:01.532201Z\",\r\n \"agentVersion\": \"9.32.5487.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"a0c5a85a-f444-40e5-899f-d39f017cab1a\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 1816,\r\n \"lastRpoCalculatedTime\": \"2020-05-02T05:40:16.4626914Z\",\r\n \"primaryAvailabilityZone\": \"1\",\r\n \"recoveryAvailabilityZone\": \"2\",\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM347-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"eventCorrelationId\": \"90ddade4-9e5c-469a-93f9-348d208993a6\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\",\r\n \"name\": \"a2aVM347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM347\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationRecoveryServicesProviders/8bb5513b-6753-54dc-9f32-31d61d6b4ea6\",\r\n \"primaryFabricFriendlyName\": \"Southeast Asia\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"Southeast Asia\",\r\n \"recoveryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer347\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer347\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Critical\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Error\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM347'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2020-05-02T05:40:21.334092Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"policyFriendlyName\": \"TestA2APolicy1347\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.compute/virtualmachines/a2avm347\",\r\n \"initialPrimaryZone\": \"1\",\r\n \"initialPrimaryFabricLocation\": \"southeastasia\",\r\n \"initialRecoveryZone\": \"2\",\r\n \"initialRecoveryFabricLocation\": \"southeastasia\",\r\n \"multiVmGroupId\": \"80103750-6ac6-40e1-9f45-d32b24b00c65\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"5fbc641b-c2bc-4aee-833d-797ad3a6a202\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.compute/disks/a2avm347_osdisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Storage/storageAccounts/cache347\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.0,\r\n \"diskState\": null,\r\n \"allowedDiskLevelOperation\": null,\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"tfoDiskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"southeastasia\",\r\n \"recoveryFabricLocation\": \"southeastasia\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM347\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"370a6c72-8026-5c5f-9f68-42657c714946\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\",\r\n \"vMSubnetName\": \"a2aVM347\",\r\n \"vMNetworkName\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.network/virtualnetworks/a2avm347\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUserOverride\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoNicName\": null,\r\n \"tfoNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": null\r\n },\r\n \"monitoringPercentageCompletion\": 99,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2020-05-02T05:40:01.532201Z\",\r\n \"agentVersion\": \"9.32.5487.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"a0c5a85a-f444-40e5-899f-d39f017cab1a\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 1816,\r\n \"lastRpoCalculatedTime\": \"2020-05-02T05:40:16.4626914Z\",\r\n \"primaryAvailabilityZone\": \"1\",\r\n \"recoveryAvailabilityZone\": \"2\",\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM347-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"eventCorrelationId\": \"90ddade4-9e5c-469a-93f9-348d208993a6\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/d9ecc349-d287-45f6-a618-dc5aa326bbab\",\r\n \"name\": \"d9ecc349-d287-45f6-a618-dc5aa326bbab\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c38cdc87-175a-4ca9-a200-e7db57b68465 ActivityId: 6954c8ac-f40b-45af-9f5c-26ae147925c7\",\r\n \"scenarioName\": \"SecondaryIrCompletion\",\r\n \"friendlyName\": \"Finalize protection on the recovery virtual machine\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CompleteInitialReplicationTask\",\r\n \"name\": \"CompleteInitialReplication\",\r\n \"startTime\": \"2021-04-18T07:16:42.2027335Z\",\r\n \"endTime\": \"2021-04-18T07:16:43.2927712Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationPreflightChecksTask\",\r\n \"name\": \"FailWorkflowOnIRFailureTask\",\r\n \"startTime\": \"2021-04-18T07:16:43.2927712Z\",\r\n \"endTime\": \"2021-04-18T07:16:43.3927197Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing initial replication\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ReplicaConfigurationTask\",\r\n \"name\": \"ReplicaConfiguration\",\r\n \"startTime\": \"2021-04-18T07:16:43.3927197Z\",\r\n \"endTime\": \"2021-04-18T07:16:46.8278294Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Complete network and post-replication configuration\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"2021-04-18T07:16:46.8278294Z\",\r\n \"endTime\": \"2021-04-18T07:16:47.0928349Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:16:41.9047428Z\",\r\n \"endTime\": \"2021-04-18T07:16:47Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"primaryVmName\": \"a2avm347\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm347\",\r\n \"protectionProfileId\": \"d0d12b38-e28a-5e9d-b931-5da534b0020d\",\r\n \"primaryCloudId\": \"479fc0a1-d6b9-582b-826c-4399d20819ea\",\r\n \"primaryCloudName\": \"A2APrimaryContainer347\",\r\n \"recoveryCloudId\": \"ce41ae3b-2829-50fa-93ca-de82104cef9b\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer347\",\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationProtectedItems?$filter=RecoveryPlanName%20eq%20'A2ARP347'&api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblByb3RlY3RlZEl0ZW1zPyRmaWx0ZXI9UmVjb3ZlcnlQbGFuTmFtZSUyMGVxJTIwJ0EyQVJQMzQ3JyZhcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzNDcvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad46197b-4ff7-404a-a219-8fb8bc2a1015-2020-05-03 00:31:48Z-Ps" + "770ad1ef-1990-4362-a9f5-99497778da16" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462308856)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589067108856)\\/\",\"ClientRequestId\":\"ad46197b-4ff7-404a-a219-8fb8bc2a1015-2020-05-03 00:31:48Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"p/ZU/GvUqNvNPhAAp+LPulnAR6YREeNMyVOuN7+lAdU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726610784)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331410784)\\/\",\"ClientRequestId\":\"8787af93-018e-4d8e-80ba-b9715478c2ad-2021-04-18 07:16:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"l4PIUsR3FEqJrlc7aqelTR19NUlR0/p3CirnTbs9mNI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22096,38 +22648,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11745" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "ad46197b-4ff7-404a-a219-8fb8bc2a1015-2020-05-03 00:31:48Z-Ps 5/3/2020 12:31:49 AM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "770ad1ef-1990-4362-a9f5-99497778da16 4/18/2021 7:16:51 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ad46197b-4ff7-404a-a219-8fb8bc2a1015-2020-05-03 00:31:48Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "770ad1ef-1990-4362-a9f5-99497778da16" ], "x-ms-correlation-request-id": [ - "f93f613f-38a8-45c0-93a5-780477e918bf" + "9facd3f8-d1c6-4e4d-af98-c0d67e625850" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T003149Z:f93f613f-38a8-45c0-93a5-780477e918bf" + "CENTRALUSEUAP:20210418T071651Z:9facd3f8-d1c6-4e4d-af98-c0d67e625850" ], "Date": [ - "Sun, 03 May 2020 00:31:48 GMT" + "Sun, 18 Apr 2021 07:16:50 GMT" ], "Content-Length": [ - "15959" + "8230" ], "Content-Type": [ "application/json" @@ -22136,35 +22685,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\",\r\n \"name\": \"a2aVM347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM347\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationRecoveryServicesProviders/8bb5513b-6753-54dc-9f32-31d61d6b4ea6\",\r\n \"primaryFabricFriendlyName\": \"Southeast Asia\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"Southeast Asia\",\r\n \"recoveryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer347\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer347\",\r\n \"protectionState\": \"UnplannedFailoverCommitPendingStatesBegin\",\r\n \"protectionStateDescription\": \"Failover completed\",\r\n \"activeLocation\": \"Recovery\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"CompleteMigration\",\r\n \"Commit\",\r\n \"DisableProtection\",\r\n \"ChangePit\",\r\n \"SwitchProtection\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Normal\",\r\n \"healthErrors\": [],\r\n \"policyId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"policyFriendlyName\": \"TestA2APolicy1347\",\r\n \"lastSuccessfulFailoverTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/80d4b287-d836-5f76-9877-c7ea763ffbdf/replicationProtectedItems/a2aVM347/recoveryPoints/059f949c-e1cc-4ecf-a02b-b09e1c7921b6\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.compute/virtualmachines/a2avm347\",\r\n \"initialPrimaryZone\": \"1\",\r\n \"initialPrimaryFabricLocation\": \"southeastasia\",\r\n \"initialRecoveryZone\": \"2\",\r\n \"initialRecoveryFabricLocation\": \"southeastasia\",\r\n \"multiVmGroupId\": \"80103750-6ac6-40e1-9f45-d32b24b00c65\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"5fbc641b-c2bc-4aee-833d-797ad3a6a202\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.compute/disks/a2avm347_osdisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347\",\r\n \"recoveryTargetDiskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"recoveryReplicaDiskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Storage/storageAccounts/cache347\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.0,\r\n \"diskState\": null,\r\n \"allowedDiskLevelOperation\": null,\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"tfoDiskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"southeastasia\",\r\n \"recoveryFabricLocation\": \"southeastasia\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM347\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"370a6c72-8026-5c5f-9f68-42657c714946\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\",\r\n \"vMSubnetName\": \"a2aVM347\",\r\n \"vMNetworkName\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.network/virtualnetworks/a2avm347\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUserOverride\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoNicName\": null,\r\n \"tfoNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": null\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-05-03T00:23:22.3377104Z\",\r\n \"agentVersion\": \"9.32.5487.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/recrg347/providers/microsoft.compute/virtualmachines/a2avm347\",\r\n \"vmProtectionState\": \"UnplannedFailoverCommitPendingStatesBegin\",\r\n \"vmProtectionStateDescription\": \"Failover completed\",\r\n \"lifecycleId\": \"a0c5a85a-f444-40e5-899f-d39f017cab1a\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 258,\r\n \"lastRpoCalculatedTime\": \"2020-05-03T00:19:20.61342Z\",\r\n \"primaryAvailabilityZone\": \"1\",\r\n \"recoveryAvailabilityZone\": \"2\",\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM347-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"eventCorrelationId\": \"90ddade4-9e5c-469a-93f9-348d208993a6\"\r\n }\r\n },\r\n {\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\",\r\n \"name\": \"a2aVM347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM347\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationRecoveryServicesProviders/8bb5513b-6753-54dc-9f32-31d61d6b4ea6\",\r\n \"primaryFabricFriendlyName\": \"Southeast Asia\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"Southeast Asia\",\r\n \"recoveryFabricId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer347\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer347\",\r\n \"protectionState\": \"UnplannedFailoverCommitPendingStatesBegin\",\r\n \"protectionStateDescription\": \"Failover completed\",\r\n \"activeLocation\": \"Recovery\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"CompleteMigration\",\r\n \"Commit\",\r\n \"DisableProtection\",\r\n \"ChangePit\",\r\n \"SwitchProtection\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Normal\",\r\n \"healthErrors\": [],\r\n \"policyId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"policyFriendlyName\": \"TestA2APolicy1347\",\r\n \"lastSuccessfulFailoverTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/80d4b287-d836-5f76-9877-c7ea763ffbdf/replicationProtectedItems/a2aVM347/recoveryPoints/059f949c-e1cc-4ecf-a02b-b09e1c7921b6\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.compute/virtualmachines/a2avm347\",\r\n \"initialPrimaryZone\": \"1\",\r\n \"initialPrimaryFabricLocation\": \"southeastasia\",\r\n \"initialRecoveryZone\": \"2\",\r\n \"initialRecoveryFabricLocation\": \"southeastasia\",\r\n \"multiVmGroupId\": \"80103750-6ac6-40e1-9f45-d32b24b00c65\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"5fbc641b-c2bc-4aee-833d-797ad3a6a202\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.compute/disks/a2avm347_osdisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347\",\r\n \"recoveryTargetDiskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"recoveryReplicaDiskId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Storage/storageAccounts/cache347\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.0,\r\n \"diskState\": null,\r\n \"allowedDiskLevelOperation\": null,\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"tfoDiskName\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"southeastasia\",\r\n \"recoveryFabricLocation\": \"southeastasia\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_DS1_v2\",\r\n \"recoveryAzureVMName\": \"a2aVM347\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"370a6c72-8026-5c5f-9f68-42657c714946\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\",\r\n \"vMSubnetName\": \"a2aVM347\",\r\n \"vMNetworkName\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/a2avm347/providers/microsoft.network/virtualnetworks/a2avm347\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"recoveryVMSubnetName\": \"frontendSubnet\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"primaryNicStaticIPAddress\": \"192.168.1.4\",\r\n \"replicaNicStaticIPAddress\": \"\",\r\n \"selectionType\": \"SelectedByUserOverride\",\r\n \"recoveryNicIpAddressType\": \"Dynamic\",\r\n \"recoveryPublicIpAddressId\": null,\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoVMSubnetName\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"tfoIPConfigs\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoNicName\": null,\r\n \"tfoNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": null\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2020-05-03T00:23:22.3377104Z\",\r\n \"agentVersion\": \"9.32.5487.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourcegroups/recrg347/providers/microsoft.compute/virtualmachines/a2avm347\",\r\n \"vmProtectionState\": \"UnplannedFailoverCommitPendingStatesBegin\",\r\n \"vmProtectionStateDescription\": \"Failover completed\",\r\n \"lifecycleId\": \"a0c5a85a-f444-40e5-899f-d39f017cab1a\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 258,\r\n \"lastRpoCalculatedTime\": \"2020-05-03T00:19:20.61342Z\",\r\n \"primaryAvailabilityZone\": \"1\",\r\n \"recoveryAvailabilityZone\": \"2\",\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM347-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"eventCorrelationId\": \"90ddade4-9e5c-469a-93f9-348d208993a6\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\",\r\n \"name\": \"a2aVM347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM347\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationRecoveryServicesProviders/995d1e44-7f9f-5b2c-92c9-870c57b818e5\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer347\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer347\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM347'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T07:16:48.9303133Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"policyFriendlyName\": \"TestA2APolicy1347\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm347/providers/microsoft.compute/virtualmachines/a2avm347\",\r\n \"initialPrimaryZone\": \"1\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"2\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"e83c436b-6472-41e4-b9b1-bc1d9257520e\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"73139b68-5d30-4ca2-a9b9-505787e77dfa\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm347/providers/microsoft.compute/disks/a2avm347_osdisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Storage/storageAccounts/cache347\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.4072265625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"tfoDiskName\": \"a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM347\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"bdf94f22-52fb-5056-a585-33acc3649ee0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM347\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM347\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByUserOverride\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 87,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2021-04-18T07:16:08.9300927Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T06:28:10Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"8798a6e2-3912-4d4a-94dc-89c26ded16ad\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2106,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T07:16:40.5509965Z\",\r\n \"primaryAvailabilityZone\": \"1\",\r\n \"recoveryAvailabilityZone\": \"2\",\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM347-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"eventCorrelationId\": \"93682614-c91c-47d7-a253-2fe9fd707f98\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347/unplannedFailover?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblJlY292ZXJ5UGxhbnMvQTJBUlAzNDcvdW5wbGFubmVkRmFpbG92ZXI/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"failoverDirection\": \"PrimaryToRecovery\",\r\n \"sourceSiteOperations\": \"Required\",\r\n \"providerSpecificDetails\": [\r\n {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointType\": \"Latest\"\r\n }\r\n ]\r\n }\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzNDcvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps" + "0824dd2b-038c-4184-9062-4b62cd2c02c8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588461855511)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066655511)\\/\",\"ClientRequestId\":\"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"KS0VDzVHzUPzHWkl3VTESTCcRGDOX18z0r+T5fLHEPI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726611341)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331411341)\\/\",\"ClientRequestId\":\"651dce08-3145-4444-9638-f0d4d4365283-2021-04-18 07:16:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Sxmk9HPe9G1ydSpd1geRFGipUEKLewW11/k1wR+60Y8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "246" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22174,73 +22717,67 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347/operationresults/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11744" ], - "Retry-After": [ - "30" + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf", - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationOperationStatus/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10" + "x-ms-request-id": [ + "0824dd2b-038c-4184-9062-4b62cd2c02c8 4/18/2021 7:16:51 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "0824dd2b-038c-4184-9062-4b62cd2c02c8" ], "x-ms-correlation-request-id": [ - "cc05636c-b6f7-4df9-a38c-70aecd68981e" + "ca1ae635-eff1-4fcc-a483-0b2763032632" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002416Z:cc05636c-b6f7-4df9-a38c-70aecd68981e" + "CENTRALUSEUAP:20210418T071651Z:ca1ae635-eff1-4fcc-a483-0b2763032632" ], "Date": [ - "Sun, 03 May 2020 00:24:15 GMT" + "Sun, 18 Apr 2021 07:16:51 GMT" + ], + "Content-Length": [ + "8230" + ], + "Content-Type": [ + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\",\r\n \"name\": \"a2aVM347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM347\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationRecoveryServicesProviders/995d1e44-7f9f-5b2c-92c9-870c57b818e5\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer347\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer347\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM347'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T07:16:48.9303133Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"policyFriendlyName\": \"TestA2APolicy1347\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm347/providers/microsoft.compute/virtualmachines/a2avm347\",\r\n \"initialPrimaryZone\": \"1\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"2\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"e83c436b-6472-41e4-b9b1-bc1d9257520e\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"73139b68-5d30-4ca2-a9b9-505787e77dfa\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm347/providers/microsoft.compute/disks/a2avm347_osdisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Storage/storageAccounts/cache347\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.4072265625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"tfoDiskName\": \"a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM347\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"bdf94f22-52fb-5056-a585-33acc3649ee0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM347\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM347\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByUserOverride\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": 87,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2021-04-18T07:16:08.9300927Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T06:28:10Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"8798a6e2-3912-4d4a-94dc-89c26ded16ad\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2106,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T07:16:40.5509965Z\",\r\n \"primaryAvailabilityZone\": \"1\",\r\n \"recoveryAvailabilityZone\": \"2\",\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM347-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"eventCorrelationId\": \"93682614-c91c-47d7-a253-2fe9fd707f98\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzM0Ny9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIzNDcvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTM0Nz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f013e9f4-979e-4345-9007-fc5544bfb8de-2020-05-03 00:24:16Z-Ps" + "81af3281-591f-413c-9ccf-38954da513de" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588461856242)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066656242)\\/\",\"ClientRequestId\":\"f013e9f4-979e-4345-9007-fc5544bfb8de-2020-05-03 00:24:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jx5dL0HkE6pYrSyuXthJlEvdJSFDpNm1d3AhNg2MIic=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726861880)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331661880)\\/\",\"ClientRequestId\":\"9656a0fa-fb88-4901-8813-a4020e16bbe9-2021-04-18 07:21:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OSVe5E+zKom3+p4qVYg428W45WkwuHybrMquqF28W70=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22251,38 +22788,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11724" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "81af3281-591f-413c-9ccf-38954da513de 4/18/2021 7:21:02 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f013e9f4-979e-4345-9007-fc5544bfb8de-2020-05-03 00:24:16Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "81af3281-591f-413c-9ccf-38954da513de" ], "x-ms-correlation-request-id": [ - "34992b90-a7a0-489f-bafb-fbbdf0414f48" + "8ceeefab-0294-41de-b081-d06916206ac9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002416Z:34992b90-a7a0-489f-bafb-fbbdf0414f48" + "CENTRALUSEUAP:20210418T072102Z:8ceeefab-0294-41de-b081-d06916206ac9" ], "Date": [ - "Sun, 03 May 2020 00:24:16 GMT" + "Sun, 18 Apr 2021 07:21:02 GMT" ], "Content-Length": [ - "1136" + "8308" ], "Content-Type": [ "application/json" @@ -22291,29 +22825,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf\",\r\n \"name\": \"31af2c6f-2481-41af-a59f-009b3e619caf\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:15.9526421Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\",\r\n \"name\": \"a2aVM347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM347\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationRecoveryServicesProviders/995d1e44-7f9f-5b2c-92c9-870c57b818e5\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer347\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer347\",\r\n \"protectionState\": \"UnplannedFailoverCommitPendingStatesBegin\",\r\n \"protectionStateDescription\": \"Failover completed\",\r\n \"activeLocation\": \"Recovery\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"CompleteMigration\",\r\n \"Commit\",\r\n \"DisableProtection\",\r\n \"ChangePit\",\r\n \"SwitchProtection\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Normal\",\r\n \"healthErrors\": [],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"policyFriendlyName\": \"TestA2APolicy1347\",\r\n \"lastSuccessfulFailoverTime\": \"2021-04-18T07:17:15.6937156Z\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/479fc0a1-d6b9-582b-826c-4399d20819ea/replicationProtectedItems/a2aVM347/recoveryPoints/f0abdd7d-f8d3-4e0f-8477-93f2c6b75e5d\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm347/providers/microsoft.compute/virtualmachines/a2avm347\",\r\n \"initialPrimaryZone\": \"1\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"2\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"e83c436b-6472-41e4-b9b1-bc1d9257520e\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"73139b68-5d30-4ca2-a9b9-505787e77dfa\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm347/providers/microsoft.compute/disks/a2avm347_osdisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347\",\r\n \"recoveryTargetDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Storage/storageAccounts/cache347\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.4072265625,\r\n \"diskState\": \"Protected\",\r\n \"allowedDiskLevelOperation\": [],\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"tfoDiskName\": \"a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM347\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"bdf94f22-52fb-5056-a585-33acc3649ee0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM347\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM347\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByUserOverride\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"inputEndpoints\": []\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T07:16:08.9300927Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg347/providers/microsoft.compute/virtualmachines/a2avm347\",\r\n \"vmProtectionState\": \"UnplannedFailoverCommitPendingStatesBegin\",\r\n \"vmProtectionStateDescription\": \"Failover completed\",\r\n \"lifecycleId\": \"8798a6e2-3912-4d4a-94dc-89c26ded16ad\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 55,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T07:17:29.231964Z\",\r\n \"primaryAvailabilityZone\": \"1\",\r\n \"recoveryAvailabilityZone\": \"2\",\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM347-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"eventCorrelationId\": \"93682614-c91c-47d7-a253-2fe9fd707f98\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblJlY292ZXJ5UGxhbnMvQTJBUlAzNDc/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"primaryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"groups\": [\r\n {\r\n \"groupType\": \"Boot\",\r\n \"replicationProtectedItems\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\"\r\n }\r\n ],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n }\r\n ],\r\n \"providerSpecificInput\": [\r\n {\r\n \"instanceType\": \"A2A\",\r\n \"primaryZone\": \"1\",\r\n \"recoveryZone\": \"2\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9a25b2ea-da4d-451c-ba01-71d3e0c947a6-2020-05-03 00:24:16Z-Ps" + "0824dd2b-038c-4184-9062-4b62cd2c02c8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588461856563)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066656563)\\/\",\"ClientRequestId\":\"9a25b2ea-da4d-451c-ba01-71d3e0c947a6-2020-05-03 00:24:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Sk43h9MaW2ZqxIbS/csHwXEtRv+hzLMMrirXTUoetb8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726611741)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331411741)\\/\",\"ClientRequestId\":\"46af3d48-2887-4807-900b-74ac34a1aac2-2021-04-18 07:16:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Up01g3ROrTMt1joQRe+nz2cnc5c9at1iUI4dISQRUj8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1190" ] }, "ResponseHeaders": { @@ -22323,70 +22863,70 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347/operationresults/ec1de9d7-10a7-4d4b-a572-2fe746cda016?api-version=2021-02-10" ], - "Server": [ - "Microsoft-IIS/10.0", - "Kestrel" + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ec1de9d7-10a7-4d4b-a572-2fe746cda016", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ec1de9d7-10a7-4d4b-a572-2fe746cda016" ], - "X-Powered-By": [ - "ASP.NET" + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationOperationStatus/ec1de9d7-10a7-4d4b-a572-2fe746cda016?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9a25b2ea-da4d-451c-ba01-71d3e0c947a6-2020-05-03 00:24:16Z-Ps" + "0824dd2b-038c-4184-9062-4b62cd2c02c8" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "b1cd9d5f-d0ea-49ee-9e16-73065aff85f9" + "b79e2226-8f1f-4c23-bff4-b35e6f60747e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002416Z:b1cd9d5f-d0ea-49ee-9e16-73065aff85f9" + "CENTRALUSEUAP:20210418T071652Z:b79e2226-8f1f-4c23-bff4-b35e6f60747e" ], "Date": [ - "Sun, 03 May 2020 00:24:16 GMT" - ], - "Content-Length": [ - "6145" - ], - "Content-Type": [ - "application/json" + "Sun, 18 Apr 2021 07:16:52 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ec1de9d7-10a7-4d4b-a572-2fe746cda016?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZWMxZGU5ZDctMTBhNy00ZDRiLWE1NzItMmZlNzQ2Y2RhMDE2P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5951ad0a-2612-4932-aa86-f41f19b32f9b-2020-05-03 00:24:37Z-Ps" + "0824dd2b-038c-4184-9062-4b62cd2c02c8" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588461877001)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066677001)\\/\",\"ClientRequestId\":\"5951ad0a-2612-4932-aa86-f41f19b32f9b-2020-05-03 00:24:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pRerzScqr4ugAYeYy9uIDDeS+uDcXn4SqY9uTzWiHko=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726612659)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331412659)\\/\",\"ClientRequestId\":\"8a412d64-4152-48c8-87b2-4b314390b3d9-2021-04-18 07:16:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GJ72p1U1MYd12OfcxJPBS/ETQzvqtKkqVkZa9WcogXM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22396,39 +22936,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11743" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ec1de9d7-10a7-4d4b-a572-2fe746cda016" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "5951ad0a-2612-4932-aa86-f41f19b32f9b-2020-05-03 00:24:37Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "0824dd2b-038c-4184-9062-4b62cd2c02c8" ], "x-ms-correlation-request-id": [ - "3ebe4805-44b4-40ca-84c1-454afae9f9e8" + "95e7a101-6a28-4b28-a58f-bfd120d15c1a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002437Z:3ebe4805-44b4-40ca-84c1-454afae9f9e8" + "CENTRALUSEUAP:20210418T071652Z:95e7a101-6a28-4b28-a58f-bfd120d15c1a" ], "Date": [ - "Sun, 03 May 2020 00:24:37 GMT" + "Sun, 18 Apr 2021 07:16:52 GMT" ], "Content-Length": [ - "6233" + "1460" ], "Content-Type": [ "application/json" @@ -22437,29 +22974,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ec1de9d7-10a7-4d4b-a572-2fe746cda016\",\r\n \"name\": \"ec1de9d7-10a7-4d4b-a572-2fe746cda016\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"0824dd2b-038c-4184-9062-4b62cd2c02c8 ActivityId: b79e2226-8f1f-4c23-bff4-b35e6f60747e\",\r\n \"scenarioName\": \"SaveRecoveryPlan\",\r\n \"friendlyName\": \"Save a recovery plan\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"ccd918d6-397a-47ea-b522-d5e0ee842dc9\",\r\n \"name\": \"SaveRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Save a recovery plan task\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:16:52.330071Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"dea8bdf4-66e2-4cf8-bcea-3deec175edb2\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ec1de9d7-10a7-4d4b-a572-2fe746cda016?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZWMxZGU5ZDctMTBhNy00ZDRiLWE1NzItMmZlNzQ2Y2RhMDE2P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3e29df5-d103-4180-b7ce-4cba90f7b275-2020-05-03 00:24:57Z-Ps" + "578c9766-ff86-463d-a3fe-e703f017fe54" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588461897468)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066697468)\\/\",\"ClientRequestId\":\"b3e29df5-d103-4180-b7ce-4cba90f7b275-2020-05-03 00:24:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wIlah047U4BuGY26aBcUGtYGXVvRv3O/ze9wlkHyh80=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726612992)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331412992)\\/\",\"ClientRequestId\":\"5174eca2-468f-40fc-8526-2f1faf205bb6-2021-04-18 07:16:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ukc9v3/EIYdUMJ6XjQLDn2GQizciIQtNrRLjVqfkdmI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22470,38 +23007,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11742" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ec1de9d7-10a7-4d4b-a572-2fe746cda016" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b3e29df5-d103-4180-b7ce-4cba90f7b275-2020-05-03 00:24:57Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "578c9766-ff86-463d-a3fe-e703f017fe54" ], "x-ms-correlation-request-id": [ - "75ab60f0-0010-4a2c-a8d1-9b72baa40eb5" + "cb507455-bc9e-432f-a016-68015f4fbe24" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002457Z:75ab60f0-0010-4a2c-a8d1-9b72baa40eb5" + "CENTRALUSEUAP:20210418T071653Z:cb507455-bc9e-432f-a016-68015f4fbe24" ], "Date": [ - "Sun, 03 May 2020 00:24:57 GMT" + "Sun, 18 Apr 2021 07:16:52 GMT" ], "Content-Length": [ - "6233" + "1460" ], "Content-Type": [ "application/json" @@ -22510,29 +23044,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ec1de9d7-10a7-4d4b-a572-2fe746cda016\",\r\n \"name\": \"ec1de9d7-10a7-4d4b-a572-2fe746cda016\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"0824dd2b-038c-4184-9062-4b62cd2c02c8 ActivityId: b79e2226-8f1f-4c23-bff4-b35e6f60747e\",\r\n \"scenarioName\": \"SaveRecoveryPlan\",\r\n \"friendlyName\": \"Save a recovery plan\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"ccd918d6-397a-47ea-b522-d5e0ee842dc9\",\r\n \"name\": \"SaveRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Save a recovery plan task\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:16:52.330071Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"dea8bdf4-66e2-4cf8-bcea-3deec175edb2\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ec1de9d7-10a7-4d4b-a572-2fe746cda016?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZWMxZGU5ZDctMTBhNy00ZDRiLWE1NzItMmZlNzQ2Y2RhMDE2P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cbe74ab4-d6ae-41d6-9a1e-4c98b706c957-2020-05-03 00:25:18Z-Ps" + "f856b6b3-356a-489d-9df4-749de9e6e299" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588461918154)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066718154)\\/\",\"ClientRequestId\":\"cbe74ab4-d6ae-41d6-9a1e-4c98b706c957-2020-05-03 00:25:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"g3LUhU67oKgJFR0/j1Qe0Swal6HoSOo1z23yNo130zg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726633319)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331433319)\\/\",\"ClientRequestId\":\"f806d3f8-0075-47f8-9c2e-ba81f5662858-2021-04-18 07:17:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"w8CwZhZZQQXlI2sB0VJptdYRjpFckdppVtQmJIFFBb4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22543,38 +23077,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11741" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ec1de9d7-10a7-4d4b-a572-2fe746cda016" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "cbe74ab4-d6ae-41d6-9a1e-4c98b706c957-2020-05-03 00:25:18Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f856b6b3-356a-489d-9df4-749de9e6e299" ], "x-ms-correlation-request-id": [ - "d22cb584-8a4a-4bf1-9554-e71efe7a1f71" + "68c98c15-7702-4c2d-a7e8-934de20e47c7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002518Z:d22cb584-8a4a-4bf1-9554-e71efe7a1f71" + "CENTRALUSEUAP:20210418T071713Z:68c98c15-7702-4c2d-a7e8-934de20e47c7" ], "Date": [ - "Sun, 03 May 2020 00:25:17 GMT" + "Sun, 18 Apr 2021 07:17:12 GMT" ], "Content-Length": [ - "6233" + "1499" ], "Content-Type": [ "application/json" @@ -22583,29 +23114,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/ec1de9d7-10a7-4d4b-a572-2fe746cda016\",\r\n \"name\": \"ec1de9d7-10a7-4d4b-a572-2fe746cda016\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"0824dd2b-038c-4184-9062-4b62cd2c02c8 ActivityId: b79e2226-8f1f-4c23-bff4-b35e6f60747e\",\r\n \"scenarioName\": \"SaveRecoveryPlan\",\r\n \"friendlyName\": \"Save a recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"ccd918d6-397a-47ea-b522-d5e0ee842dc9\",\r\n \"name\": \"SaveRecoveryPlanTask\",\r\n \"startTime\": \"2021-04-18T07:16:52.7870615Z\",\r\n \"endTime\": \"2021-04-18T07:16:53.1970696Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Save a recovery plan task\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:16:52.330071Z\",\r\n \"endTime\": \"2021-04-18T07:16:52Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"dea8bdf4-66e2-4cf8-bcea-3deec175edb2\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblJlY292ZXJ5UGxhbnMvQTJBUlAzNDc/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2670dad-dda7-40f6-9d75-3d56fe596aab-2020-05-03 00:25:38Z-Ps" + "1f0c3c63-5fac-468c-b8a3-5baaeca21b61" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588461938668)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066738668)\\/\",\"ClientRequestId\":\"f2670dad-dda7-40f6-9d75-3d56fe596aab-2020-05-03 00:25:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PrJj6BvUNJq2mf/1Zuf2V5iOmyKefnh37xhUHhQRMtw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726633627)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331433627)\\/\",\"ClientRequestId\":\"92f7929f-9e08-49fa-b8b2-bac2e6c1bd6f-2021-04-18 07:17:13Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5mcZGuGXOOQL2gMLDjTww9ZnFQY9Y9Vo3xFbMYZV244=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22615,39 +23146,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11740" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "1f0c3c63-5fac-468c-b8a3-5baaeca21b61 4/18/2021 7:17:13 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f2670dad-dda7-40f6-9d75-3d56fe596aab-2020-05-03 00:25:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "1f0c3c63-5fac-468c-b8a3-5baaeca21b61" ], "x-ms-correlation-request-id": [ - "5dff4d4f-459b-4301-999b-35ac437c876e" + "ae44571a-f2eb-4673-a0b9-6c1d9e331ed1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002538Z:5dff4d4f-459b-4301-999b-35ac437c876e" + "CENTRALUSEUAP:20210418T071713Z:ae44571a-f2eb-4673-a0b9-6c1d9e331ed1" ], "Date": [ - "Sun, 03 May 2020 00:25:38 GMT" + "Sun, 18 Apr 2021 07:17:12 GMT" ], "Content-Length": [ - "6233" + "1799" ], "Content-Type": [ "application/json" @@ -22656,29 +23184,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347\",\r\n \"name\": \"A2ARP347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans\",\r\n \"properties\": {\r\n \"friendlyName\": \"A2ARP347\",\r\n \"primaryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"replicationProviders\": [\r\n \"A2A\"\r\n ],\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"TestFailover\"\r\n ],\r\n \"currentScenario\": null,\r\n \"currentScenarioStatus\": null,\r\n \"currentScenarioStatusDescription\": null,\r\n \"groups\": [\r\n {\r\n \"groupType\": \"Shutdown\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Failover\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Boot\",\r\n \"replicationProtectedItems\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\",\r\n \"virtualMachineId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\"\r\n }\r\n ],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n }\r\n ],\r\n \"providerSpecificDetails\": [\r\n {\r\n \"instanceType\": \"A2A\",\r\n \"primaryZone\": \"1\",\r\n \"recoveryZone\": \"2\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblJlY292ZXJ5UGxhbnMvQTJBUlAzNDc/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a96277c-4885-487b-bea1-3198b6117770-2020-05-03 00:25:59Z-Ps" + "55338ea8-8331-4648-8533-0daf241b3e68" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588461959061)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066759061)\\/\",\"ClientRequestId\":\"1a96277c-4885-487b-bea1-3198b6117770-2020-05-03 00:25:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wKhmNxV4uh9QY+jq8IWS7V3UIDq4MM6fRF8/lbyJZNk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726634500)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331434500)\\/\",\"ClientRequestId\":\"b1c6f1d7-0dd6-4546-b8a6-d2e9935ca676-2021-04-18 07:17:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"p3fKf4H5pHitljnY/aTo3j9imvew+SrxPRw/0ZpHxLw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22689,38 +23217,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11738" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "55338ea8-8331-4648-8533-0daf241b3e68 4/18/2021 7:17:14 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1a96277c-4885-487b-bea1-3198b6117770-2020-05-03 00:25:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "55338ea8-8331-4648-8533-0daf241b3e68" ], "x-ms-correlation-request-id": [ - "cdd2a8e6-71b3-4079-8a20-95bd55095cb1" + "edd15a79-095a-4759-8b0e-f31872b1a2c3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002559Z:cdd2a8e6-71b3-4079-8a20-95bd55095cb1" + "CENTRALUSEUAP:20210418T071714Z:edd15a79-095a-4759-8b0e-f31872b1a2c3" ], "Date": [ - "Sun, 03 May 2020 00:25:58 GMT" + "Sun, 18 Apr 2021 07:17:14 GMT" ], "Content-Length": [ - "6233" + "1799" ], "Content-Type": [ "application/json" @@ -22729,29 +23254,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347\",\r\n \"name\": \"A2ARP347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans\",\r\n \"properties\": {\r\n \"friendlyName\": \"A2ARP347\",\r\n \"primaryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"replicationProviders\": [\r\n \"A2A\"\r\n ],\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"TestFailover\"\r\n ],\r\n \"currentScenario\": null,\r\n \"currentScenarioStatus\": null,\r\n \"currentScenarioStatusDescription\": null,\r\n \"groups\": [\r\n {\r\n \"groupType\": \"Shutdown\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Failover\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Boot\",\r\n \"replicationProtectedItems\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\",\r\n \"virtualMachineId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\"\r\n }\r\n ],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n }\r\n ],\r\n \"providerSpecificDetails\": [\r\n {\r\n \"instanceType\": \"A2A\",\r\n \"primaryZone\": \"1\",\r\n \"recoveryZone\": \"2\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblJlY292ZXJ5UGxhbnMvQTJBUlAzNDc/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed2446e7-b230-4a69-b362-3db75f1d4447-2020-05-03 00:26:19Z-Ps" + "af4226a3-05b7-4d2c-a6bc-b5353c3ee83a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588461979949)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066779949)\\/\",\"ClientRequestId\":\"ed2446e7-b230-4a69-b362-3db75f1d4447-2020-05-03 00:26:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cL/ZhgA2hpR6AbpoaQBhDNTI7B70S0SbPtXPCh8h/cQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726862515)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331662515)\\/\",\"ClientRequestId\":\"1cf0d109-6c35-4ba9-a848-5524523b0b88-2021-04-18 07:21:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OLNe2/V7FlttHQE/FtDwjRsxjz9dG8iDCLP0A7H3mhk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22762,38 +23287,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11723" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "af4226a3-05b7-4d2c-a6bc-b5353c3ee83a 4/18/2021 7:21:02 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ed2446e7-b230-4a69-b362-3db75f1d4447-2020-05-03 00:26:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "af4226a3-05b7-4d2c-a6bc-b5353c3ee83a" ], "x-ms-correlation-request-id": [ - "b87890dd-be54-4dea-ada5-aad3917af9d7" + "ba0a448f-a958-460b-8426-62a75d0e9e1b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002620Z:b87890dd-be54-4dea-ada5-aad3917af9d7" + "CENTRALUSEUAP:20210418T072102Z:ba0a448f-a958-460b-8426-62a75d0e9e1b" ], "Date": [ - "Sun, 03 May 2020 00:26:20 GMT" + "Sun, 18 Apr 2021 07:21:02 GMT" ], "Content-Length": [ - "6233" + "2174" ], "Content-Type": [ "application/json" @@ -22802,29 +23324,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347\",\r\n \"name\": \"A2ARP347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans\",\r\n \"properties\": {\r\n \"friendlyName\": \"A2ARP347\",\r\n \"primaryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"failoverDeploymentModel\": \"ResourceManager\",\r\n \"replicationProviders\": [\r\n \"A2A\"\r\n ],\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"TestFailover\",\r\n \"Commit\"\r\n ],\r\n \"lastUnplannedFailoverTime\": \"2021-04-18T07:17:16.4062773Z\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"startTime\": \"2021-04-18T07:17:32.1868527Z\"\r\n },\r\n \"currentScenarioStatus\": \"Succeeded\",\r\n \"currentScenarioStatusDescription\": \"Completed\",\r\n \"groups\": [\r\n {\r\n \"groupType\": \"Shutdown\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Failover\",\r\n \"replicationProtectedItems\": [],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n },\r\n {\r\n \"groupType\": \"Boot\",\r\n \"replicationProtectedItems\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\",\r\n \"virtualMachineId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\"\r\n }\r\n ],\r\n \"startGroupActions\": [],\r\n \"endGroupActions\": []\r\n }\r\n ],\r\n \"providerSpecificDetails\": [\r\n {\r\n \"instanceType\": \"A2A\",\r\n \"primaryZone\": \"1\",\r\n \"recoveryZone\": \"2\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationProtectedItems?$filter=RecoveryPlanName%20eq%20'A2ARP347'&api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblByb3RlY3RlZEl0ZW1zPyRmaWx0ZXI9UmVjb3ZlcnlQbGFuTmFtZSUyMGVxJTIwJ0EyQVJQMzQ3JyZhcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "950bd0e3-76c6-4d89-9977-2b93bc270658-2020-05-03 00:26:40Z-Ps" + "1f0c3c63-5fac-468c-b8a3-5baaeca21b61" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462000380)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066800380)\\/\",\"ClientRequestId\":\"950bd0e3-76c6-4d89-9977-2b93bc270658-2020-05-03 00:26:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UP2w7r2HlnGDCcnDxOx7kukUQyRsdMB2eD+8i1sivFs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726634068)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331434068)\\/\",\"ClientRequestId\":\"23902a90-5de8-429f-8038-e349a6ad459b-2021-04-18 07:17:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CBmj4TwqpQXiv8VZ2NUaa8GOEbY45OPN2u4p0iiHAzY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22835,38 +23357,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11739" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "1f0c3c63-5fac-468c-b8a3-5baaeca21b61 4/18/2021 7:17:14 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "950bd0e3-76c6-4d89-9977-2b93bc270658-2020-05-03 00:26:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "1f0c3c63-5fac-468c-b8a3-5baaeca21b61" ], "x-ms-correlation-request-id": [ - "10fae80f-8277-4546-9f48-87ccc766cbb4" + "d107aa1d-6480-418f-ab0f-a7ed0753e0b8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002640Z:10fae80f-8277-4546-9f48-87ccc766cbb4" + "CENTRALUSEUAP:20210418T071714Z:d107aa1d-6480-418f-ab0f-a7ed0753e0b8" ], "Date": [ - "Sun, 03 May 2020 00:26:39 GMT" + "Sun, 18 Apr 2021 07:17:14 GMT" ], "Content-Length": [ - "6233" + "8145" ], "Content-Type": [ "application/json" @@ -22875,29 +23394,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\",\r\n \"name\": \"a2aVM347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM347\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationRecoveryServicesProviders/995d1e44-7f9f-5b2c-92c9-870c57b818e5\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer347\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer347\",\r\n \"protectionState\": \"Protected\",\r\n \"protectionStateDescription\": \"Protected\",\r\n \"activeLocation\": \"Primary\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"UnplannedFailover\",\r\n \"DisableProtection\",\r\n \"TestFailover\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Warning\",\r\n \"healthErrors\": [\r\n {\r\n \"innerHealthErrors\": [],\r\n \"errorSource\": \"ReplicationUnitFailoverValidatorError\",\r\n \"errorType\": \"8010\",\r\n \"errorLevel\": \"Warning\",\r\n \"errorCategory\": \"TestFailover\",\r\n \"errorCode\": \"161011\",\r\n \"summaryMessage\": \"\",\r\n \"errorMessage\": \"No successful test failover has been done on the virtual machine 'a2aVM347'.\",\r\n \"possibleCauses\": \"No successful test failover has been done on the virtual machine after it was replicated.\",\r\n \"recommendedAction\": \"Do a test failover on the virtual machine.\",\r\n \"creationTimeUtc\": \"2021-04-18T07:16:48.9303133Z\",\r\n \"recoveryProviderErrorMessage\": null,\r\n \"entityId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"errorId\": \"6:8010\",\r\n \"customerResolvability\": \"NotAllowed\"\r\n }\r\n ],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"policyFriendlyName\": \"TestA2APolicy1347\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": null,\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm347/providers/microsoft.compute/virtualmachines/a2avm347\",\r\n \"initialPrimaryZone\": \"1\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"2\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"e83c436b-6472-41e4-b9b1-bc1d9257520e\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"73139b68-5d30-4ca2-a9b9-505787e77dfa\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm347/providers/microsoft.compute/disks/a2avm347_osdisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347\",\r\n \"recoveryTargetDiskId\": null,\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Storage/storageAccounts/cache347\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.0,\r\n \"diskState\": null,\r\n \"allowedDiskLevelOperation\": null,\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"tfoDiskName\": \"a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM347\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"bdf94f22-52fb-5056-a585-33acc3649ee0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM347\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM347\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByUserOverride\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": null\r\n },\r\n \"monitoringPercentageCompletion\": 87,\r\n \"monitoringJobType\": \"InitialReplication\",\r\n \"lastHeartbeat\": \"2021-04-18T07:16:08.9300927Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"agentCertificateExpiryDate\": \"2024-04-17T06:28:10Z\",\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": null,\r\n \"vmProtectionState\": \"Protected\",\r\n \"vmProtectionStateDescription\": \"Protected\",\r\n \"lifecycleId\": \"8798a6e2-3912-4d4a-94dc-89c26ded16ad\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 2106,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T07:16:40.5509965Z\",\r\n \"primaryAvailabilityZone\": \"1\",\r\n \"recoveryAvailabilityZone\": \"2\",\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM347-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"eventCorrelationId\": \"93682614-c91c-47d7-a253-2fe9fd707f98\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationProtectedItems?$filter=RecoveryPlanName%20eq%20'A2ARP347'&api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblByb3RlY3RlZEl0ZW1zPyRmaWx0ZXI9UmVjb3ZlcnlQbGFuTmFtZSUyMGVxJTIwJ0EyQVJQMzQ3JyZhcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a106762-abd9-4326-bec7-2bfca66f648a-2020-05-03 00:27:00Z-Ps" + "af4226a3-05b7-4d2c-a6bc-b5353c3ee83a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462020831)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066820831)\\/\",\"ClientRequestId\":\"7a106762-abd9-4326-bec7-2bfca66f648a-2020-05-03 00:27:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"h7EhRRkpldJ67Y4FrneSAnME1MOsoQ1Y59qM8tbPSS8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726862944)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331662944)\\/\",\"ClientRequestId\":\"b183dba7-393e-40ae-90d2-1e6c4fa5db8c-2021-04-18 07:21:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tw6rxoYPuVWrb9rjnLEttzYPHLZvBFDQAKY3G/CQWnU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -22907,39 +23426,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11722" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "af4226a3-05b7-4d2c-a6bc-b5353c3ee83a 4/18/2021 7:21:03 AM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7a106762-abd9-4326-bec7-2bfca66f648a-2020-05-03 00:27:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "af4226a3-05b7-4d2c-a6bc-b5353c3ee83a" ], "x-ms-correlation-request-id": [ - "b459cd43-88d2-48e3-ab5f-7dcb5fa1ddcc" + "8146f221-2cea-41ae-8747-47da444941a0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002701Z:b459cd43-88d2-48e3-ab5f-7dcb5fa1ddcc" + "CENTRALUSEUAP:20210418T072103Z:8146f221-2cea-41ae-8747-47da444941a0" ], "Date": [ - "Sun, 03 May 2020 00:27:00 GMT" + "Sun, 18 Apr 2021 07:21:02 GMT" ], "Content-Length": [ - "6233" + "8223" ], "Content-Type": [ "application/json" @@ -22948,29 +23464,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2APrimaryContainer347/replicationProtectedItems/a2aVM347\",\r\n \"name\": \"a2aVM347\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems\",\r\n \"properties\": {\r\n \"friendlyName\": \"a2aVM347\",\r\n \"protectedItemType\": \"\",\r\n \"protectableItemId\": null,\r\n \"recoveryServicesProviderId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationRecoveryServicesProviders/995d1e44-7f9f-5b2c-92c9-870c57b818e5\",\r\n \"primaryFabricFriendlyName\": \"East US\",\r\n \"primaryFabricProvider\": \"AzureFabric\",\r\n \"recoveryFabricFriendlyName\": \"East US\",\r\n \"recoveryFabricId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347\",\r\n \"primaryProtectionContainerFriendlyName\": \"A2APrimaryContainer347\",\r\n \"recoveryProtectionContainerFriendlyName\": \"A2ARecoveryContainer347\",\r\n \"protectionState\": \"UnplannedFailoverCommitPendingStatesBegin\",\r\n \"protectionStateDescription\": \"Failover completed\",\r\n \"activeLocation\": \"Recovery\",\r\n \"testFailoverState\": \"None\",\r\n \"testFailoverStateDescription\": \"None\",\r\n \"allowedOperations\": [\r\n \"CompleteMigration\",\r\n \"Commit\",\r\n \"DisableProtection\",\r\n \"ChangePit\",\r\n \"SwitchProtection\"\r\n ],\r\n \"replicationHealth\": \"Normal\",\r\n \"failoverHealth\": \"Normal\",\r\n \"healthErrors\": [],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationPolicies/TestA2APolicy1347\",\r\n \"policyFriendlyName\": \"TestA2APolicy1347\",\r\n \"lastSuccessfulFailoverTime\": \"2021-04-18T07:17:15.6937156Z\",\r\n \"currentScenario\": {\r\n \"scenarioName\": \"None\",\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/None\",\r\n \"startTime\": \"1753-01-01T01:01:01Z\"\r\n },\r\n \"failoverRecoveryPointId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/479fc0a1-d6b9-582b-826c-4399d20819ea/replicationProtectedItems/a2aVM347/recoveryPoints/f0abdd7d-f8d3-4e0f-8477-93f2c6b75e5d\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm347/providers/microsoft.compute/virtualmachines/a2avm347\",\r\n \"initialPrimaryZone\": \"1\",\r\n \"initialPrimaryFabricLocation\": \"eastus\",\r\n \"initialRecoveryZone\": \"2\",\r\n \"initialRecoveryFabricLocation\": \"eastus\",\r\n \"multiVmGroupId\": \"e83c436b-6472-41e4-b9b1-bc1d9257520e\",\r\n \"multiVmGroupName\": \"\",\r\n \"multiVmGroupCreateOption\": \"AutoCreated\",\r\n \"managementId\": \"73139b68-5d30-4ca2-a9b9-505787e77dfa\",\r\n \"protectedDisks\": null,\r\n \"unprotectedDisks\": null,\r\n \"protectedManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm347/providers/microsoft.compute/disks/a2avm347_osdisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347\",\r\n \"recoveryTargetDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"recoveryReplicaDiskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2-ASRReplica\",\r\n \"recoveryOrignalTargetDiskId\": null,\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": null,\r\n \"primaryDiskEncryptionSetId\": null,\r\n \"diskName\": \"a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"diskCapacityInBytes\": 34359738368,\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Storage/storageAccounts/cache347\",\r\n \"diskType\": \"OperatingSystem\",\r\n \"resyncRequired\": false,\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"dataPendingInStagingStorageAccountInMB\": 0.0,\r\n \"dataPendingAtSourceAgentInMB\": 0.0,\r\n \"diskState\": null,\r\n \"allowedDiskLevelOperation\": null,\r\n \"isDiskEncrypted\": false,\r\n \"secretIdentifier\": null,\r\n \"dekKeyVaultArmId\": null,\r\n \"isDiskKeyEncrypted\": false,\r\n \"keyIdentifier\": null,\r\n \"kekKeyVaultArmId\": null,\r\n \"failoverDiskName\": \"a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"tfoDiskName\": \"a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2-ASRtest\"\r\n }\r\n ],\r\n \"recoveryBootDiagStorageAccountId\": null,\r\n \"primaryFabricLocation\": \"eastus\",\r\n \"recoveryFabricLocation\": \"eastus\",\r\n \"osType\": \"Linux\",\r\n \"recoveryAzureVMSize\": \"Standard_D2s_v3\",\r\n \"recoveryAzureVMName\": \"a2aVM347\",\r\n \"recoveryAzureResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347\",\r\n \"recoveryCloudService\": null,\r\n \"recoveryAvailabilitySet\": null,\r\n \"selectedRecoveryAzureNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"selectedTfoAzureNetworkId\": null,\r\n \"vmNics\": [\r\n {\r\n \"nicId\": \"bdf94f22-52fb-5056-a585-33acc3649ee0\",\r\n \"replicaNicId\": null,\r\n \"sourceNicArmId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/networkInterfaces/a2aVM347\",\r\n \"vMNetworkName\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM347/providers/Microsoft.Network/virtualNetworks/a2aVM347\",\r\n \"recoveryVMNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork347\",\r\n \"ipConfigs\": [\r\n {\r\n \"name\": \"a2aVM347\",\r\n \"isPrimary\": true,\r\n \"subnetName\": \"a2aVM347\",\r\n \"staticIPAddress\": \"192.168.1.4\",\r\n \"ipAddressType\": \"Dynamic\",\r\n \"isSeletedForFailover\": true,\r\n \"recoverySubnetName\": \"frontendSubnet\",\r\n \"recoveryStaticIPAddress\": \"\",\r\n \"recoveryIPAddressType\": \"Dynamic\",\r\n \"recoveryPublicIPAddressId\": null,\r\n \"recoveryLBBackendAddressPoolIds\": null,\r\n \"tfoSubnetName\": null,\r\n \"tfoStaticIPAddress\": null,\r\n \"tfoPublicIPAddressId\": null,\r\n \"tfoLBBackendAddressPoolIds\": null\r\n }\r\n ],\r\n \"selectionType\": \"SelectedByUserOverride\",\r\n \"recoveryNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnRecovery\": false,\r\n \"tfoVMNetworkId\": null,\r\n \"tfoNetworkSecurityGroupId\": null,\r\n \"enableAcceleratedNetworkingOnTfo\": null,\r\n \"recoveryNicName\": null,\r\n \"recoveryNicResourceGroupName\": null,\r\n \"reuseExistingNic\": false,\r\n \"tfoRecoveryNicName\": null,\r\n \"tfoRecoveryNicResourceGroupName\": null,\r\n \"tfoReuseExistingNic\": false\r\n }\r\n ],\r\n \"vmSyncedConfigDetails\": {\r\n \"tags\": null,\r\n \"inputEndpoints\": null\r\n },\r\n \"monitoringPercentageCompletion\": null,\r\n \"monitoringJobType\": null,\r\n \"lastHeartbeat\": \"2021-04-18T07:16:08.9300927Z\",\r\n \"agentVersion\": \"9.41.5888.1\",\r\n \"agentExpiryDate\": \"9999-12-31T23:59:59.9999999\",\r\n \"isReplicationAgentUpdateRequired\": false,\r\n \"isReplicationAgentCertificateUpdateRequired\": false,\r\n \"recoveryFabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg347/providers/microsoft.compute/virtualmachines/a2avm347\",\r\n \"vmProtectionState\": \"UnplannedFailoverCommitPendingStatesBegin\",\r\n \"vmProtectionStateDescription\": \"Failover completed\",\r\n \"lifecycleId\": \"8798a6e2-3912-4d4a-94dc-89c26ded16ad\",\r\n \"testFailoverRecoveryFabricObjectId\": null,\r\n \"rpoInSeconds\": 55,\r\n \"lastRpoCalculatedTime\": \"2021-04-18T07:17:29.231964Z\",\r\n \"primaryAvailabilityZone\": \"1\",\r\n \"recoveryAvailabilityZone\": \"2\",\r\n \"vmEncryptionType\": \"NotEncrypted\",\r\n \"tfoAzureVMName\": \"a2aVM347-test\",\r\n \"recoveryAzureGeneration\": \"V1\",\r\n \"recoveryProximityPlacementGroupId\": null,\r\n \"autoProtectionOfDataDisk\": \"Disabled\",\r\n \"recoveryVirtualMachineScaleSetId\": null\r\n },\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationFabrics/a2aPrimaryFabric347/replicationProtectionContainers/A2ARecoveryContainer347\",\r\n \"eventCorrelationId\": \"93682614-c91c-47d7-a253-2fe9fd707f98\"\r\n }\r\n }\r\n ],\r\n \"nextLink\": null\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347/unplannedFailover?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvblJlY292ZXJ5UGxhbnMvQTJBUlAzNDcvdW5wbGFubmVkRmFpbG92ZXI/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"failoverDirection\": \"PrimaryToRecovery\",\r\n \"sourceSiteOperations\": \"Required\",\r\n \"providerSpecificDetails\": [\r\n {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointType\": \"Latest\"\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7fb99823-96b9-4e8e-95ac-892146af0bca-2020-05-03 00:27:21Z-Ps" + "55338ea8-8331-4648-8533-0daf241b3e68" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462041217)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066841217)\\/\",\"ClientRequestId\":\"7fb99823-96b9-4e8e-95ac-892146af0bca-2020-05-03 00:27:21Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1PwObX5FFEGXscPQOfsH9RH8GBHUPQVVWjPIN9k8cAU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726634866)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331434866)\\/\",\"ClientRequestId\":\"7b729481-e3eb-4059-89e4-be8d67be7d61-2021-04-18 07:17:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bjK6o+pdxuvZrZNJG7bIS0g0D7JLxeCruZmLZA1fFUk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "246" ] }, "ResponseHeaders": { @@ -22980,70 +23502,70 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "Location": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationRecoveryPlans/A2ARP347/operationresults/fba349f7-ee17-49b8-bc60-478446765a4a?api-version=2021-02-10" ], - "Server": [ - "Microsoft-IIS/10.0", - "Kestrel" + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/fba349f7-ee17-49b8-bc60-478446765a4a", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/fba349f7-ee17-49b8-bc60-478446765a4a" ], - "X-Powered-By": [ - "ASP.NET" + "Azure-AsyncOperation": [ + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationOperationStatus/fba349f7-ee17-49b8-bc60-478446765a4a?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7fb99823-96b9-4e8e-95ac-892146af0bca-2020-05-03 00:27:21Z-Ps" + "55338ea8-8331-4648-8533-0daf241b3e68" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "e76c3151-ca73-4983-a339-879766ab7c30" + "34b751c8-db34-4644-83c0-f5e62b8a40aa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002721Z:e76c3151-ca73-4983-a339-879766ab7c30" + "CENTRALUSEUAP:20210418T071715Z:34b751c8-db34-4644-83c0-f5e62b8a40aa" ], "Date": [ - "Sun, 03 May 2020 00:27:21 GMT" - ], - "Content-Length": [ - "6233" - ], - "Content-Type": [ - "application/json" + "Sun, 18 Apr 2021 07:17:15 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/fba349f7-ee17-49b8-bc60-478446765a4a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZmJhMzQ5ZjctZWUxNy00OWI4LWJjNjAtNDc4NDQ2NzY1YTRhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "558a30b3-6a1a-4c0a-9527-8114814fe728-2020-05-03 00:27:41Z-Ps" + "55338ea8-8331-4648-8533-0daf241b3e68" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462061687)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066861687)\\/\",\"ClientRequestId\":\"558a30b3-6a1a-4c0a-9527-8114814fe728-2020-05-03 00:27:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DOLYW33eXhmu8no8ZJRBkJih1JJ20IxhUdiFa5C8/BY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726635494)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331435494)\\/\",\"ClientRequestId\":\"9726ca54-8e9e-4f9e-856b-4535da414643-2021-04-18 07:17:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CtFe2p01KycoCU+X3hJ10mpcF9U+9fWdpK+e44kLNVY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23054,38 +23576,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11737" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/fba349f7-ee17-49b8-bc60-478446765a4a" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "558a30b3-6a1a-4c0a-9527-8114814fe728-2020-05-03 00:27:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "55338ea8-8331-4648-8533-0daf241b3e68" ], "x-ms-correlation-request-id": [ - "7e249690-5d99-4a36-8d1d-c4343ab626c2" + "12ec6df4-568a-4b0f-9357-52b92e4e37fc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002741Z:7e249690-5d99-4a36-8d1d-c4343ab626c2" + "CENTRALUSEUAP:20210418T071715Z:12ec6df4-568a-4b0f-9357-52b92e4e37fc" ], "Date": [ - "Sun, 03 May 2020 00:27:41 GMT" + "Sun, 18 Apr 2021 07:17:15 GMT" ], "Content-Length": [ - "6233" + "1098" ], "Content-Type": [ "application/json" @@ -23094,29 +23613,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/fba349f7-ee17-49b8-bc60-478446765a4a\",\r\n \"name\": \"fba349f7-ee17-49b8-bc60-478446765a4a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"55338ea8-8331-4648-8533-0daf241b3e68 ActivityId: 34b751c8-db34-4644-83c0-f5e62b8a40aa\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:17:15.2218275Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"dea8bdf4-66e2-4cf8-bcea-3deec175edb2\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/fba349f7-ee17-49b8-bc60-478446765a4a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZmJhMzQ5ZjctZWUxNy00OWI4LWJjNjAtNDc4NDQ2NzY1YTRhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "062df885-f8df-4918-94bb-cc4abfc3a96f-2020-05-03 00:28:02Z-Ps" + "8c972059-e05c-428b-89ed-6459716109d3" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462082086)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066882086)\\/\",\"ClientRequestId\":\"062df885-f8df-4918-94bb-cc4abfc3a96f-2020-05-03 00:28:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"CM7mUP/+YZ+leG5pZWRKPZgsgk+2Mi0Jd5vp/MYycQs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726635828)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331435828)\\/\",\"ClientRequestId\":\"91f02358-2f2d-4fcc-873d-af8527cfa33f-2021-04-18 07:17:15Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ye/PoJU7kLPOqqEWZ02UvF8BgE+F0XwmM0oIK9aL+TU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23126,39 +23645,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11736" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "062df885-f8df-4918-94bb-cc4abfc3a96f-2020-05-03 00:28:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "8c972059-e05c-428b-89ed-6459716109d3" ], "x-ms-correlation-request-id": [ - "725878b6-67f3-4693-9a3a-bf17b2c74811" + "dbd67961-1ee6-4cad-a8d1-8b81408be3a2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002802Z:725878b6-67f3-4693-9a3a-bf17b2c74811" + "CENTRALUSEUAP:20210418T071715Z:dbd67961-1ee6-4cad-a8d1-8b81408be3a2" ], "Date": [ - "Sun, 03 May 2020 00:28:01 GMT" + "Sun, 18 Apr 2021 07:17:15 GMT" ], "Content-Length": [ - "6233" + "6107" ], "Content-Type": [ "application/json" @@ -23167,29 +23683,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"name\": \"6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"55338ea8-8331-4648-8533-0daf241b3e68 ActivityId: 34b751c8-db34-4644-83c0-f5e62b8a40aa\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"9a76f79e-1f3f-4321-b3e5-27469621a398\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"f4e903e4-94ff-4df8-b37b-3c510b5a0b48\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"2f3e3730-abe6-4b95-b248-a3faa8bf3a50\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"abcedba5-2598-4400-941b-9ac0ae8d6a4f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"a41b6a2e-6a7a-4c63-92f3-a0929667416b\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:17:15.6937156Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"dea8bdf4-66e2-4cf8-bcea-3deec175edb2\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/fba349f7-ee17-49b8-bc60-478446765a4a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZmJhMzQ5ZjctZWUxNy00OWI4LWJjNjAtNDc4NDQ2NzY1YTRhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfca2bf8-85e6-4ec7-8f55-6ab3cc032a63-2020-05-03 00:28:22Z-Ps" + "ad48ee76-078e-469a-b5b3-77054308a86d" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462102499)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066902499)\\/\",\"ClientRequestId\":\"cfca2bf8-85e6-4ec7-8f55-6ab3cc032a63-2020-05-03 00:28:22Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RyfXcrGu/VLNzlgfotpLwUjoKnZbzu9imp/a9iLNvr8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726656202)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331456202)\\/\",\"ClientRequestId\":\"38e35ecf-60a9-479b-a65e-1c80482013a1-2021-04-18 07:17:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WkyK1BuFyUjs7kh74HhsjlpRWOXiWsv4tw8wzZph0iw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23200,38 +23716,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11735" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "cfca2bf8-85e6-4ec7-8f55-6ab3cc032a63-2020-05-03 00:28:22Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ad48ee76-078e-469a-b5b3-77054308a86d" ], "x-ms-correlation-request-id": [ - "246ead6e-d4e2-4f4b-bbc8-81f397797814" + "bfc32abc-8310-4ad4-ac49-29f1d3ed22bf" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002823Z:246ead6e-d4e2-4f4b-bbc8-81f397797814" + "CENTRALUSEUAP:20210418T071736Z:bfc32abc-8310-4ad4-ac49-29f1d3ed22bf" ], "Date": [ - "Sun, 03 May 2020 00:28:22 GMT" + "Sun, 18 Apr 2021 07:17:35 GMT" ], "Content-Length": [ - "6233" + "6197" ], "Content-Type": [ "application/json" @@ -23240,29 +23753,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"name\": \"6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"55338ea8-8331-4648-8533-0daf241b3e68 ActivityId: 34b751c8-db34-4644-83c0-f5e62b8a40aa\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"9a76f79e-1f3f-4321-b3e5-27469621a398\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T07:17:16.5912866Z\",\r\n \"endTime\": \"2021-04-18T07:17:33.1874663Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"f4e903e4-94ff-4df8-b37b-3c510b5a0b48\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4b5963ec-3060-4937-b821-e1960e81145d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"2f3e3730-abe6-4b95-b248-a3faa8bf3a50\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"abcedba5-2598-4400-941b-9ac0ae8d6a4f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"a41b6a2e-6a7a-4c63-92f3-a0929667416b\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:17:15.6937156Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"dea8bdf4-66e2-4cf8-bcea-3deec175edb2\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/fba349f7-ee17-49b8-bc60-478446765a4a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZmJhMzQ5ZjctZWUxNy00OWI4LWJjNjAtNDc4NDQ2NzY1YTRhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15fe3c88-974c-4846-a7c8-a2c1778a00ee-2020-05-03 00:28:43Z-Ps" + "8d982d66-b582-4b7f-a192-65a5544a4776" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462123194)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066923194)\\/\",\"ClientRequestId\":\"15fe3c88-974c-4846-a7c8-a2c1778a00ee-2020-05-03 00:28:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DF4ng/mKPzW5UnzVbGpO3tL9RFTgICou7F+zJsTy3/k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726676565)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331476565)\\/\",\"ClientRequestId\":\"ffc3db57-ca0f-407d-96ae-b37acc7438fa-2021-04-18 07:17:56Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZnWK/GQ6XqEBOwi7nlllb2jSAT27OgzpRrurovLX5Yk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23273,38 +23786,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11734" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "15fe3c88-974c-4846-a7c8-a2c1778a00ee-2020-05-03 00:28:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "8d982d66-b582-4b7f-a192-65a5544a4776" ], "x-ms-correlation-request-id": [ - "f11194e0-8529-4234-acfb-940ccc793bf4" + "5c602bce-3c46-439d-b961-77263f40359f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002843Z:f11194e0-8529-4234-acfb-940ccc793bf4" + "CENTRALUSEUAP:20210418T071756Z:5c602bce-3c46-439d-b961-77263f40359f" ], "Date": [ - "Sun, 03 May 2020 00:28:43 GMT" + "Sun, 18 Apr 2021 07:17:56 GMT" ], "Content-Length": [ - "6233" + "6197" ], "Content-Type": [ "application/json" @@ -23313,29 +23823,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"name\": \"6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"55338ea8-8331-4648-8533-0daf241b3e68 ActivityId: 34b751c8-db34-4644-83c0-f5e62b8a40aa\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"9a76f79e-1f3f-4321-b3e5-27469621a398\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T07:17:16.5912866Z\",\r\n \"endTime\": \"2021-04-18T07:17:33.1874663Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"f4e903e4-94ff-4df8-b37b-3c510b5a0b48\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4b5963ec-3060-4937-b821-e1960e81145d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"2f3e3730-abe6-4b95-b248-a3faa8bf3a50\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"abcedba5-2598-4400-941b-9ac0ae8d6a4f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"a41b6a2e-6a7a-4c63-92f3-a0929667416b\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:17:15.6937156Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"dea8bdf4-66e2-4cf8-bcea-3deec175edb2\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/fba349f7-ee17-49b8-bc60-478446765a4a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZmJhMzQ5ZjctZWUxNy00OWI4LWJjNjAtNDc4NDQ2NzY1YTRhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fba2c3e5-0f83-43b4-88f2-904d3973d953-2020-05-03 00:29:03Z-Ps" + "4551af34-795b-4a66-97dd-e63d0454080c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462143553)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066943553)\\/\",\"ClientRequestId\":\"fba2c3e5-0f83-43b4-88f2-904d3973d953-2020-05-03 00:29:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lXMFX8cO8tRx6MWnMXjb2lWedBm47zPcyRTAmR2QlE8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726696938)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331496938)\\/\",\"ClientRequestId\":\"e5dde35f-3322-43fb-a716-3966b0632700-2021-04-18 07:18:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jI0gufACiZZsauYpsM4L5CoJzFfI1cRu3pgRPUy75Tg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23346,38 +23856,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11733" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "fba2c3e5-0f83-43b4-88f2-904d3973d953-2020-05-03 00:29:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "4551af34-795b-4a66-97dd-e63d0454080c" ], "x-ms-correlation-request-id": [ - "0d229940-2393-456b-b6d0-16a088b00334" + "32a017c1-c718-43a9-bd8c-de5bdc575fb3" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002903Z:0d229940-2393-456b-b6d0-16a088b00334" + "CENTRALUSEUAP:20210418T071817Z:32a017c1-c718-43a9-bd8c-de5bdc575fb3" ], "Date": [ - "Sun, 03 May 2020 00:29:02 GMT" + "Sun, 18 Apr 2021 07:18:17 GMT" ], "Content-Length": [ - "6319" + "6197" ], "Content-Type": [ "application/json" @@ -23386,29 +23893,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6950669Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6950669Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6638764Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:29:00.9294424Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:29:00.9294424Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/3f21e653-a3a8-4643-a87e-ee4ea79685ef\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"name\": \"6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"55338ea8-8331-4648-8533-0daf241b3e68 ActivityId: 34b751c8-db34-4644-83c0-f5e62b8a40aa\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"9a76f79e-1f3f-4321-b3e5-27469621a398\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T07:17:16.5912866Z\",\r\n \"endTime\": \"2021-04-18T07:17:33.1874663Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"f4e903e4-94ff-4df8-b37b-3c510b5a0b48\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4b5963ec-3060-4937-b821-e1960e81145d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"2f3e3730-abe6-4b95-b248-a3faa8bf3a50\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"abcedba5-2598-4400-941b-9ac0ae8d6a4f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"a41b6a2e-6a7a-4c63-92f3-a0929667416b\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:17:15.6937156Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"dea8bdf4-66e2-4cf8-bcea-3deec175edb2\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/fba349f7-ee17-49b8-bc60-478446765a4a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZmJhMzQ5ZjctZWUxNy00OWI4LWJjNjAtNDc4NDQ2NzY1YTRhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9186179-19e5-4c14-8066-f1d9d1f6b683-2020-05-03 00:29:23Z-Ps" + "ef02985d-1ece-43c2-8892-e402ca204e23" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462163989)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066963989)\\/\",\"ClientRequestId\":\"a9186179-19e5-4c14-8066-f1d9d1f6b683-2020-05-03 00:29:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"8IP0oLtaJ24MqSw2C92Bv+bJa6nAl/vqb/IY/gblpy0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726717365)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331517365)\\/\",\"ClientRequestId\":\"de029e48-6eff-4557-9ce9-7f47f6f73371-2021-04-18 07:18:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DwQ6de96O4KLPRTbes0gvajMCcRNNBCskwOZvvSzZ98=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23418,39 +23925,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11732" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a9186179-19e5-4c14-8066-f1d9d1f6b683-2020-05-03 00:29:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "ef02985d-1ece-43c2-8892-e402ca204e23" ], "x-ms-correlation-request-id": [ - "a66d0180-3a87-4806-a9b2-d5bb4b52d3ad" + "6d1247cc-1ee6-4ce0-bc4a-ad8f62f94da7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002924Z:a66d0180-3a87-4806-a9b2-d5bb4b52d3ad" + "CENTRALUSEUAP:20210418T071837Z:6d1247cc-1ee6-4ce0-bc4a-ad8f62f94da7" ], "Date": [ - "Sun, 03 May 2020 00:29:23 GMT" + "Sun, 18 Apr 2021 07:18:37 GMT" ], "Content-Length": [ - "6319" + "6283" ], "Content-Type": [ "application/json" @@ -23459,29 +23963,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6950669Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6950669Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6638764Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:29:00.9294424Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:29:00.9294424Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/3f21e653-a3a8-4643-a87e-ee4ea79685ef\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"name\": \"6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"55338ea8-8331-4648-8533-0daf241b3e68 ActivityId: 34b751c8-db34-4644-83c0-f5e62b8a40aa\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"9a76f79e-1f3f-4321-b3e5-27469621a398\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T07:17:16.5912866Z\",\r\n \"endTime\": \"2021-04-18T07:17:33.1874663Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8492658Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8492658Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"f4e903e4-94ff-4df8-b37b-3c510b5a0b48\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8292675Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4b5963ec-3060-4937-b821-e1960e81145d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:18:37.0342934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"2f3e3730-abe6-4b95-b248-a3faa8bf3a50\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:18:37.0342934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/30a7527a-96fe-4474-92e5-de799c56b30d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"abcedba5-2598-4400-941b-9ac0ae8d6a4f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"a41b6a2e-6a7a-4c63-92f3-a0929667416b\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:17:15.6937156Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"dea8bdf4-66e2-4cf8-bcea-3deec175edb2\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/fba349f7-ee17-49b8-bc60-478446765a4a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZmJhMzQ5ZjctZWUxNy00OWI4LWJjNjAtNDc4NDQ2NzY1YTRhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e342df40-5b90-4ea1-9570-c26bb0dce467-2020-05-03 00:29:44Z-Ps" + "46813a61-2c25-49ed-88f0-0b5e03f5ff42" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462184381)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589066984381)\\/\",\"ClientRequestId\":\"e342df40-5b90-4ea1-9570-c26bb0dce467-2020-05-03 00:29:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"gVEyonyfTlXiNGrFmnOWp34PyAkCPTNEFSTR5mY3kcA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726737735)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331537735)\\/\",\"ClientRequestId\":\"69a64b00-23b1-4408-b375-26aa333f153b-2021-04-18 07:18:57Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"DYAL4wM/J/V2a07wF1YJsvpTGOrnwAQCVA6sb5Sg02Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23492,38 +23996,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11731" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e342df40-5b90-4ea1-9570-c26bb0dce467-2020-05-03 00:29:44Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "46813a61-2c25-49ed-88f0-0b5e03f5ff42" ], "x-ms-correlation-request-id": [ - "caeb0b92-7863-4bea-aeae-6a62e78b8319" + "8539e9a0-8acb-4824-af1d-298b4938bad8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T002944Z:caeb0b92-7863-4bea-aeae-6a62e78b8319" + "CENTRALUSEUAP:20210418T071857Z:8539e9a0-8acb-4824-af1d-298b4938bad8" ], "Date": [ - "Sun, 03 May 2020 00:29:44 GMT" + "Sun, 18 Apr 2021 07:18:57 GMT" ], "Content-Length": [ - "6319" + "6283" ], "Content-Type": [ "application/json" @@ -23532,29 +24033,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6950669Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6950669Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6638764Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:29:00.9294424Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:29:00.9294424Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/3f21e653-a3a8-4643-a87e-ee4ea79685ef\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"name\": \"6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"55338ea8-8331-4648-8533-0daf241b3e68 ActivityId: 34b751c8-db34-4644-83c0-f5e62b8a40aa\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"9a76f79e-1f3f-4321-b3e5-27469621a398\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T07:17:16.5912866Z\",\r\n \"endTime\": \"2021-04-18T07:17:33.1874663Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8492658Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8492658Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"f4e903e4-94ff-4df8-b37b-3c510b5a0b48\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8292675Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4b5963ec-3060-4937-b821-e1960e81145d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:18:37.0342934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"2f3e3730-abe6-4b95-b248-a3faa8bf3a50\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:18:37.0342934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/30a7527a-96fe-4474-92e5-de799c56b30d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"abcedba5-2598-4400-941b-9ac0ae8d6a4f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"a41b6a2e-6a7a-4c63-92f3-a0929667416b\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:17:15.6937156Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"dea8bdf4-66e2-4cf8-bcea-3deec175edb2\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/fba349f7-ee17-49b8-bc60-478446765a4a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZmJhMzQ5ZjctZWUxNy00OWI4LWJjNjAtNDc4NDQ2NzY1YTRhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7af5b095-c0b1-4c7a-9c4f-141dcb981e3d-2020-05-03 00:30:05Z-Ps" + "a2d43bfe-0cd0-4bb1-a358-95929f0915ce" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462205064)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589067005064)\\/\",\"ClientRequestId\":\"7af5b095-c0b1-4c7a-9c4f-141dcb981e3d-2020-05-03 00:30:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VdYkLcyQ1WzJ1eNqq/hhvq5/scRqcy4d1iIHfYGmlDA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726758091)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331558091)\\/\",\"ClientRequestId\":\"a539ba87-f4fc-42c9-aff9-76f95a1391cb-2021-04-18 07:19:18Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YLR2nJ5d/fZIQ2z8JuPwFXFdG8YCJbLH7vQyUHSM8JM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23565,38 +24066,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11730" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7af5b095-c0b1-4c7a-9c4f-141dcb981e3d-2020-05-03 00:30:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a2d43bfe-0cd0-4bb1-a358-95929f0915ce" ], "x-ms-correlation-request-id": [ - "cc90a756-42d2-49e8-8b3d-575b7ff7c8c6" + "63392365-4131-4cdb-b85f-2470e3356cb6" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T003005Z:cc90a756-42d2-49e8-8b3d-575b7ff7c8c6" + "CENTRALUSEUAP:20210418T071918Z:63392365-4131-4cdb-b85f-2470e3356cb6" ], "Date": [ - "Sun, 03 May 2020 00:30:05 GMT" + "Sun, 18 Apr 2021 07:19:17 GMT" ], "Content-Length": [ - "6319" + "6283" ], "Content-Type": [ "application/json" @@ -23605,29 +24103,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6950669Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6950669Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6638764Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:29:00.9294424Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:29:00.9294424Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/3f21e653-a3a8-4643-a87e-ee4ea79685ef\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"name\": \"6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"55338ea8-8331-4648-8533-0daf241b3e68 ActivityId: 34b751c8-db34-4644-83c0-f5e62b8a40aa\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"9a76f79e-1f3f-4321-b3e5-27469621a398\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T07:17:16.5912866Z\",\r\n \"endTime\": \"2021-04-18T07:17:33.1874663Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8492658Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8492658Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"f4e903e4-94ff-4df8-b37b-3c510b5a0b48\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8292675Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4b5963ec-3060-4937-b821-e1960e81145d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:18:37.0342934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"2f3e3730-abe6-4b95-b248-a3faa8bf3a50\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:18:37.0342934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/30a7527a-96fe-4474-92e5-de799c56b30d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"abcedba5-2598-4400-941b-9ac0ae8d6a4f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"a41b6a2e-6a7a-4c63-92f3-a0929667416b\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:17:15.6937156Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"dea8bdf4-66e2-4cf8-bcea-3deec175edb2\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/fba349f7-ee17-49b8-bc60-478446765a4a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZmJhMzQ5ZjctZWUxNy00OWI4LWJjNjAtNDc4NDQ2NzY1YTRhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0fd0514-b77d-4c9b-9666-ce7646ad7347-2020-05-03 00:30:25Z-Ps" + "ccd8dc1a-5c87-461b-8ac3-d0087cf7c365" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462225492)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589067025492)\\/\",\"ClientRequestId\":\"d0fd0514-b77d-4c9b-9666-ce7646ad7347-2020-05-03 00:30:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JTAO2/Q7xj0nZtN25cc94AWZNL01Uz0O2H6PzlYCLX8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726778515)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331578515)\\/\",\"ClientRequestId\":\"0d1b39f5-f67d-4509-8dbe-90e44905ef78-2021-04-18 07:19:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qXodJ1TUKrMjIl4WkDFUtf+RfnhBpzfIiP0rLPaQIcU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23638,38 +24136,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11729" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d0fd0514-b77d-4c9b-9666-ce7646ad7347-2020-05-03 00:30:25Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ccd8dc1a-5c87-461b-8ac3-d0087cf7c365" ], "x-ms-correlation-request-id": [ - "63a22294-e479-4c03-becd-053bb368b73e" + "e6df76de-52ba-420c-8e8b-3be166fb1934" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T003025Z:63a22294-e479-4c03-becd-053bb368b73e" + "CENTRALUSEUAP:20210418T071938Z:e6df76de-52ba-420c-8e8b-3be166fb1934" ], "Date": [ - "Sun, 03 May 2020 00:30:25 GMT" + "Sun, 18 Apr 2021 07:19:38 GMT" ], "Content-Length": [ - "6319" + "6283" ], "Content-Type": [ "application/json" @@ -23678,29 +24173,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6950669Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6950669Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6638764Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:29:00.9294424Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:29:00.9294424Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/3f21e653-a3a8-4643-a87e-ee4ea79685ef\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"name\": \"6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"55338ea8-8331-4648-8533-0daf241b3e68 ActivityId: 34b751c8-db34-4644-83c0-f5e62b8a40aa\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"9a76f79e-1f3f-4321-b3e5-27469621a398\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T07:17:16.5912866Z\",\r\n \"endTime\": \"2021-04-18T07:17:33.1874663Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8492658Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8492658Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"f4e903e4-94ff-4df8-b37b-3c510b5a0b48\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8292675Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4b5963ec-3060-4937-b821-e1960e81145d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:18:37.0342934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"2f3e3730-abe6-4b95-b248-a3faa8bf3a50\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:18:37.0342934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/30a7527a-96fe-4474-92e5-de799c56b30d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"abcedba5-2598-4400-941b-9ac0ae8d6a4f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"a41b6a2e-6a7a-4c63-92f3-a0929667416b\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:17:15.6937156Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"dea8bdf4-66e2-4cf8-bcea-3deec175edb2\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/fba349f7-ee17-49b8-bc60-478446765a4a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZmJhMzQ5ZjctZWUxNy00OWI4LWJjNjAtNDc4NDQ2NzY1YTRhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f04d8e72-6fca-4b33-9e6b-0d4354d76da6-2020-05-03 00:30:45Z-Ps" + "c6162c5e-c12d-488c-ab69-d71be17e0942" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462245958)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589067045958)\\/\",\"ClientRequestId\":\"f04d8e72-6fca-4b33-9e6b-0d4354d76da6-2020-05-03 00:30:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cybux5t1RNeUbMpoaBHp0EwVPBgfxZfwXbrLKfymaFI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726798893)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331598893)\\/\",\"ClientRequestId\":\"148b27d5-596c-4866-adbe-d3d3f328d8f0-2021-04-18 07:19:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3gSBFgFAznxETc0bgafqsEh71H76Vo09BNUqYhYeWeg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23710,39 +24205,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11728" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f04d8e72-6fca-4b33-9e6b-0d4354d76da6-2020-05-03 00:30:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "c6162c5e-c12d-488c-ab69-d71be17e0942" ], "x-ms-correlation-request-id": [ - "be735307-cb51-48ff-9670-1bc66b984c9a" + "e75807ee-944c-45ae-9154-731f81ca12e2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T003046Z:be735307-cb51-48ff-9670-1bc66b984c9a" + "CENTRALUSEUAP:20210418T071959Z:e75807ee-944c-45ae-9154-731f81ca12e2" ], "Date": [ - "Sun, 03 May 2020 00:30:45 GMT" + "Sun, 18 Apr 2021 07:19:58 GMT" ], "Content-Length": [ - "6398" + "6283" ], "Content-Type": [ "application/json" @@ -23751,29 +24243,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6950669Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6950669Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6638764Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:29:00.9294424Z\",\r\n \"endTime\": \"2020-05-03T00:30:35.0316449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:29:00.9294424Z\",\r\n \"endTime\": \"2020-05-03T00:30:35.0160203Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/3f21e653-a3a8-4643-a87e-ee4ea79685ef\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:30:35.2193444Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:30:35.2193444Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/74fce6f3-2479-43a7-af1c-fd281731a25f\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"name\": \"6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"55338ea8-8331-4648-8533-0daf241b3e68 ActivityId: 34b751c8-db34-4644-83c0-f5e62b8a40aa\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"9a76f79e-1f3f-4321-b3e5-27469621a398\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T07:17:16.5912866Z\",\r\n \"endTime\": \"2021-04-18T07:17:33.1874663Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8492658Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8492658Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"f4e903e4-94ff-4df8-b37b-3c510b5a0b48\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8292675Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4b5963ec-3060-4937-b821-e1960e81145d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:18:37.0342934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"2f3e3730-abe6-4b95-b248-a3faa8bf3a50\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:18:37.0342934Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/30a7527a-96fe-4474-92e5-de799c56b30d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"abcedba5-2598-4400-941b-9ac0ae8d6a4f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/\",\r\n \"jobFriendlyName\": \"Unknown\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"Unknown\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"a41b6a2e-6a7a-4c63-92f3-a0929667416b\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:17:15.6937156Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"dea8bdf4-66e2-4cf8-bcea-3deec175edb2\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/fba349f7-ee17-49b8-bc60-478446765a4a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZmJhMzQ5ZjctZWUxNy00OWI4LWJjNjAtNDc4NDQ2NzY1YTRhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2ff71ba-8b2f-4ae9-9590-a7248a5e4a5a-2020-05-03 00:31:06Z-Ps" + "aec8264b-df0e-493f-bf06-22b769b0fba5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462266320)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589067066320)\\/\",\"ClientRequestId\":\"e2ff71ba-8b2f-4ae9-9590-a7248a5e4a5a-2020-05-03 00:31:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"w557eaU2GvhNpypkouLSG3Pj7zaNIe6dGzin80zEmKA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726819250)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331619250)\\/\",\"ClientRequestId\":\"f6d41278-c714-4af8-81b6-ac5406174a6a-2021-04-18 07:20:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"mT9fmyuoo0xl6lwkQ7rviJqLg9pccGZAtXa4bKriowM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23784,38 +24276,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11727" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e2ff71ba-8b2f-4ae9-9590-a7248a5e4a5a-2020-05-03 00:31:06Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "aec8264b-df0e-493f-bf06-22b769b0fba5" ], "x-ms-correlation-request-id": [ - "cbd5d472-4028-45cf-bd95-c237ed884b28" + "6a295e90-b840-4e1f-842f-f45270a8fb68" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T003106Z:cbd5d472-4028-45cf-bd95-c237ed884b28" + "CENTRALUSEUAP:20210418T072019Z:6a295e90-b840-4e1f-842f-f45270a8fb68" ], "Date": [ - "Sun, 03 May 2020 00:31:06 GMT" + "Sun, 18 Apr 2021 07:20:19 GMT" ], "Content-Length": [ - "6398" + "6362" ], "Content-Type": [ "application/json" @@ -23824,29 +24313,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6950669Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6950669Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6638764Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:29:00.9294424Z\",\r\n \"endTime\": \"2020-05-03T00:30:35.0316449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:29:00.9294424Z\",\r\n \"endTime\": \"2020-05-03T00:30:35.0160203Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/3f21e653-a3a8-4643-a87e-ee4ea79685ef\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:30:35.2193444Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:30:35.2193444Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/74fce6f3-2479-43a7-af1c-fd281731a25f\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"name\": \"6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"55338ea8-8331-4648-8533-0daf241b3e68 ActivityId: 34b751c8-db34-4644-83c0-f5e62b8a40aa\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"9a76f79e-1f3f-4321-b3e5-27469621a398\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T07:17:16.5912866Z\",\r\n \"endTime\": \"2021-04-18T07:17:33.1874663Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8492658Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8492658Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"f4e903e4-94ff-4df8-b37b-3c510b5a0b48\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8292675Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4b5963ec-3060-4937-b821-e1960e81145d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:18:37.0342934Z\",\r\n \"endTime\": \"2021-04-18T07:20:11.4577914Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"2f3e3730-abe6-4b95-b248-a3faa8bf3a50\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:18:37.0342934Z\",\r\n \"endTime\": \"2021-04-18T07:20:11.4377906Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/30a7527a-96fe-4474-92e5-de799c56b30d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:20:11.6877996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"abcedba5-2598-4400-941b-9ac0ae8d6a4f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:20:11.6877996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/90a6ae10-5a55-47eb-a02c-b6b52b3c6b0a\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"a41b6a2e-6a7a-4c63-92f3-a0929667416b\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:17:15.6937156Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"dea8bdf4-66e2-4cf8-bcea-3deec175edb2\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/fba349f7-ee17-49b8-bc60-478446765a4a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZmJhMzQ5ZjctZWUxNy00OWI4LWJjNjAtNDc4NDQ2NzY1YTRhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27e4fea9-46c8-40cf-83ef-39b19956870c-2020-05-03 00:31:26Z-Ps" + "f06ddadd-847b-43a5-9781-5450322c2aa5" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462286987)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589067086987)\\/\",\"ClientRequestId\":\"27e4fea9-46c8-40cf-83ef-39b19956870c-2020-05-03 00:31:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"60JomNUmUDRN2aillgCOTo1LJ56bibRV+Lmd5wnZs54=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726839690)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331639690)\\/\",\"ClientRequestId\":\"85950d8e-16ee-48ef-9e78-465c60110352-2021-04-18 07:20:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"stkKGyE0L/qDS69QmHJXLVggVo5/0LPfR88bDCFUouE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23857,38 +24346,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11726" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "27e4fea9-46c8-40cf-83ef-39b19956870c-2020-05-03 00:31:26Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "f06ddadd-847b-43a5-9781-5450322c2aa5" ], "x-ms-correlation-request-id": [ - "5b028760-88f7-4c73-abdf-0b1e8a02c37d" + "22f4ea5c-62e1-4d1c-b467-45e4134fdb57" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T003127Z:5b028760-88f7-4c73-abdf-0b1e8a02c37d" + "CENTRALUSEUAP:20210418T072039Z:22f4ea5c-62e1-4d1c-b467-45e4134fdb57" ], "Date": [ - "Sun, 03 May 2020 00:31:26 GMT" + "Sun, 18 Apr 2021 07:20:39 GMT" ], "Content-Length": [ - "6398" + "6362" ], "Content-Type": [ "application/json" @@ -23897,29 +24383,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6950669Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6950669Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6638764Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:29:00.9294424Z\",\r\n \"endTime\": \"2020-05-03T00:30:35.0316449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:29:00.9294424Z\",\r\n \"endTime\": \"2020-05-03T00:30:35.0160203Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/3f21e653-a3a8-4643-a87e-ee4ea79685ef\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:30:35.2193444Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:30:35.2193444Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/74fce6f3-2479-43a7-af1c-fd281731a25f\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"name\": \"6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"55338ea8-8331-4648-8533-0daf241b3e68 ActivityId: 34b751c8-db34-4644-83c0-f5e62b8a40aa\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"9a76f79e-1f3f-4321-b3e5-27469621a398\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T07:17:16.5912866Z\",\r\n \"endTime\": \"2021-04-18T07:17:33.1874663Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8492658Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8492658Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"f4e903e4-94ff-4df8-b37b-3c510b5a0b48\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8292675Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4b5963ec-3060-4937-b821-e1960e81145d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:18:37.0342934Z\",\r\n \"endTime\": \"2021-04-18T07:20:11.4577914Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"2f3e3730-abe6-4b95-b248-a3faa8bf3a50\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:18:37.0342934Z\",\r\n \"endTime\": \"2021-04-18T07:20:11.4377906Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/30a7527a-96fe-4474-92e5-de799c56b30d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:20:11.6877996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"abcedba5-2598-4400-941b-9ac0ae8d6a4f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:20:11.6877996Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/90a6ae10-5a55-47eb-a02c-b6b52b3c6b0a\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"a41b6a2e-6a7a-4c63-92f3-a0929667416b\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:17:15.6937156Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"dea8bdf4-66e2-4cf8-bcea-3deec175edb2\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/31af2c6f-2481-41af-a59f-009b3e619caf?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvMzFhZjJjNmYtMjQ4MS00MWFmLWE1OWYtMDA5YjNlNjE5Y2FmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/fba349f7-ee17-49b8-bc60-478446765a4a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmczNDcvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDM0Ny9yZXBsaWNhdGlvbkpvYnMvZmJhMzQ5ZjctZWUxNy00OWI4LWJjNjAtNDc4NDQ2NzY1YTRhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a570cd4f-0a67-4869-a558-f0d48568fdb9-2020-05-03 00:31:47Z-Ps" + "ce354471-f09c-4bc8-b1bd-5fea88ef7473" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1588462307369)\\/\",\"NotAfterTimestamp\":\"\\/Date(1589067107369)\\/\",\"ClientRequestId\":\"a570cd4f-0a67-4869-a558-f0d48568fdb9-2020-05-03 00:31:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZQze9Mx4+lqeSSA3K80hEHk6Pv9LbUvjffx+1VRjPlU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618726860069)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619331660069)\\/\",\"ClientRequestId\":\"ef4da43f-04fa-4b01-bf53-73da623e0375-2021-04-18 07:21:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3Gfgv1Trrf7ciBfDTjoF0jy0yJmhAwZtbVCPr2Frgw0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.8.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -23929,39 +24415,36 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a570cd4f-0a67-4869-a558-f0d48568fdb9-2020-05-03 00:31:47Z-Ps" + "ce354471-f09c-4bc8-b1bd-5fea88ef7473" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11725" ], "x-ms-correlation-request-id": [ - "3d70f361-6ef4-4bc4-bc03-d68e48dfa6a1" + "5151b3bf-96e7-4176-9d32-a05640ffe2a7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T003147Z:3d70f361-6ef4-4bc4-bc03-d68e48dfa6a1" + "CENTRALUSEUAP:20210418T072100Z:5151b3bf-96e7-4176-9d32-a05640ffe2a7" ], "Date": [ - "Sun, 03 May 2020 00:31:46 GMT" + "Sun, 18 Apr 2021 07:21:00 GMT" ], "Content-Length": [ - "6778" + "6742" ], "Content-Type": [ "application/json" @@ -23970,26 +24453,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"name\": \"553f9ca0-1231-4e88-8349-e53b2ffd1fc2\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e9fa18a7-9310-4726-9853-b16ce9bc7929-2020-05-03 00:24:15Z-Ps ActivityId: cc05636c-b6f7-4df9-a38c-70aecd68981e\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"5f0f1876-8c39-4790-b226-d24262dc116a\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2020-05-03T00:24:16.98025Z\",\r\n \"endTime\": \"2020-05-03T00:24:24.4053179Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6950669Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6950669Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"13e47858-d1c1-406c-bf39-751bf3785b03\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:24:24.5615738Z\",\r\n \"endTime\": \"2020-05-03T00:29:00.6638764Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/cc4dc206-43fe-45ee-b20e-f7bb8ff54981\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:29:00.9294424Z\",\r\n \"endTime\": \"2020-05-03T00:30:35.0316449Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"ad3aff39-7e14-4b71-a572-40ea25e7ebb1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:29:00.9294424Z\",\r\n \"endTime\": \"2020-05-03T00:30:35.0160203Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/3f21e653-a3a8-4643-a87e-ee4ea79685ef\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:30:35.2193444Z\",\r\n \"endTime\": \"2020-05-03T00:31:40.001071Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"5369b3fa-9b1c-4e55-8587-73566916c0ed\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2020-05-03T00:30:35.2193444Z\",\r\n \"endTime\": \"2020-05-03T00:31:39.9854724Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/74fce6f3-2479-43a7-af1c-fd281731a25f\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"5da7bda8-baa4-4244-8902-bb3aadf84c06\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"2020-05-03T00:31:40.1729987Z\",\r\n \"endTime\": \"2020-05-03T00:31:41.1105092Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-05-03T00:24:16.5363309Z\",\r\n \"endTime\": \"2020-05-03T00:31:41Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a662be09-d067-4c13-a6a4-d29417c04a41\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [\r\n {\r\n \"name\": \"d0a9323b-58c0-553c-8d03-789f29bfa8c2\",\r\n \"friendlyName\": \"a2aVM347\",\r\n \"testVmName\": null,\r\n \"testVmFriendlyName\": null,\r\n \"networkConnectionStatus\": null,\r\n \"networkFriendlyName\": \"A2ARecoveryNetwork347\",\r\n \"subnet\": \"frontendSubnet\",\r\n \"recoveryPointId\": \"059f949c-e1cc-4ecf-a02b-b09e1c7921b6\",\r\n \"recoveryPointTime\": \"2020-05-03T00:20:02.2540145Z\"\r\n }\r\n ],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"primaryVmmName\": \"Southeast Asia\",\r\n \"recoveryVmmId\": \"2aac6c01-6990-55e7-a12f-37ef4f7626ef\",\r\n \"recoveryVmmName\": \"Southeast Asia\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"name\": \"6d66c937-a3ad-44f2-89c5-93c23dac2fb9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"55338ea8-8331-4648-8533-0daf241b3e68 ActivityId: 34b751c8-db34-4644-83c0-f5e62b8a40aa\",\r\n \"scenarioName\": \"UnplannedFailover\",\r\n \"friendlyName\": \"Failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"9a76f79e-1f3f-4321-b3e5-27469621a398\",\r\n \"name\": \"RpSrsPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T07:17:16.5912866Z\",\r\n \"endTime\": \"2021-04-18T07:17:33.1874663Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"ShutdownAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8492658Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"All groups shutdown (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"ShutdownAllActionGroup\",\r\n \"groupId\": \"ShutdownAllActionGroup\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanShutdownGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8492658Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Shutdown: Group 1 (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"Shutdown\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"f4e903e4-94ff-4df8-b37b-3c510b5a0b48\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:17:33.2974584Z\",\r\n \"endTime\": \"2021-04-18T07:18:36.8292675Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/4b5963ec-3060-4937-b821-e1960e81145d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"FailoverAllActionGroup\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:18:37.0342934Z\",\r\n \"endTime\": \"2021-04-18T07:20:11.4577914Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Recovery plan failover\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"FailoverAllActionGroup\",\r\n \"groupId\": \"FailoverAllActionGroup\",\r\n \"rpGroupType\": \"RpFailoverTask\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"2f3e3730-abe6-4b95-b248-a3faa8bf3a50\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:18:37.0342934Z\",\r\n \"endTime\": \"2021-04-18T07:20:11.4377906Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/30a7527a-96fe-4474-92e5-de799c56b30d\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"Group1\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:20:11.6877996Z\",\r\n \"endTime\": \"2021-04-18T07:20:57.4336831Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Group 1: Start (1)\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"name\": \"Group1\",\r\n \"groupId\": \"Group1\",\r\n \"rpGroupType\": \"BootGroup\",\r\n \"instanceType\": \"RecoveryPlanGroupTaskDetails\",\r\n \"childTasks\": [\r\n {\r\n \"taskId\": \"abcedba5-2598-4400-941b-9ac0ae8d6a4f\",\r\n \"name\": \"Unknown\",\r\n \"startTime\": \"2021-04-18T07:20:11.6877996Z\",\r\n \"endTime\": \"2021-04-18T07:20:57.4036873Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"a2avm347\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"VirtualMachineTaskDetails\",\r\n \"customDetails\": {\r\n \"skippedReason\": \"None\",\r\n \"skippedReasonString\": null,\r\n \"jobTask\": {\r\n \"jobId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg347/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest347/replicationJobs/90a6ae10-5a55-47eb-a02c-b6b52b3c6b0a\",\r\n \"jobFriendlyName\": \"Failover\",\r\n \"targetObjectId\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"targetObjectName\": \"a2avm347\",\r\n \"targetInstanceType\": \"Vm\",\r\n \"jobScenarioName\": \"UnplannedFailover\"\r\n },\r\n \"instanceType\": \"VirtualMachineTaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ]\r\n },\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"a41b6a2e-6a7a-4c63-92f3-a0929667416b\",\r\n \"name\": \"EndRecoveryPlanTask\",\r\n \"startTime\": \"2021-04-18T07:20:57.543685Z\",\r\n \"endTime\": \"2021-04-18T07:20:57.6886889Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Finalizing the recovery plan\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T07:17:15.6937156Z\",\r\n \"endTime\": \"2021-04-18T07:20:57Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"dea8bdf4-66e2-4cf8-bcea-3deec175edb2\",\r\n \"targetObjectName\": \"A2ARP347\",\r\n \"targetInstanceType\": \"RecoveryPlan\",\r\n \"customDetails\": {\r\n \"instanceType\": \"FailoverJobDetails\",\r\n \"protectedItemDetails\": [\r\n {\r\n \"name\": \"05ba42cc-6509-56c0-aa03-88fe1d275b62\",\r\n \"friendlyName\": \"a2aVM347\",\r\n \"testVmName\": null,\r\n \"testVmFriendlyName\": null,\r\n \"networkConnectionStatus\": null,\r\n \"networkFriendlyName\": \"A2ARecoveryNetwork347\",\r\n \"subnet\": \"frontendSubnet\",\r\n \"recoveryPointId\": \"f0abdd7d-f8d3-4e0f-8477-93f2c6b75e5d\",\r\n \"recoveryPointTime\": \"2021-04-18T07:16:34.2945468Z\"\r\n }\r\n ],\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"e276ee38-a79d-593d-8b45-21b718088144\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Compute/virtualMachines/a2aVM347?api-version=2019-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2U5MDRkODgtZGE0My00MjlkLWEwNDgtZGZmNDA1MWIyMTFmL3Jlc291cmNlR3JvdXBzL3JlY1JHMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAxOS0xMi0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Compute/virtualMachines/a2aVM347?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMzQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0zNDc/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "acc01475-a996-4bcd-a240-571cfaa80ade" + "793d5c78-69e0-4860-9e49-10019d7cff2b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/35.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -24000,35 +24483,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31984" + "Microsoft.Compute/LowCostGet3Min;3992,Microsoft.Compute/LowCostGet30Min;31964" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "d864a5be-4888-4769-9364-13f297542e4e" + "7194fb62-82f1-40c0-9062-17891e594272" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11988" ], "x-ms-correlation-request-id": [ - "67eb483e-99dd-41b9-b157-847f8d8b14c0" + "ba41da9c-dbd5-44fa-ad17-fb031a80d563" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200503T003147Z:67eb483e-99dd-41b9-b157-847f8d8b14c0" + "CENTRALUSEUAP:20210418T072101Z:ba41da9c-dbd5-44fa-ad17-fb031a80d563" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sun, 03 May 2020 00:31:47 GMT" + "Sun, 18 Apr 2021 07:21:00 GMT" ], "Content-Length": [ - "1223" + "1352" ], "Content-Type": [ "application/json; charset=utf-8" @@ -24037,13 +24520,13 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Compute/virtualMachines/a2aVM347\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"vmId\": \"ce2b26b8-85c9-4833-a122-1640d44ed42a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_1ffcd889cd1149f3bfdd0e3b71157795\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/7e904d88-da43-429d-a048-dff4051b211f/resourceGroups/recRG347/providers/Microsoft.Network/networkInterfaces/a2aVM347\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM347\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Compute/virtualMachines/a2aVM347\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"c4c1ced2-f002-4efd-8e42-5e35ce33196a\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\",\r\n \"createOption\": \"Attach\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Compute/disks/a2aVM347_OsDisk_1_b4f457fabfc74c8fb9c0fb012b3edcd2\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG347/providers/Microsoft.Network/networkInterfaces/a2aVM347\",\r\n \"properties\": {\r\n \"primary\": true\r\n }\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "7e904d88-da43-429d-a048-dff4051b211f", - "NamingSuffix": "7b707d27-112a-4e16-999a-6f295e9236c6" + "SubscriptionId": "509099b2-9d2c-4636-b43e-bd5cafb6be69", + "NamingSuffix": "a77bf810-0b09-46d6-aabc-75875b941468" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/TestNewA2ADiskReplicationConfig.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/TestNewA2ADiskReplicationConfig.json index 7b1a8ca37827..519e19e7da71 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/TestNewA2ADiskReplicationConfig.json +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/TestNewA2ADiskReplicationConfig.json @@ -1,49 +1,48 @@ { "Entries": [ { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L2xvY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recRG106?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL3JlY1JHMTA2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "63136300-3ddc-4fe8-898b-557d7dbc989f" + "62d09f24-ebfe-4d41-970a-aa8c1484fe64" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Internal.Subscriptions.SubscriptionClient/4.1.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastasia\",\r\n \"name\": \"eastasia\",\r\n \"displayName\": \"East Asia\",\r\n \"longitude\": \"114.188\",\r\n \"latitude\": \"22.267\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southeastasia\",\r\n \"name\": \"southeastasia\",\r\n \"displayName\": \"Southeast Asia\",\r\n \"longitude\": \"103.833\",\r\n \"latitude\": \"1.283\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/centralus\",\r\n \"name\": \"centralus\",\r\n \"displayName\": \"Central US\",\r\n \"longitude\": \"-93.6208\",\r\n \"latitude\": \"41.5908\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastus\",\r\n \"name\": \"eastus\",\r\n \"displayName\": \"East US\",\r\n \"longitude\": \"-79.8164\",\r\n \"latitude\": \"37.3719\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastus2\",\r\n \"name\": \"eastus2\",\r\n \"displayName\": \"East US 2\",\r\n \"longitude\": \"-78.3889\",\r\n \"latitude\": \"36.6681\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westus\",\r\n \"name\": \"westus\",\r\n \"displayName\": \"West US\",\r\n \"longitude\": \"-122.417\",\r\n \"latitude\": \"37.783\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/northcentralus\",\r\n \"name\": \"northcentralus\",\r\n \"displayName\": \"North Central US\",\r\n \"longitude\": \"-87.6278\",\r\n \"latitude\": \"41.8819\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southcentralus\",\r\n \"name\": \"southcentralus\",\r\n \"displayName\": \"South Central US\",\r\n \"longitude\": \"-98.5\",\r\n \"latitude\": \"29.4167\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/northeurope\",\r\n \"name\": \"northeurope\",\r\n \"displayName\": \"North Europe\",\r\n \"longitude\": \"-6.2597\",\r\n \"latitude\": \"53.3478\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westeurope\",\r\n \"name\": \"westeurope\",\r\n \"displayName\": \"West Europe\",\r\n \"longitude\": \"4.9\",\r\n \"latitude\": \"52.3667\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/japanwest\",\r\n \"name\": \"japanwest\",\r\n \"displayName\": \"Japan West\",\r\n \"longitude\": \"135.5022\",\r\n \"latitude\": \"34.6939\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/japaneast\",\r\n \"name\": \"japaneast\",\r\n \"displayName\": \"Japan East\",\r\n \"longitude\": \"139.77\",\r\n \"latitude\": \"35.68\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/brazilsouth\",\r\n \"name\": \"brazilsouth\",\r\n \"displayName\": \"Brazil South\",\r\n \"longitude\": \"-46.633\",\r\n \"latitude\": \"-23.55\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiaeast\",\r\n \"name\": \"australiaeast\",\r\n \"displayName\": \"Australia East\",\r\n \"longitude\": \"151.2094\",\r\n \"latitude\": \"-33.86\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiasoutheast\",\r\n \"name\": \"australiasoutheast\",\r\n \"displayName\": \"Australia Southeast\",\r\n \"longitude\": \"144.9631\",\r\n \"latitude\": \"-37.8136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southindia\",\r\n \"name\": \"southindia\",\r\n \"displayName\": \"South India\",\r\n \"longitude\": \"80.1636\",\r\n \"latitude\": \"12.9822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/centralindia\",\r\n \"name\": \"centralindia\",\r\n \"displayName\": \"Central India\",\r\n \"longitude\": \"73.9197\",\r\n \"latitude\": \"18.5822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westindia\",\r\n \"name\": \"westindia\",\r\n \"displayName\": \"West India\",\r\n \"longitude\": \"72.868\",\r\n \"latitude\": \"19.088\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/canadacentral\",\r\n \"name\": \"canadacentral\",\r\n \"displayName\": \"Canada Central\",\r\n \"longitude\": \"-79.383\",\r\n \"latitude\": \"43.653\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/canadaeast\",\r\n \"name\": \"canadaeast\",\r\n \"displayName\": \"Canada East\",\r\n \"longitude\": \"-71.217\",\r\n \"latitude\": \"46.817\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/uksouth\",\r\n \"name\": \"uksouth\",\r\n \"displayName\": \"UK South\",\r\n \"longitude\": \"-0.799\",\r\n \"latitude\": \"50.941\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/ukwest\",\r\n \"name\": \"ukwest\",\r\n \"displayName\": \"UK West\",\r\n \"longitude\": \"-3.084\",\r\n \"latitude\": \"53.427\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westcentralus\",\r\n \"name\": \"westcentralus\",\r\n \"displayName\": \"West Central US\",\r\n \"longitude\": \"-110.234\",\r\n \"latitude\": \"40.890\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westus2\",\r\n \"name\": \"westus2\",\r\n \"displayName\": \"West US 2\",\r\n \"longitude\": \"-119.852\",\r\n \"latitude\": \"47.233\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/koreacentral\",\r\n \"name\": \"koreacentral\",\r\n \"displayName\": \"Korea Central\",\r\n \"longitude\": \"126.9780\",\r\n \"latitude\": \"37.5665\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/koreasouth\",\r\n \"name\": \"koreasouth\",\r\n \"displayName\": \"Korea South\",\r\n \"longitude\": \"129.0756\",\r\n \"latitude\": \"35.1796\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/francecentral\",\r\n \"name\": \"francecentral\",\r\n \"displayName\": \"France Central\",\r\n \"longitude\": \"2.3730\",\r\n \"latitude\": \"46.3772\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/francesouth\",\r\n \"name\": \"francesouth\",\r\n \"displayName\": \"France South\",\r\n \"longitude\": \"2.1972\",\r\n \"latitude\": \"43.8345\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiacentral\",\r\n \"name\": \"australiacentral\",\r\n \"displayName\": \"Australia Central\",\r\n \"longitude\": \"149.1244\",\r\n \"latitude\": \"-35.3075\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiacentral2\",\r\n \"name\": \"australiacentral2\",\r\n \"displayName\": \"Australia Central 2\",\r\n \"longitude\": \"149.1244\",\r\n \"latitude\": \"-35.3075\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "5269" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-request-id": [ - "d01b6f03-9457-4e9d-a52c-ba8ee1112b5c" + "aab151fc-e6eb-4543-a0e9-6f3610b3de59" ], "x-ms-correlation-request-id": [ - "d01b6f03-9457-4e9d-a52c-ba8ee1112b5c" + "aab151fc-e6eb-4543-a0e9-6f3610b3de59" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124256Z:d01b6f03-9457-4e9d-a52c-ba8ee1112b5c" + "WESTINDIA:20210418T220418Z:aab151fc-e6eb-4543-a0e9-6f3610b3de59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,59 +50,59 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:42:56 GMT" + "Sun, 18 Apr 2021 22:04:17 GMT" + ], + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG106\",\r\n \"name\": \"recRG106\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L2xvY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG106/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork106?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTA2P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4abe2db-af9c-4a04-bcaf-e5ea9abd2d1f" + "d256ef46-54e5-406c-b1e0-151dd2e6f662" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Internal.Subscriptions.SubscriptionClient/4.1.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastasia\",\r\n \"name\": \"eastasia\",\r\n \"displayName\": \"East Asia\",\r\n \"longitude\": \"114.188\",\r\n \"latitude\": \"22.267\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southeastasia\",\r\n \"name\": \"southeastasia\",\r\n \"displayName\": \"Southeast Asia\",\r\n \"longitude\": \"103.833\",\r\n \"latitude\": \"1.283\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/centralus\",\r\n \"name\": \"centralus\",\r\n \"displayName\": \"Central US\",\r\n \"longitude\": \"-93.6208\",\r\n \"latitude\": \"41.5908\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastus\",\r\n \"name\": \"eastus\",\r\n \"displayName\": \"East US\",\r\n \"longitude\": \"-79.8164\",\r\n \"latitude\": \"37.3719\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastus2\",\r\n \"name\": \"eastus2\",\r\n \"displayName\": \"East US 2\",\r\n \"longitude\": \"-78.3889\",\r\n \"latitude\": \"36.6681\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westus\",\r\n \"name\": \"westus\",\r\n \"displayName\": \"West US\",\r\n \"longitude\": \"-122.417\",\r\n \"latitude\": \"37.783\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/northcentralus\",\r\n \"name\": \"northcentralus\",\r\n \"displayName\": \"North Central US\",\r\n \"longitude\": \"-87.6278\",\r\n \"latitude\": \"41.8819\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southcentralus\",\r\n \"name\": \"southcentralus\",\r\n \"displayName\": \"South Central US\",\r\n \"longitude\": \"-98.5\",\r\n \"latitude\": \"29.4167\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/northeurope\",\r\n \"name\": \"northeurope\",\r\n \"displayName\": \"North Europe\",\r\n \"longitude\": \"-6.2597\",\r\n \"latitude\": \"53.3478\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westeurope\",\r\n \"name\": \"westeurope\",\r\n \"displayName\": \"West Europe\",\r\n \"longitude\": \"4.9\",\r\n \"latitude\": \"52.3667\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/japanwest\",\r\n \"name\": \"japanwest\",\r\n \"displayName\": \"Japan West\",\r\n \"longitude\": \"135.5022\",\r\n \"latitude\": \"34.6939\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/japaneast\",\r\n \"name\": \"japaneast\",\r\n \"displayName\": \"Japan East\",\r\n \"longitude\": \"139.77\",\r\n \"latitude\": \"35.68\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/brazilsouth\",\r\n \"name\": \"brazilsouth\",\r\n \"displayName\": \"Brazil South\",\r\n \"longitude\": \"-46.633\",\r\n \"latitude\": \"-23.55\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiaeast\",\r\n \"name\": \"australiaeast\",\r\n \"displayName\": \"Australia East\",\r\n \"longitude\": \"151.2094\",\r\n \"latitude\": \"-33.86\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiasoutheast\",\r\n \"name\": \"australiasoutheast\",\r\n \"displayName\": \"Australia Southeast\",\r\n \"longitude\": \"144.9631\",\r\n \"latitude\": \"-37.8136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southindia\",\r\n \"name\": \"southindia\",\r\n \"displayName\": \"South India\",\r\n \"longitude\": \"80.1636\",\r\n \"latitude\": \"12.9822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/centralindia\",\r\n \"name\": \"centralindia\",\r\n \"displayName\": \"Central India\",\r\n \"longitude\": \"73.9197\",\r\n \"latitude\": \"18.5822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westindia\",\r\n \"name\": \"westindia\",\r\n \"displayName\": \"West India\",\r\n \"longitude\": \"72.868\",\r\n \"latitude\": \"19.088\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/canadacentral\",\r\n \"name\": \"canadacentral\",\r\n \"displayName\": \"Canada Central\",\r\n \"longitude\": \"-79.383\",\r\n \"latitude\": \"43.653\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/canadaeast\",\r\n \"name\": \"canadaeast\",\r\n \"displayName\": \"Canada East\",\r\n \"longitude\": \"-71.217\",\r\n \"latitude\": \"46.817\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/uksouth\",\r\n \"name\": \"uksouth\",\r\n \"displayName\": \"UK South\",\r\n \"longitude\": \"-0.799\",\r\n \"latitude\": \"50.941\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/ukwest\",\r\n \"name\": \"ukwest\",\r\n \"displayName\": \"UK West\",\r\n \"longitude\": \"-3.084\",\r\n \"latitude\": \"53.427\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westcentralus\",\r\n \"name\": \"westcentralus\",\r\n \"displayName\": \"West Central US\",\r\n \"longitude\": \"-110.234\",\r\n \"latitude\": \"40.890\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westus2\",\r\n \"name\": \"westus2\",\r\n \"displayName\": \"West US 2\",\r\n \"longitude\": \"-119.852\",\r\n \"latitude\": \"47.233\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/koreacentral\",\r\n \"name\": \"koreacentral\",\r\n \"displayName\": \"Korea Central\",\r\n \"longitude\": \"126.9780\",\r\n \"latitude\": \"37.5665\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/koreasouth\",\r\n \"name\": \"koreasouth\",\r\n \"displayName\": \"Korea South\",\r\n \"longitude\": \"129.0756\",\r\n \"latitude\": \"35.1796\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/francecentral\",\r\n \"name\": \"francecentral\",\r\n \"displayName\": \"France Central\",\r\n \"longitude\": \"2.3730\",\r\n \"latitude\": \"46.3772\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/francesouth\",\r\n \"name\": \"francesouth\",\r\n \"displayName\": \"France South\",\r\n \"longitude\": \"2.1972\",\r\n \"latitude\": \"43.8345\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiacentral\",\r\n \"name\": \"australiacentral\",\r\n \"displayName\": \"Australia Central\",\r\n \"longitude\": \"149.1244\",\r\n \"latitude\": \"-35.3075\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiacentral2\",\r\n \"name\": \"australiacentral2\",\r\n \"displayName\": \"Australia Central 2\",\r\n \"longitude\": \"149.1244\",\r\n \"latitude\": \"-35.3075\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5269" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "92ce9a08-b07c-4316-af1b-197d5b06884c" + "b065f60d-9351-4a67-98b9-0ae22bf5481d" ], "x-ms-correlation-request-id": [ - "92ce9a08-b07c-4316-af1b-197d5b06884c" + "b065f60d-9351-4a67-98b9-0ae22bf5481d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124302Z:92ce9a08-b07c-4316-af1b-197d5b06884c" + "WESTINDIA:20210418T220439Z:b065f60d-9351-4a67-98b9-0ae22bf5481d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,299 +110,342 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:01 GMT" + "Sun, 18 Apr 2021 22:04:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "235" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/A2ARecoveryNetwork106' under resource group 'recRG106' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L2xvY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG106/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork106?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTA2P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0e124c7-a2a0-43f8-b893-14e10779600f" - ], - "accept-language": [ - "en-US" + "d256ef46-54e5-406c-b1e0-151dd2e6f662" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Internal.Subscriptions.SubscriptionClient/4.1.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastasia\",\r\n \"name\": \"eastasia\",\r\n \"displayName\": \"East Asia\",\r\n \"longitude\": \"114.188\",\r\n \"latitude\": \"22.267\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southeastasia\",\r\n \"name\": \"southeastasia\",\r\n \"displayName\": \"Southeast Asia\",\r\n \"longitude\": \"103.833\",\r\n \"latitude\": \"1.283\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/centralus\",\r\n \"name\": \"centralus\",\r\n \"displayName\": \"Central US\",\r\n \"longitude\": \"-93.6208\",\r\n \"latitude\": \"41.5908\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastus\",\r\n \"name\": \"eastus\",\r\n \"displayName\": \"East US\",\r\n \"longitude\": \"-79.8164\",\r\n \"latitude\": \"37.3719\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastus2\",\r\n \"name\": \"eastus2\",\r\n \"displayName\": \"East US 2\",\r\n \"longitude\": \"-78.3889\",\r\n \"latitude\": \"36.6681\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westus\",\r\n \"name\": \"westus\",\r\n \"displayName\": \"West US\",\r\n \"longitude\": \"-122.417\",\r\n \"latitude\": \"37.783\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/northcentralus\",\r\n \"name\": \"northcentralus\",\r\n \"displayName\": \"North Central US\",\r\n \"longitude\": \"-87.6278\",\r\n \"latitude\": \"41.8819\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southcentralus\",\r\n \"name\": \"southcentralus\",\r\n \"displayName\": \"South Central US\",\r\n \"longitude\": \"-98.5\",\r\n \"latitude\": \"29.4167\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/northeurope\",\r\n \"name\": \"northeurope\",\r\n \"displayName\": \"North Europe\",\r\n \"longitude\": \"-6.2597\",\r\n \"latitude\": \"53.3478\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westeurope\",\r\n \"name\": \"westeurope\",\r\n \"displayName\": \"West Europe\",\r\n \"longitude\": \"4.9\",\r\n \"latitude\": \"52.3667\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/japanwest\",\r\n \"name\": \"japanwest\",\r\n \"displayName\": \"Japan West\",\r\n \"longitude\": \"135.5022\",\r\n \"latitude\": \"34.6939\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/japaneast\",\r\n \"name\": \"japaneast\",\r\n \"displayName\": \"Japan East\",\r\n \"longitude\": \"139.77\",\r\n \"latitude\": \"35.68\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/brazilsouth\",\r\n \"name\": \"brazilsouth\",\r\n \"displayName\": \"Brazil South\",\r\n \"longitude\": \"-46.633\",\r\n \"latitude\": \"-23.55\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiaeast\",\r\n \"name\": \"australiaeast\",\r\n \"displayName\": \"Australia East\",\r\n \"longitude\": \"151.2094\",\r\n \"latitude\": \"-33.86\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiasoutheast\",\r\n \"name\": \"australiasoutheast\",\r\n \"displayName\": \"Australia Southeast\",\r\n \"longitude\": \"144.9631\",\r\n \"latitude\": \"-37.8136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southindia\",\r\n \"name\": \"southindia\",\r\n \"displayName\": \"South India\",\r\n \"longitude\": \"80.1636\",\r\n \"latitude\": \"12.9822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/centralindia\",\r\n \"name\": \"centralindia\",\r\n \"displayName\": \"Central India\",\r\n \"longitude\": \"73.9197\",\r\n \"latitude\": \"18.5822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westindia\",\r\n \"name\": \"westindia\",\r\n \"displayName\": \"West India\",\r\n \"longitude\": \"72.868\",\r\n \"latitude\": \"19.088\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/canadacentral\",\r\n \"name\": \"canadacentral\",\r\n \"displayName\": \"Canada Central\",\r\n \"longitude\": \"-79.383\",\r\n \"latitude\": \"43.653\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/canadaeast\",\r\n \"name\": \"canadaeast\",\r\n \"displayName\": \"Canada East\",\r\n \"longitude\": \"-71.217\",\r\n \"latitude\": \"46.817\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/uksouth\",\r\n \"name\": \"uksouth\",\r\n \"displayName\": \"UK South\",\r\n \"longitude\": \"-0.799\",\r\n \"latitude\": \"50.941\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/ukwest\",\r\n \"name\": \"ukwest\",\r\n \"displayName\": \"UK West\",\r\n \"longitude\": \"-3.084\",\r\n \"latitude\": \"53.427\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westcentralus\",\r\n \"name\": \"westcentralus\",\r\n \"displayName\": \"West Central US\",\r\n \"longitude\": \"-110.234\",\r\n \"latitude\": \"40.890\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westus2\",\r\n \"name\": \"westus2\",\r\n \"displayName\": \"West US 2\",\r\n \"longitude\": \"-119.852\",\r\n \"latitude\": \"47.233\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/koreacentral\",\r\n \"name\": \"koreacentral\",\r\n \"displayName\": \"Korea Central\",\r\n \"longitude\": \"126.9780\",\r\n \"latitude\": \"37.5665\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/koreasouth\",\r\n \"name\": \"koreasouth\",\r\n \"displayName\": \"Korea South\",\r\n \"longitude\": \"129.0756\",\r\n \"latitude\": \"35.1796\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/francecentral\",\r\n \"name\": \"francecentral\",\r\n \"displayName\": \"France Central\",\r\n \"longitude\": \"2.3730\",\r\n \"latitude\": \"46.3772\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/francesouth\",\r\n \"name\": \"francesouth\",\r\n \"displayName\": \"France South\",\r\n \"longitude\": \"2.1972\",\r\n \"latitude\": \"43.8345\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiacentral\",\r\n \"name\": \"australiacentral\",\r\n \"displayName\": \"Australia Central\",\r\n \"longitude\": \"149.1244\",\r\n \"latitude\": \"-35.3075\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiacentral2\",\r\n \"name\": \"australiacentral2\",\r\n \"displayName\": \"Australia Central 2\",\r\n \"longitude\": \"149.1244\",\r\n \"latitude\": \"-35.3075\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5269" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "ETag": [ + "W/\"3692779c-c531-464c-ba0b-2311d1b5e499\"" ], "x-ms-request-id": [ - "f7b40455-451c-4b50-8cf9-0cc82dcbd413" + "69fe19ba-264e-4200-9b61-3f5fc54aac4b" ], "x-ms-correlation-request-id": [ - "f7b40455-451c-4b50-8cf9-0cc82dcbd413" + "ff875750-7977-4328-8a14-0ee6e5488aa7" ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124306Z:f7b40455-451c-4b50-8cf9-0cc82dcbd413" + "x-ms-arm-service-request-id": [ + "377b8a9f-2872-4f0b-a05d-6dd81540ee90" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220454Z:ff875750-7977-4328-8a14-0ee6e5488aa7" + ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:06 GMT" + "Sun, 18 Apr 2021 22:04:53 GMT" + ], + "Content-Length": [ + "1306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork106\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG106/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork106\",\r\n \"etag\": \"W/\\\"3692779c-c531-464c-ba0b-2311d1b5e499\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"662c1c89-ca06-4c2f-a15a-517962b6ba91\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG106/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork106/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"3692779c-c531-464c-ba0b-2311d1b5e499\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L2xvY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG106/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork106?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTA2P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc0203c6-95a9-4b57-b370-f2071c7e66cf" + "d256ef46-54e5-406c-b1e0-151dd2e6f662" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Internal.Subscriptions.SubscriptionClient/4.1.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastasia\",\r\n \"name\": \"eastasia\",\r\n \"displayName\": \"East Asia\",\r\n \"longitude\": \"114.188\",\r\n \"latitude\": \"22.267\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southeastasia\",\r\n \"name\": \"southeastasia\",\r\n \"displayName\": \"Southeast Asia\",\r\n \"longitude\": \"103.833\",\r\n \"latitude\": \"1.283\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/centralus\",\r\n \"name\": \"centralus\",\r\n \"displayName\": \"Central US\",\r\n \"longitude\": \"-93.6208\",\r\n \"latitude\": \"41.5908\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastus\",\r\n \"name\": \"eastus\",\r\n \"displayName\": \"East US\",\r\n \"longitude\": \"-79.8164\",\r\n \"latitude\": \"37.3719\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastus2\",\r\n \"name\": \"eastus2\",\r\n \"displayName\": \"East US 2\",\r\n \"longitude\": \"-78.3889\",\r\n \"latitude\": \"36.6681\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westus\",\r\n \"name\": \"westus\",\r\n \"displayName\": \"West US\",\r\n \"longitude\": \"-122.417\",\r\n \"latitude\": \"37.783\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/northcentralus\",\r\n \"name\": \"northcentralus\",\r\n \"displayName\": \"North Central US\",\r\n \"longitude\": \"-87.6278\",\r\n \"latitude\": \"41.8819\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southcentralus\",\r\n \"name\": \"southcentralus\",\r\n \"displayName\": \"South Central US\",\r\n \"longitude\": \"-98.5\",\r\n \"latitude\": \"29.4167\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/northeurope\",\r\n \"name\": \"northeurope\",\r\n \"displayName\": \"North Europe\",\r\n \"longitude\": \"-6.2597\",\r\n \"latitude\": \"53.3478\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westeurope\",\r\n \"name\": \"westeurope\",\r\n \"displayName\": \"West Europe\",\r\n \"longitude\": \"4.9\",\r\n \"latitude\": \"52.3667\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/japanwest\",\r\n \"name\": \"japanwest\",\r\n \"displayName\": \"Japan West\",\r\n \"longitude\": \"135.5022\",\r\n \"latitude\": \"34.6939\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/japaneast\",\r\n \"name\": \"japaneast\",\r\n \"displayName\": \"Japan East\",\r\n \"longitude\": \"139.77\",\r\n \"latitude\": \"35.68\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/brazilsouth\",\r\n \"name\": \"brazilsouth\",\r\n \"displayName\": \"Brazil South\",\r\n \"longitude\": \"-46.633\",\r\n \"latitude\": \"-23.55\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiaeast\",\r\n \"name\": \"australiaeast\",\r\n \"displayName\": \"Australia East\",\r\n \"longitude\": \"151.2094\",\r\n \"latitude\": \"-33.86\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiasoutheast\",\r\n \"name\": \"australiasoutheast\",\r\n \"displayName\": \"Australia Southeast\",\r\n \"longitude\": \"144.9631\",\r\n \"latitude\": \"-37.8136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southindia\",\r\n \"name\": \"southindia\",\r\n \"displayName\": \"South India\",\r\n \"longitude\": \"80.1636\",\r\n \"latitude\": \"12.9822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/centralindia\",\r\n \"name\": \"centralindia\",\r\n \"displayName\": \"Central India\",\r\n \"longitude\": \"73.9197\",\r\n \"latitude\": \"18.5822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westindia\",\r\n \"name\": \"westindia\",\r\n \"displayName\": \"West India\",\r\n \"longitude\": \"72.868\",\r\n \"latitude\": \"19.088\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/canadacentral\",\r\n \"name\": \"canadacentral\",\r\n \"displayName\": \"Canada Central\",\r\n \"longitude\": \"-79.383\",\r\n \"latitude\": \"43.653\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/canadaeast\",\r\n \"name\": \"canadaeast\",\r\n \"displayName\": \"Canada East\",\r\n \"longitude\": \"-71.217\",\r\n \"latitude\": \"46.817\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/uksouth\",\r\n \"name\": \"uksouth\",\r\n \"displayName\": \"UK South\",\r\n \"longitude\": \"-0.799\",\r\n \"latitude\": \"50.941\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/ukwest\",\r\n \"name\": \"ukwest\",\r\n \"displayName\": \"UK West\",\r\n \"longitude\": \"-3.084\",\r\n \"latitude\": \"53.427\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westcentralus\",\r\n \"name\": \"westcentralus\",\r\n \"displayName\": \"West Central US\",\r\n \"longitude\": \"-110.234\",\r\n \"latitude\": \"40.890\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westus2\",\r\n \"name\": \"westus2\",\r\n \"displayName\": \"West US 2\",\r\n \"longitude\": \"-119.852\",\r\n \"latitude\": \"47.233\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/koreacentral\",\r\n \"name\": \"koreacentral\",\r\n \"displayName\": \"Korea Central\",\r\n \"longitude\": \"126.9780\",\r\n \"latitude\": \"37.5665\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/koreasouth\",\r\n \"name\": \"koreasouth\",\r\n \"displayName\": \"Korea South\",\r\n \"longitude\": \"129.0756\",\r\n \"latitude\": \"35.1796\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/francecentral\",\r\n \"name\": \"francecentral\",\r\n \"displayName\": \"France Central\",\r\n \"longitude\": \"2.3730\",\r\n \"latitude\": \"46.3772\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/francesouth\",\r\n \"name\": \"francesouth\",\r\n \"displayName\": \"France South\",\r\n \"longitude\": \"2.1972\",\r\n \"latitude\": \"43.8345\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiacentral\",\r\n \"name\": \"australiacentral\",\r\n \"displayName\": \"Australia Central\",\r\n \"longitude\": \"149.1244\",\r\n \"latitude\": \"-35.3075\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiacentral2\",\r\n \"name\": \"australiacentral2\",\r\n \"displayName\": \"Australia Central 2\",\r\n \"longitude\": \"149.1244\",\r\n \"latitude\": \"-35.3075\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5269" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "ETag": [ + "W/\"3692779c-c531-464c-ba0b-2311d1b5e499\"" ], "x-ms-request-id": [ - "5d037424-a85e-43c6-80ad-0a5ef0f43bca" + "35a40b2b-5cbe-4124-9357-5446957dafb7" ], "x-ms-correlation-request-id": [ - "5d037424-a85e-43c6-80ad-0a5ef0f43bca" + "f57bec0a-c987-4c2a-8f09-ae3630ae904c" ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124310Z:5d037424-a85e-43c6-80ad-0a5ef0f43bca" + "x-ms-arm-service-request-id": [ + "4aaeef4d-bed0-4652-a9aa-03b13cac5be2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220454Z:f57bec0a-c987-4c2a-8f09-ae3630ae904c" + ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:10 GMT" + "Sun, 18 Apr 2021 22:04:54 GMT" + ], + "Content-Length": [ + "1306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork106\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG106/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork106\",\r\n \"etag\": \"W/\\\"3692779c-c531-464c-ba0b-2311d1b5e499\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"662c1c89-ca06-4c2f-a15a-517962b6ba91\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG106/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork106/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"3692779c-c531-464c-ba0b-2311d1b5e499\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG106/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork106?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTA2P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"frontendSubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6b3d90dc-2d31-4b2b-95d6-5e8ad912487d" + "d256ef46-54e5-406c-b1e0-151dd2e6f662" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorization\": {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/virtualMachines\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/endpoints\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/subnets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/patch\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/baseline\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/antimalware\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SiteRecovery\",\r\n \"namespace\": \"Microsoft.SiteRecovery\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SiteRecoveryVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/backupLongTermRetentionVaults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/workers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/AppDynamics.APM\",\r\n \"namespace\": \"AppDynamics.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Aspera.Transfers\",\r\n \"namespace\": \"Aspera.Transfers\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Auth0.Cloud\",\r\n \"namespace\": \"Auth0.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-23\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Citrix.Cloud\",\r\n \"namespace\": \"Citrix.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Cloudyn.Analytics\",\r\n \"namespace\": \"Cloudyn.Analytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.DynatraceSaaS\",\r\n \"namespace\": \"Dynatrace.DynatraceSaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-27\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.Ruxit\",\r\n \"namespace\": \"Dynatrace.Ruxit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-07\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Lombiq.DotNest\",\r\n \"namespace\": \"Lombiq.DotNest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BillingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Invoices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContentModerator\",\r\n \"namespace\": \"Microsoft.ContentModerator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CustomerInsights\",\r\n \"namespace\": \"Microsoft.CustomerInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"38c77d00-5fcb-4cce-9d93-af4738258e3c\",\r\n \"roleDefinitionId\": \"E006F9C7-F333-477C-8AD6-1F3A9FE87F55\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hubs/profiles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/interactions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/authorizationPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors/mappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/kpi\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/views\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/links\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roleAssignments\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/widgetTypes\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/suggestTypeSchema\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/connectors\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningExperimentation\",\r\n \"namespace\": \"Microsoft.MachineLearningExperimentation\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningCompute\",\r\n \"namespace\": \"Microsoft.MachineLearningCompute\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operationalizationClusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningModelManagement\",\r\n \"namespace\": \"Microsoft.MachineLearningModelManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/nuubit.nextgencdn\",\r\n \"namespace\": \"nuubit.nextgencdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RevAPM.MobileCDN\",\r\n \"namespace\": \"RevAPM.MobileCDN\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-24\",\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/TrendMicro.DeepSecurity\",\r\n \"namespace\": \"TrendMicro.DeepSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "459189" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "692" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "Retry-After": [ + "3" ], "x-ms-request-id": [ - "c124e788-44b1-499d-98bb-7c09ff81e9c9" + "62847271-9859-4d69-9a2e-ac66cd3674b9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westcentralus/operations/62847271-9859-4d69-9a2e-ac66cd3674b9?api-version=2020-11-01" ], "x-ms-correlation-request-id": [ - "c124e788-44b1-499d-98bb-7c09ff81e9c9" + "760db9c2-6eb8-4efb-ab0b-9eeddfe7b1b5" ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124259Z:c124e788-44b1-499d-98bb-7c09ff81e9c9" + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "503c6b07-ddd9-4b34-a5dd-92dfd196fc0e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220450Z:760db9c2-6eb8-4efb-ab0b-9eeddfe7b1b5" + ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:42:58 GMT" + "Sun, 18 Apr 2021 22:04:50 GMT" + ], + "Content-Length": [ + "1304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork106\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG106/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork106\",\r\n \"etag\": \"W/\\\"4d275096-5996-43ea-98ab-1daff5465dcd\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"662c1c89-ca06-4c2f-a15a-517962b6ba91\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG106/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork106/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"4d275096-5996-43ea-98ab-1daff5465dcd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westcentralus/operations/62847271-9859-4d69-9a2e-ac66cd3674b9?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzYyODQ3MjcxLTk4NTktNGQ2OS05YTJlLWFjNjZjZDM2NzRiOT9hcGktdmVyc2lvbj0yMDIwLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cad4ef52-3b38-41d5-a356-6e594780d21c" - ], - "accept-language": [ - "en-US" + "d256ef46-54e5-406c-b1e0-151dd2e6f662" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorization\": {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/virtualMachines\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/endpoints\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/subnets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/patch\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/baseline\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/antimalware\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SiteRecovery\",\r\n \"namespace\": \"Microsoft.SiteRecovery\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SiteRecoveryVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/backupLongTermRetentionVaults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/workers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/AppDynamics.APM\",\r\n \"namespace\": \"AppDynamics.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Aspera.Transfers\",\r\n \"namespace\": \"Aspera.Transfers\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Auth0.Cloud\",\r\n \"namespace\": \"Auth0.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-23\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Citrix.Cloud\",\r\n \"namespace\": \"Citrix.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Cloudyn.Analytics\",\r\n \"namespace\": \"Cloudyn.Analytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.DynatraceSaaS\",\r\n \"namespace\": \"Dynatrace.DynatraceSaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-27\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.Ruxit\",\r\n \"namespace\": \"Dynatrace.Ruxit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-07\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Lombiq.DotNest\",\r\n \"namespace\": \"Lombiq.DotNest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BillingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Invoices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContentModerator\",\r\n \"namespace\": \"Microsoft.ContentModerator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CustomerInsights\",\r\n \"namespace\": \"Microsoft.CustomerInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"38c77d00-5fcb-4cce-9d93-af4738258e3c\",\r\n \"roleDefinitionId\": \"E006F9C7-F333-477C-8AD6-1F3A9FE87F55\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hubs/profiles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/interactions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/authorizationPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors/mappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/kpi\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/views\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/links\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roleAssignments\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/widgetTypes\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/suggestTypeSchema\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/connectors\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningExperimentation\",\r\n \"namespace\": \"Microsoft.MachineLearningExperimentation\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningCompute\",\r\n \"namespace\": \"Microsoft.MachineLearningCompute\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operationalizationClusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningModelManagement\",\r\n \"namespace\": \"Microsoft.MachineLearningModelManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/nuubit.nextgencdn\",\r\n \"namespace\": \"nuubit.nextgencdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RevAPM.MobileCDN\",\r\n \"namespace\": \"RevAPM.MobileCDN\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-24\",\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/TrendMicro.DeepSecurity\",\r\n \"namespace\": \"TrendMicro.DeepSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "459189" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], "x-ms-request-id": [ - "d79c344b-30e0-47d2-9a06-f27a86ed08bc" + "abc9ff8e-0f24-4162-b97d-173939ba785c" ], "x-ms-correlation-request-id": [ - "d79c344b-30e0-47d2-9a06-f27a86ed08bc" + "e3054f6a-e689-4dc1-9c1d-171bec92c0c3" ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124301Z:d79c344b-30e0-47d2-9a06-f27a86ed08bc" + "x-ms-arm-service-request-id": [ + "d3d35916-ddb7-42b7-983c-67e299c6fd63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220454Z:e3054f6a-e689-4dc1-9c1d-171bec92c0c3" + ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:00 GMT" + "Sun, 18 Apr 2021 22:04:53 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Compute/images/RHEL?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9pbWFnZXMvUkhFTD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c19187db-41cd-4142-83a7-01f41a4b80f0" + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorization\": {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/virtualMachines\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/endpoints\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/subnets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/patch\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/baseline\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/antimalware\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SiteRecovery\",\r\n \"namespace\": \"Microsoft.SiteRecovery\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SiteRecoveryVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/backupLongTermRetentionVaults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/workers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/AppDynamics.APM\",\r\n \"namespace\": \"AppDynamics.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Aspera.Transfers\",\r\n \"namespace\": \"Aspera.Transfers\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Auth0.Cloud\",\r\n \"namespace\": \"Auth0.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-23\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Citrix.Cloud\",\r\n \"namespace\": \"Citrix.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Cloudyn.Analytics\",\r\n \"namespace\": \"Cloudyn.Analytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.DynatraceSaaS\",\r\n \"namespace\": \"Dynatrace.DynatraceSaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-27\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.Ruxit\",\r\n \"namespace\": \"Dynatrace.Ruxit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-07\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Lombiq.DotNest\",\r\n \"namespace\": \"Lombiq.DotNest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BillingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Invoices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContentModerator\",\r\n \"namespace\": \"Microsoft.ContentModerator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CustomerInsights\",\r\n \"namespace\": \"Microsoft.CustomerInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"38c77d00-5fcb-4cce-9d93-af4738258e3c\",\r\n \"roleDefinitionId\": \"E006F9C7-F333-477C-8AD6-1F3A9FE87F55\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hubs/profiles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/interactions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/authorizationPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors/mappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/kpi\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/views\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/links\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roleAssignments\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/widgetTypes\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/suggestTypeSchema\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/connectors\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningExperimentation\",\r\n \"namespace\": \"Microsoft.MachineLearningExperimentation\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningCompute\",\r\n \"namespace\": \"Microsoft.MachineLearningCompute\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operationalizationClusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningModelManagement\",\r\n \"namespace\": \"Microsoft.MachineLearningModelManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/nuubit.nextgencdn\",\r\n \"namespace\": \"nuubit.nextgencdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RevAPM.MobileCDN\",\r\n \"namespace\": \"RevAPM.MobileCDN\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-24\",\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/TrendMicro.DeepSecurity\",\r\n \"namespace\": \"TrendMicro.DeepSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "459189" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "1233b722-6cf1-4065-b7dd-34438bc80c5f" + "6965717f-6551-482a-9c2e-6e334249c5c0" ], "x-ms-correlation-request-id": [ - "1233b722-6cf1-4065-b7dd-34438bc80c5f" + "6965717f-6551-482a-9c2e-6e334249c5c0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124303Z:1233b722-6cf1-4065-b7dd-34438bc80c5f" + "WESTINDIA:20210418T220455Z:6965717f-6551-482a-9c2e-6e334249c5c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -411,59 +453,59 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:03 GMT" + "Sun, 18 Apr 2021 22:04:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "100" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM106' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e00d1bbc-d48c-499a-aef1-93e7555ea822" + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorization\": {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/virtualMachines\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/endpoints\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/subnets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/patch\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/baseline\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/antimalware\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SiteRecovery\",\r\n \"namespace\": \"Microsoft.SiteRecovery\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SiteRecoveryVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/backupLongTermRetentionVaults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/workers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/AppDynamics.APM\",\r\n \"namespace\": \"AppDynamics.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Aspera.Transfers\",\r\n \"namespace\": \"Aspera.Transfers\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Auth0.Cloud\",\r\n \"namespace\": \"Auth0.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-23\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Citrix.Cloud\",\r\n \"namespace\": \"Citrix.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Cloudyn.Analytics\",\r\n \"namespace\": \"Cloudyn.Analytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.DynatraceSaaS\",\r\n \"namespace\": \"Dynatrace.DynatraceSaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-27\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.Ruxit\",\r\n \"namespace\": \"Dynatrace.Ruxit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-07\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Lombiq.DotNest\",\r\n \"namespace\": \"Lombiq.DotNest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BillingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Invoices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContentModerator\",\r\n \"namespace\": \"Microsoft.ContentModerator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CustomerInsights\",\r\n \"namespace\": \"Microsoft.CustomerInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"38c77d00-5fcb-4cce-9d93-af4738258e3c\",\r\n \"roleDefinitionId\": \"E006F9C7-F333-477C-8AD6-1F3A9FE87F55\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hubs/profiles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/interactions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/authorizationPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors/mappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/kpi\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/views\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/links\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roleAssignments\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/widgetTypes\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/suggestTypeSchema\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/connectors\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningExperimentation\",\r\n \"namespace\": \"Microsoft.MachineLearningExperimentation\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningCompute\",\r\n \"namespace\": \"Microsoft.MachineLearningCompute\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operationalizationClusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningModelManagement\",\r\n \"namespace\": \"Microsoft.MachineLearningModelManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/nuubit.nextgencdn\",\r\n \"namespace\": \"nuubit.nextgencdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RevAPM.MobileCDN\",\r\n \"namespace\": \"RevAPM.MobileCDN\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-24\",\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/TrendMicro.DeepSecurity\",\r\n \"namespace\": \"TrendMicro.DeepSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "459189" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "11994" ], "x-ms-request-id": [ - "77a80eba-d366-4266-89fe-324dd87a0773" + "838b296e-c275-4636-b952-80a9a0c51c0a" ], "x-ms-correlation-request-id": [ - "77a80eba-d366-4266-89fe-324dd87a0773" + "838b296e-c275-4636-b952-80a9a0c51c0a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124305Z:77a80eba-d366-4266-89fe-324dd87a0773" + "WESTINDIA:20210418T220455Z:838b296e-c275-4636-b952-80a9a0c51c0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -471,59 +513,59 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:05 GMT" + "Sun, 18 Apr 2021 22:04:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "59552" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n },\r\n {\r\n \"applicationId\": \"579d9c9d-4c83-4efc-8124-7eba65ed3356\",\r\n \"roleDefinitionId\": \"8c99c4ce-d744-4597-a2f0-0a0044d67560\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotEvictionRates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotPriceHistory\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/sharedGalleries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"diskAccesses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roles\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/csoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsVersions\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsFamilies\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/publicIPAddresses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups/capacityReservations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Compute/virtualMachines/a2aVM106?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDY/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c18d3624-d9d4-4c7f-868d-382cedc77445" + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorization\": {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/virtualMachines\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/endpoints\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/subnets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/patch\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/baseline\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/antimalware\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SiteRecovery\",\r\n \"namespace\": \"Microsoft.SiteRecovery\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SiteRecoveryVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/backupLongTermRetentionVaults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/workers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/AppDynamics.APM\",\r\n \"namespace\": \"AppDynamics.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Aspera.Transfers\",\r\n \"namespace\": \"Aspera.Transfers\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Auth0.Cloud\",\r\n \"namespace\": \"Auth0.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-23\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Citrix.Cloud\",\r\n \"namespace\": \"Citrix.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Cloudyn.Analytics\",\r\n \"namespace\": \"Cloudyn.Analytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.DynatraceSaaS\",\r\n \"namespace\": \"Dynatrace.DynatraceSaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-27\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.Ruxit\",\r\n \"namespace\": \"Dynatrace.Ruxit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-07\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Lombiq.DotNest\",\r\n \"namespace\": \"Lombiq.DotNest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BillingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Invoices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContentModerator\",\r\n \"namespace\": \"Microsoft.ContentModerator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CustomerInsights\",\r\n \"namespace\": \"Microsoft.CustomerInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"38c77d00-5fcb-4cce-9d93-af4738258e3c\",\r\n \"roleDefinitionId\": \"E006F9C7-F333-477C-8AD6-1F3A9FE87F55\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hubs/profiles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/interactions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/authorizationPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors/mappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/kpi\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/views\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/links\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roleAssignments\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/widgetTypes\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/suggestTypeSchema\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/connectors\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningExperimentation\",\r\n \"namespace\": \"Microsoft.MachineLearningExperimentation\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningCompute\",\r\n \"namespace\": \"Microsoft.MachineLearningCompute\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operationalizationClusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningModelManagement\",\r\n \"namespace\": \"Microsoft.MachineLearningModelManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/nuubit.nextgencdn\",\r\n \"namespace\": \"nuubit.nextgencdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RevAPM.MobileCDN\",\r\n \"namespace\": \"RevAPM.MobileCDN\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-24\",\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/TrendMicro.DeepSecurity\",\r\n \"namespace\": \"TrendMicro.DeepSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "459189" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "0b888d71-d14e-4360-887d-4bcf14ee7eb0" + "6c00019a-398a-453b-9fd3-22c38d6b5036" ], "x-ms-correlation-request-id": [ - "0b888d71-d14e-4360-887d-4bcf14ee7eb0" + "6c00019a-398a-453b-9fd3-22c38d6b5036" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124307Z:0b888d71-d14e-4360-887d-4bcf14ee7eb0" + "WESTINDIA:20210418T220456Z:6c00019a-398a-453b-9fd3-22c38d6b5036" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -531,179 +573,193 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:07 GMT" + "Sun, 18 Apr 2021 22:04:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "100" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM106' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Compute/virtualMachines/a2aVM106?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDY/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c9fea0c-bfaf-4b53-a3d5-559cee3d72f9" - ], - "accept-language": [ - "en-US" + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorization\": {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/virtualMachines\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/endpoints\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/subnets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/patch\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/baseline\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/antimalware\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SiteRecovery\",\r\n \"namespace\": \"Microsoft.SiteRecovery\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SiteRecoveryVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/backupLongTermRetentionVaults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/workers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/AppDynamics.APM\",\r\n \"namespace\": \"AppDynamics.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Aspera.Transfers\",\r\n \"namespace\": \"Aspera.Transfers\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Auth0.Cloud\",\r\n \"namespace\": \"Auth0.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-23\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Citrix.Cloud\",\r\n \"namespace\": \"Citrix.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Cloudyn.Analytics\",\r\n \"namespace\": \"Cloudyn.Analytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.DynatraceSaaS\",\r\n \"namespace\": \"Dynatrace.DynatraceSaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-27\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.Ruxit\",\r\n \"namespace\": \"Dynatrace.Ruxit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-07\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Lombiq.DotNest\",\r\n \"namespace\": \"Lombiq.DotNest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BillingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Invoices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContentModerator\",\r\n \"namespace\": \"Microsoft.ContentModerator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CustomerInsights\",\r\n \"namespace\": \"Microsoft.CustomerInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"38c77d00-5fcb-4cce-9d93-af4738258e3c\",\r\n \"roleDefinitionId\": \"E006F9C7-F333-477C-8AD6-1F3A9FE87F55\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hubs/profiles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/interactions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/authorizationPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors/mappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/kpi\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/views\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/links\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roleAssignments\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/widgetTypes\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/suggestTypeSchema\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/connectors\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningExperimentation\",\r\n \"namespace\": \"Microsoft.MachineLearningExperimentation\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningCompute\",\r\n \"namespace\": \"Microsoft.MachineLearningCompute\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operationalizationClusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningModelManagement\",\r\n \"namespace\": \"Microsoft.MachineLearningModelManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/nuubit.nextgencdn\",\r\n \"namespace\": \"nuubit.nextgencdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RevAPM.MobileCDN\",\r\n \"namespace\": \"RevAPM.MobileCDN\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-24\",\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/TrendMicro.DeepSecurity\",\r\n \"namespace\": \"TrendMicro.DeepSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "459189" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31908" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "92cafede-e991-42e5-b3d4-c64bc005a6dd" + "d8a31535-ed45-4d27-bdb1-f8081d659eb6" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" ], "x-ms-correlation-request-id": [ - "92cafede-e991-42e5-b3d4-c64bc005a6dd" + "37b8dfba-b70b-4315-9703-743e39dfd6e5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124309Z:92cafede-e991-42e5-b3d4-c64bc005a6dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTINDIA:20210418T220642Z:37b8dfba-b70b-4315-9703-743e39dfd6e5" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:09 GMT" + "Sun, 18 Apr 2021 22:06:41 GMT" + ], + "Content-Length": [ + "1897" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aVM106\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Compute/virtualMachines/a2aVM106\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"4678a260-6f8b-4c05-b31e-6c7515422abe\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM106_OsDisk_1_772b69d472ea49bcae9a1a4b345faa56\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Compute/disks/a2aVM106_OsDisk_1_772b69d472ea49bcae9a1a4b345faa56\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM106\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkInterfaces/a2aVM106\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Compute/virtualMachines/a2aVM106?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDY/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05be7b1b-1d29-4b7c-8ad8-1620a6ab8b25" + "d97dd97c-f587-4a6a-88c5-fe124e34c91f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorization\": {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/virtualMachines\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/endpoints\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/subnets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/patch\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/baseline\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/antimalware\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SiteRecovery\",\r\n \"namespace\": \"Microsoft.SiteRecovery\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SiteRecoveryVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/backupLongTermRetentionVaults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/workers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/AppDynamics.APM\",\r\n \"namespace\": \"AppDynamics.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Aspera.Transfers\",\r\n \"namespace\": \"Aspera.Transfers\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Auth0.Cloud\",\r\n \"namespace\": \"Auth0.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-23\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Citrix.Cloud\",\r\n \"namespace\": \"Citrix.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Cloudyn.Analytics\",\r\n \"namespace\": \"Cloudyn.Analytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.DynatraceSaaS\",\r\n \"namespace\": \"Dynatrace.DynatraceSaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-27\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.Ruxit\",\r\n \"namespace\": \"Dynatrace.Ruxit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-07\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Lombiq.DotNest\",\r\n \"namespace\": \"Lombiq.DotNest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BillingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Invoices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContentModerator\",\r\n \"namespace\": \"Microsoft.ContentModerator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CustomerInsights\",\r\n \"namespace\": \"Microsoft.CustomerInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"38c77d00-5fcb-4cce-9d93-af4738258e3c\",\r\n \"roleDefinitionId\": \"E006F9C7-F333-477C-8AD6-1F3A9FE87F55\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hubs/profiles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/interactions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/authorizationPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors/mappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/kpi\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/views\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/links\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roleAssignments\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/widgetTypes\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/suggestTypeSchema\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/connectors\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningExperimentation\",\r\n \"namespace\": \"Microsoft.MachineLearningExperimentation\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningCompute\",\r\n \"namespace\": \"Microsoft.MachineLearningCompute\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operationalizationClusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningModelManagement\",\r\n \"namespace\": \"Microsoft.MachineLearningModelManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/nuubit.nextgencdn\",\r\n \"namespace\": \"nuubit.nextgencdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RevAPM.MobileCDN\",\r\n \"namespace\": \"RevAPM.MobileCDN\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-24\",\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/TrendMicro.DeepSecurity\",\r\n \"namespace\": \"TrendMicro.DeepSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "459189" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3994,Microsoft.Compute/LowCostGet30Min;31905" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f6d6d41-a6cd-4f2c-8e46-3d7f69ba8f21" + "db544af8-8b11-4f1d-978a-651ad8c3ef56" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" ], "x-ms-correlation-request-id": [ - "3f6d6d41-a6cd-4f2c-8e46-3d7f69ba8f21" + "cb0a7c5e-5fd5-44c7-851d-1bff579f24a9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124311Z:3f6d6d41-a6cd-4f2c-8e46-3d7f69ba8f21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTINDIA:20210418T220706Z:cb0a7c5e-5fd5-44c7-851d-1bff579f24a9" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:11 GMT" + "Sun, 18 Apr 2021 22:07:06 GMT" + ], + "Content-Length": [ + "1897" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aVM106\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Compute/virtualMachines/a2aVM106\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"4678a260-6f8b-4c05-b31e-6c7515422abe\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM106_OsDisk_1_772b69d472ea49bcae9a1a4b345faa56\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Compute/disks/a2aVM106_OsDisk_1_772b69d472ea49bcae9a1a4b345faa56\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM106\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkInterfaces/a2aVM106\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM106?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNMTA2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e101120d-a2c4-4a64-8d2c-94908724eb66" + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorization\": {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/virtualMachines\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/endpoints\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/subnets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/patch\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/baseline\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/antimalware\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SiteRecovery\",\r\n \"namespace\": \"Microsoft.SiteRecovery\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SiteRecoveryVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/backupLongTermRetentionVaults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/workers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/AppDynamics.APM\",\r\n \"namespace\": \"AppDynamics.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Aspera.Transfers\",\r\n \"namespace\": \"Aspera.Transfers\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Auth0.Cloud\",\r\n \"namespace\": \"Auth0.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-23\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Citrix.Cloud\",\r\n \"namespace\": \"Citrix.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Cloudyn.Analytics\",\r\n \"namespace\": \"Cloudyn.Analytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.DynatraceSaaS\",\r\n \"namespace\": \"Dynatrace.DynatraceSaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-27\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.Ruxit\",\r\n \"namespace\": \"Dynatrace.Ruxit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-07\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Lombiq.DotNest\",\r\n \"namespace\": \"Lombiq.DotNest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BillingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Invoices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContentModerator\",\r\n \"namespace\": \"Microsoft.ContentModerator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CustomerInsights\",\r\n \"namespace\": \"Microsoft.CustomerInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"38c77d00-5fcb-4cce-9d93-af4738258e3c\",\r\n \"roleDefinitionId\": \"E006F9C7-F333-477C-8AD6-1F3A9FE87F55\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hubs/profiles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/interactions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/authorizationPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors/mappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/kpi\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/views\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/links\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roleAssignments\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/widgetTypes\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/suggestTypeSchema\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/connectors\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningExperimentation\",\r\n \"namespace\": \"Microsoft.MachineLearningExperimentation\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningCompute\",\r\n \"namespace\": \"Microsoft.MachineLearningCompute\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operationalizationClusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningModelManagement\",\r\n \"namespace\": \"Microsoft.MachineLearningModelManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/nuubit.nextgencdn\",\r\n \"namespace\": \"nuubit.nextgencdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RevAPM.MobileCDN\",\r\n \"namespace\": \"RevAPM.MobileCDN\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-24\",\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/TrendMicro.DeepSecurity\",\r\n \"namespace\": \"TrendMicro.DeepSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "459189" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "11993" ], "x-ms-request-id": [ - "1325cd82-d775-4897-bdee-d60cb6435a6f" + "38f0d31e-02d3-44b5-9120-8a787058fda2" ], "x-ms-correlation-request-id": [ - "1325cd82-d775-4897-bdee-d60cb6435a6f" + "38f0d31e-02d3-44b5-9120-8a787058fda2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124313Z:1325cd82-d775-4897-bdee-d60cb6435a6f" + "WESTINDIA:20210418T220456Z:38f0d31e-02d3-44b5-9120-8a787058fda2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -711,59 +767,59 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:13 GMT" + "Sun, 18 Apr 2021 22:04:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "100" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM106' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkInterfaces/a2aVM106?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTEwNj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "317d54b4-966e-4948-8025-9b8c0f5c5373" + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "4754" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "eb89fe7c-e911-486e-9e2a-4b29bbc8a02b" + "45872a34-b116-4c52-b270-030edcde8749" ], "x-ms-correlation-request-id": [ - "eb89fe7c-e911-486e-9e2a-4b29bbc8a02b" + "45872a34-b116-4c52-b270-030edcde8749" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124302Z:eb89fe7c-e911-486e-9e2a-4b29bbc8a02b" + "WESTINDIA:20210418T220456Z:45872a34-b116-4c52-b270-030edcde8749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -771,119 +827,126 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:01 GMT" + "Sun, 18 Apr 2021 22:04:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "100" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM106' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkInterfaces/a2aVM106?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTEwNj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1dc0500-5f91-4da6-a8f2-01454c9b7ca8" - ], - "accept-language": [ - "en-US" + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "4754" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "ETag": [ + "W/\"f2c4ac56-e619-469b-ad60-8337daad4e32\"" ], "x-ms-request-id": [ - "234a2832-7305-40a5-8e2f-b8e8e822be38" + "8d4504d2-4c6b-4930-9fe7-428a5ecae51a" ], "x-ms-correlation-request-id": [ - "234a2832-7305-40a5-8e2f-b8e8e822be38" + "47774c62-a62c-40bc-a1fe-fdea150c660b" ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124306Z:234a2832-7305-40a5-8e2f-b8e8e822be38" + "x-ms-arm-service-request-id": [ + "38a39166-0684-4b24-961b-0a6b41ec042b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220513Z:47774c62-a62c-40bc-a1fe-fdea150c660b" + ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:06 GMT" + "Sun, 18 Apr 2021 22:05:12 GMT" + ], + "Content-Length": [ + "1913" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aVM106\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkInterfaces/a2aVM106\",\r\n \"etag\": \"W/\\\"f2c4ac56-e619-469b-ad60-8337daad4e32\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"decb8001-1fda-4fdc-a385-cf69e5bc8a7d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM106\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkInterfaces/a2aVM106/ipConfigurations/a2aVM106\",\r\n \"etag\": \"W/\\\"f2c4ac56-e619-469b-ad60-8337daad4e32\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/publicIPAddresses/a2aVM106\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/virtualNetworks/a2aVM106/subnets/a2aVM106\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"tldk5aqdaeeu1jqi2of1o13lwg.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/publicIPAddresses/a2aVM106?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTEwNj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d77e5531-b162-4f8c-b905-b79a531712de" + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "4754" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "ee6e3e91-55d1-41cb-9c69-4cea7367192b" + "038be840-9fc8-4722-900e-dfdba79da044" ], "x-ms-correlation-request-id": [ - "ee6e3e91-55d1-41cb-9c69-4cea7367192b" + "038be840-9fc8-4722-900e-dfdba79da044" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124310Z:ee6e3e91-55d1-41cb-9c69-4cea7367192b" + "WESTINDIA:20210418T220456Z:038be840-9fc8-4722-900e-dfdba79da044" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -891,104 +954,111 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:10 GMT" + "Sun, 18 Apr 2021 22:04:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "100" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM106' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/publicIPAddresses/a2aVM106?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTEwNj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8281ddd9-8709-4d5a-9610-6be5ff70fa28" - ], - "accept-language": [ - "en-US" + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "4754" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "ETag": [ + "W/\"0bc1f139-07cb-4824-ba4c-542a2ceb184c\"" ], "x-ms-request-id": [ - "6b7711a2-c881-4243-8ee3-d31ac9ad3669" + "e9af5e29-4b49-4ca4-ba20-920ee5d7fa6e" ], "x-ms-correlation-request-id": [ - "6b7711a2-c881-4243-8ee3-d31ac9ad3669" + "c2c1494c-89fc-40ea-afa9-74263d0db3f1" ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124313Z:6b7711a2-c881-4243-8ee3-d31ac9ad3669" + "x-ms-arm-service-request-id": [ + "a97a4cfc-8d9b-4408-a007-d1952dfd7f82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220509Z:c2c1494c-89fc-40ea-afa9-74263d0db3f1" + ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:13 GMT" + "Sun, 18 Apr 2021 22:05:09 GMT" + ], + "Content-Length": [ + "755" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aVM106\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/publicIPAddresses/a2aVM106\",\r\n \"etag\": \"W/\\\"0bc1f139-07cb-4824-ba4c-542a2ceb184c\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"870a3a9b-74af-4bea-ae4f-eb594beaa92c\",\r\n \"ipAddress\": \"20.185.247.110\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain106\",\r\n \"fqdn\": \"domain106.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourcegroups/A2APowershellTestRg10?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", - "RequestMethod": "HEAD", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/virtualNetworks/a2aVM106?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0xMDY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "beb4bc18-7b57-420b-865a-a0869521ea8c" + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "113" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -996,17 +1066,14 @@ "x-ms-failure-cause": [ "gateway" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], "x-ms-request-id": [ - "090ed285-b0fc-42a2-a93d-e23893c4f974" + "1fe8d6ef-6036-428a-b732-0baf1deb696f" ], "x-ms-correlation-request-id": [ - "090ed285-b0fc-42a2-a93d-e23893c4f974" + "1fe8d6ef-6036-428a-b732-0baf1deb696f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124313Z:090ed285-b0fc-42a2-a93d-e23893c4f974" + "WESTINDIA:20210418T220456Z:1fe8d6ef-6036-428a-b732-0baf1deb696f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1014,894 +1081,2971 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:13 GMT" + "Sun, 18 Apr 2021 22:04:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "100" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM106' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourcegroups/A2APowershellTestRg10?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/virtualNetworks/a2aVM106?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0xMDY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], "x-ms-client-request-id": [ - "8e926230-cdaa-4197-9fac-7405ff845fb5" - ], - "accept-language": [ - "en-US" + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10\",\r\n \"name\": \"A2APowershellTestRg10\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "195" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "ETag": [ + "W/\"ebc96eca-3f90-4e02-b27c-f5f6e2c84db7\"" ], "x-ms-request-id": [ - "7c0b4af2-bfff-470f-832f-48f837c8283f" + "cb52acc9-5b04-4287-9573-9295450d8fab" ], "x-ms-correlation-request-id": [ - "7c0b4af2-bfff-470f-832f-48f837c8283f" + "f3cb9438-0c40-41fa-86be-ef7960477365" ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124316Z:7c0b4af2-bfff-470f-832f-48f837c8283f" + "x-ms-arm-service-request-id": [ + "82dcc3f3-c49c-4b11-9372-98ef81b29353" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220509Z:f3cb9438-0c40-41fa-86be-ef7960477365" + ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:16 GMT" + "Sun, 18 Apr 2021 22:05:08 GMT" + ], + "Content-Length": [ + "1074" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM106\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/virtualNetworks/a2aVM106\",\r\n \"etag\": \"W/\\\"ebc96eca-3f90-4e02-b27c-f5f6e2c84db7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"82afc69a-0103-4d09-a608-e38bb76fabb6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM106\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/virtualNetworks/a2aVM106/subnets/a2aVM106\",\r\n \"etag\": \"W/\\\"ebc96eca-3f90-4e02-b27c-f5f6e2c84db7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0xMDY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "5a0850e3-7553-42f1-9e96-0c9f3d826f85" + ], + "x-ms-correlation-request-id": [ + "5a0850e3-7553-42f1-9e96-0c9f3d826f85" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220456Z:5a0850e3-7553-42f1-9e96-0c9f3d826f85" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 22:04:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "100" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM106' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0xMDY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"646addc7-33ec-409d-a660-219c4ef3a2c9\"" + ], + "x-ms-request-id": [ + "3e7392ef-11b5-400b-a402-03f304d05612" + ], + "x-ms-correlation-request-id": [ + "4618e59c-c0bd-40ce-b417-de4ba611a6b3" + ], + "x-ms-arm-service-request-id": [ + "131115d7-5366-4220-ac29-b6fe7f243308" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220508Z:4618e59c-c0bd-40ce-b417-de4ba611a6b3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 22:05:08 GMT" + ], + "Content-Length": [ + "7388" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM106\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106\",\r\n \"etag\": \"W/\\\"646addc7-33ec-409d-a660-219c4ef3a2c9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"67d4c282-1cd5-4e5d-a252-e9d5e8a4db1d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM10622\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106/securityRules/a2aVM10622\",\r\n \"etag\": \"W/\\\"646addc7-33ec-409d-a660-219c4ef3a2c9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"646addc7-33ec-409d-a660-219c4ef3a2c9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"646addc7-33ec-409d-a660-219c4ef3a2c9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"646addc7-33ec-409d-a660-219c4ef3a2c9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"646addc7-33ec-409d-a660-219c4ef3a2c9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"646addc7-33ec-409d-a660-219c4ef3a2c9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"646addc7-33ec-409d-a660-219c4ef3a2c9\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM106?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNMTA2P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "4d82376b-53d1-496a-b9af-2546c1efa3dd" + ], + "x-ms-correlation-request-id": [ + "4d82376b-53d1-496a-b9af-2546c1efa3dd" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220458Z:4d82376b-53d1-496a-b9af-2546c1efa3dd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 22:04:58 GMT" + ], + "Content-Length": [ + "169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106\",\r\n \"name\": \"a2aVM106\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0xMDY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"a2aVM10622\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "451" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "201f998f-d58f-43ad-99da-d1f40ebb0988" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/201f998f-d58f-43ad-99da-d1f40ebb0988?api-version=2017-10-01" + ], + "x-ms-correlation-request-id": [ + "99d158d5-5519-47f9-ba29-169603954b7b" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "f58b8950-7a82-47e1-a993-32e2136c2132" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220504Z:99d158d5-5519-47f9-ba29-169603954b7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 22:05:04 GMT" + ], + "Content-Length": [ + "7380" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM106\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106\",\r\n \"etag\": \"W/\\\"8eab7f81-0e27-423c-8998-3e598f63956b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"67d4c282-1cd5-4e5d-a252-e9d5e8a4db1d\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM10622\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106/securityRules/a2aVM10622\",\r\n \"etag\": \"W/\\\"8eab7f81-0e27-423c-8998-3e598f63956b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"8eab7f81-0e27-423c-8998-3e598f63956b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"8eab7f81-0e27-423c-8998-3e598f63956b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"8eab7f81-0e27-423c-8998-3e598f63956b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"8eab7f81-0e27-423c-8998-3e598f63956b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"8eab7f81-0e27-423c-8998-3e598f63956b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"8eab7f81-0e27-423c-8998-3e598f63956b\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/virtualNetworks/a2aVM106?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0xMDY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"name\": \"a2aVM106\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "300" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "b1d29db5-e309-4842-acdc-0c7ec1865f37" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/b1d29db5-e309-4842-acdc-0c7ec1865f37?api-version=2017-10-01" + ], + "x-ms-correlation-request-id": [ + "b2a98e99-0820-4237-ac6c-2a3a00ce810b" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "bc69fc2a-5e28-4648-ad41-d1e83b2bea7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220505Z:b2a98e99-0820-4237-ac6c-2a3a00ce810b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 22:05:04 GMT" + ], + "Content-Length": [ + "1072" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM106\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/virtualNetworks/a2aVM106\",\r\n \"etag\": \"W/\\\"22e9a5b5-b258-4d02-841b-a802ee9646f7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"82afc69a-0103-4d09-a608-e38bb76fabb6\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM106\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/virtualNetworks/a2aVM106/subnets/a2aVM106\",\r\n \"etag\": \"W/\\\"22e9a5b5-b258-4d02-841b-a802ee9646f7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/publicIPAddresses/a2aVM106?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTEwNj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain106\"\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "202" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "fa1a83fa-6d2f-4c38-ae3c-adb2ae382121" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/fa1a83fa-6d2f-4c38-ae3c-adb2ae382121?api-version=2017-10-01" + ], + "x-ms-correlation-request-id": [ + "93fafd86-6b63-43df-bac8-538cf34a4211" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "fc46db79-c900-429d-9223-0264a2f798a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220505Z:93fafd86-6b63-43df-bac8-538cf34a4211" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 22:05:05 GMT" + ], + "Content-Length": [ + "718" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM106\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/publicIPAddresses/a2aVM106\",\r\n \"etag\": \"W/\\\"39da51ca-c7b8-4f8b-b36f-202a41c9af76\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"870a3a9b-74af-4bea-ae4f-eb594beaa92c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain106\",\r\n \"fqdn\": \"domain106.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/fa1a83fa-6d2f-4c38-ae3c-adb2ae382121?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmExYTgzZmEtNmQyZi00YzM4LWFlM2MtYWRiMmFlMzgyMTIxP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "2" + ], + "x-ms-request-id": [ + "b321f389-397e-468d-af5b-960ce4017d5b" + ], + "x-ms-correlation-request-id": [ + "2f2b5b27-ab7c-434f-b137-f165fc6a5d17" + ], + "x-ms-arm-service-request-id": [ + "86010c7b-f122-42c7-9d87-8da04afbb9d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220507Z:2f2b5b27-ab7c-434f-b137-f165fc6a5d17" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 22:05:06 GMT" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/fa1a83fa-6d2f-4c38-ae3c-adb2ae382121?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmExYTgzZmEtNmQyZi00YzM4LWFlM2MtYWRiMmFlMzgyMTIxP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "bd76fe71-37c0-47dd-8a00-4b1fe8ffd800" + ], + "x-ms-correlation-request-id": [ + "00cc9b9a-547a-4f8b-8687-0f7d9e13b71a" + ], + "x-ms-arm-service-request-id": [ + "4c95690f-49c0-4b6a-890f-61c26fb8eb05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220509Z:00cc9b9a-547a-4f8b-8687-0f7d9e13b71a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 22:05:09 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/201f998f-d58f-43ad-99da-d1f40ebb0988?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjAxZjk5OGYtZDU4Zi00M2FkLTk5ZGEtZDFmNDBlYmIwOTg4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "dd49e276-72a9-4b09-8dc6-2c3ae5da7813" + ], + "x-ms-correlation-request-id": [ + "b19d67f8-442c-42c4-a335-7130db96dc2e" + ], + "x-ms-arm-service-request-id": [ + "51dc57ed-3bea-4c75-9446-36f3a2e54850" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220508Z:b19d67f8-442c-42c4-a335-7130db96dc2e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 22:05:07 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/b1d29db5-e309-4842-acdc-0c7ec1865f37?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjFkMjlkYjUtZTMwOS00ODQyLWFjZGMtMGM3ZWMxODY1ZjM3P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1bd84014-7f24-4d65-ac04-d2ea24922a49" + ], + "x-ms-correlation-request-id": [ + "49396b01-fdaf-4deb-a012-ae43c9c1932c" + ], + "x-ms-arm-service-request-id": [ + "850942f2-e88c-4463-abbc-149ae9b5be76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220508Z:49396b01-fdaf-4deb-a012-ae43c9c1932c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 22:05:08 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkInterfaces/a2aVM106?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTEwNj9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/virtualNetworks/a2aVM106/subnets/a2aVM106\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/publicIPAddresses/a2aVM106\"\r\n }\r\n },\r\n \"name\": \"a2aVM106\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "803" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "80528e4a-79a5-4be9-a4b3-ba1ab078340a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/80528e4a-79a5-4be9-a4b3-ba1ab078340a?api-version=2017-10-01" + ], + "x-ms-correlation-request-id": [ + "2e236e3b-2973-4399-8db7-631e70dc3d47" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "ddb6fa92-c8fc-4052-861e-6939116eb285" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220512Z:2e236e3b-2973-4399-8db7-631e70dc3d47" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 22:05:12 GMT" + ], + "Content-Length": [ + "1913" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM106\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkInterfaces/a2aVM106\",\r\n \"etag\": \"W/\\\"f2c4ac56-e619-469b-ad60-8337daad4e32\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"decb8001-1fda-4fdc-a385-cf69e5bc8a7d\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM106\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkInterfaces/a2aVM106/ipConfigurations/a2aVM106\",\r\n \"etag\": \"W/\\\"f2c4ac56-e619-469b-ad60-8337daad4e32\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/publicIPAddresses/a2aVM106\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/virtualNetworks/a2aVM106/subnets/a2aVM106\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"tldk5aqdaeeu1jqi2of1o13lwg.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkSecurityGroups/a2aVM106\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Compute/virtualMachines/a2aVM106?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDY/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM106\",\r\n \"adminUsername\": \"adminUser\",\r\n \"adminPassword\": \"System.Security.SecureString\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkInterfaces/a2aVM106\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "734" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/17c1d68b-3667-4669-b43e-7b7c50660212?api-version=2020-12-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1196" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "17c1d68b-3667-4669-b43e-7b7c50660212" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "05e5ac80-c101-4519-b0e8-c72c149be0a5" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220520Z:05e5ac80-c101-4519-b0e8-c72c149be0a5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 22:05:20 GMT" + ], + "Content-Length": [ + "1644" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM106\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Compute/virtualMachines/a2aVM106\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"4678a260-6f8b-4c05-b31e-6c7515422abe\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM106\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Network/networkInterfaces/a2aVM106\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/17c1d68b-3667-4669-b43e-7b7c50660212?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTdjMWQ2OGItMzY2Ny00NjY5LWI0M2UtN2I3YzUwNjYwMjEyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "35" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29957" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "0fce6299-d109-4cd8-8fae-ef8156c60b32" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "232498ce-49b9-4272-b2d3-3fdca38c3c7f" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220531Z:232498ce-49b9-4272-b2d3-3fdca38c3c7f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 22:05:30 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-04-19T03:35:18.4982881+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"17c1d68b-3667-4669-b43e-7b7c50660212\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/17c1d68b-3667-4669-b43e-7b7c50660212?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTdjMWQ2OGItMzY2Ny00NjY5LWI0M2UtN2I3YzUwNjYwMjEyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29956" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "2ceb84ff-ca40-46b1-add5-e1d5ecf36197" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "a66300e2-120f-4eca-a33f-5b011dac81a4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220606Z:a66300e2-120f-4eca-a33f-5b011dac81a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 22:06:06 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-04-19T03:35:18.4982881+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"17c1d68b-3667-4669-b43e-7b7c50660212\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/17c1d68b-3667-4669-b43e-7b7c50660212?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMTdjMWQ2OGItMzY2Ny00NjY5LWI0M2UtN2I3YzUwNjYwMjEyP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "835ede9e-c9a5-4ba0-a0aa-b6fe2c98bfe2" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29954" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "937fafab-0bd0-4658-ac4c-b7d75410c01d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "98f6f0ae-7f69-4cb5-b603-af6c1244325d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220641Z:98f6f0ae-7f69-4cb5-b603-af6c1244325d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 22:06:41 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-04-19T03:35:18.4982881+05:30\",\r\n \"endTime\": \"2021-04-19T03:36:25.1068602+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"17c1d68b-3667-4669-b43e-7b7c50660212\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Storage/storageAccounts/cache106?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvY2FjaGUxMDY/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ed81e42-7219-4b6a-bf84-c62750997f6c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "98" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/97e53b41-5ad9-437b-9d1d-02fc126c7d81?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "97e53b41-5ad9-437b-9d1d-02fc126c7d81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "91d1f1d2-e548-4937-a188-e365ff0366ad" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220648Z:91d1f1d2-e548-4937-a188-e365ff0366ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 22:06:48 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/97e53b41-5ad9-437b-9d1d-02fc126c7d81?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy85N2U1M2I0MS01YWQ5LTQzN2ItOWQxZC0wMmZjMTI2YzdkODE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1e16c2ff-e712-443a-b155-77dbb2a64a1b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "2707b289-ddb1-4c31-8c9d-4590a726c031" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220706Z:2707b289-ddb1-4c31-8c9d-4590a726c031" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 22:07:05 GMT" + ], + "Content-Length": [ + "1027" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM106/providers/Microsoft.Storage/storageAccounts/cache106\",\r\n \"name\": \"cache106\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-18T22:06:47.2824252Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-18T22:06:47.2824252Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-04-18T22:06:47.1574125Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cache106.blob.core.windows.net/\",\r\n \"queue\": \"https://cache106.queue.core.windows.net/\",\r\n \"table\": \"https://cache106.table.core.windows.net/\",\r\n \"file\": \"https://cache106.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/A2APowershellTestRg106?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDY/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e325b3b1-02f4-45e0-812c-cd0900e478d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "97d0c2da-c7ae-4ee7-8569-7181b36c2ec4" + ], + "x-ms-correlation-request-id": [ + "97d0c2da-c7ae-4ee7-8569-7181b36c2ec4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220708Z:97d0c2da-c7ae-4ee7-8569-7181b36c2ec4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 22:07:08 GMT" + ], + "Content-Length": [ + "204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106\",\r\n \"name\": \"A2APowershellTestRg106\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"WestCentralUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "980f839c-88fe-4736-bdfe-d49a31d9cbdd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "98" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "c05bcf06-aea0-470f-a866-092828e3b64e" + ], + "x-ms-client-request-id": [ + "980f839c-88fe-4736-bdfe-d49a31d9cbdd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "209" + ], + "x-ms-correlation-request-id": [ + "c05bcf06-aea0-470f-a866-092828e3b64e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220740Z:c05bcf06-aea0-470f-a866-092828e3b64e" + ], + "Date": [ + "Sun, 18 Apr 2021 22:07:39 GMT" + ], + "Content-Length": [ + "478" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest106\",\r\n \"etag\": \"W/\\\"datetime'2021-04-18T22%3A07%3A38.7149674Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "402d65b9-ac5f-494b-a79b-7bc50a2594e4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "29fab590-cbb4-4584-8e68-9ceb9c57e267" + ], + "x-ms-client-request-id": [ + "402d65b9-ac5f-494b-a79b-7bc50a2594e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "29fab590-cbb4-4584-8e68-9ceb9c57e267" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220800Z:29fab590-cbb4-4584-8e68-9ceb9c57e267" + ], + "Date": [ + "Sun, 18 Apr 2021 22:08:00 GMT" + ], + "Content-Length": [ + "478" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest106\",\r\n \"etag\": \"W/\\\"datetime'2021-04-18T22%3A07%3A38.7149674Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9leHRlbmRlZEluZm9ybWF0aW9uL3ZhdWx0RXh0ZW5kZWRJbmZvP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1c70292-3ab4-436d-b8af-4c12f31510f2" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "d06d3334-516c-4604-814f-a669036abb1e" + ], + "x-ms-client-request-id": [ + "c1c70292-3ab4-436d-b8af-4c12f31510f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "d06d3334-516c-4604-814f-a669036abb1e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220801Z:d06d3334-516c-4604-814f-a669036abb1e" + ], + "Date": [ + "Sun, 18 Apr 2021 22:08:00 GMT" + ], + "Content-Length": [ + "86" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"ErrorCode\": \"ResourceExtendedInfoNotFound\",\r\n \"Message\": {\r\n \"Language\": \"en-US\",\r\n \"Value\": \"\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9leHRlbmRlZEluZm9ybWF0aW9uL3ZhdWx0RXh0ZW5kZWRJbmZvP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"JQtrIwKyFmPI3tgwLge+6w==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1c70292-3ab4-436d-b8af-4c12f31510f2" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "211acf45-8a3a-462f-980d-f91e94fa850c" + ], + "x-ms-client-request-id": [ + "c1c70292-3ab4-436d-b8af-4c12f31510f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "211acf45-8a3a-462f-980d-f91e94fa850c" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220801Z:211acf45-8a3a-462f-980d-f91e94fa850c" + ], + "Date": [ + "Sun, 18 Apr 2021 22:08:01 GMT" + ], + "Content-Length": [ + "412" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"58c17d11-00f3-4913-9074-64931cdebb0a\",\r\n \"properties\": {\r\n \"integrityKey\": \"JQtrIwKyFmPI3tgwLge+6w==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1c70292-3ab4-436d-b8af-4c12f31510f2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "bc8d111f-0a7b-49b3-8e88-f90e7b18c674" + ], + "x-ms-client-request-id": [ + "c1c70292-3ab4-436d-b8af-4c12f31510f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "bc8d111f-0a7b-49b3-8e88-f90e7b18c674" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220802Z:bc8d111f-0a7b-49b3-8e88-f90e7b18c674" + ], + "Date": [ + "Sun, 18 Apr 2021 22:08:01 GMT" + ], + "Content-Length": [ + "490" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest106\",\r\n \"etag\": \"W/\\\"datetime'2021-04-18T22%3A08%3A01.8081202Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106\",\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/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationFabrics/a2aPrimaryFabric106?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNj9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"EastUS\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c85768b7-b9e7-4f55-81e6-d99b55682914" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618780082431)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384882431)\\/\",\"ClientRequestId\":\"fedcc48a-cbe3-4fe4-b327-601102b530b3-2021-04-18 22:08:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9c8n4/HNulBO0+SPifOSmqifIzzKmsyWBhPb0B2BeX0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "119" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationFabrics/a2aPrimaryFabric106/operationresults/e9502a45-3b6a-4ead-937f-f60b5d37e26a?api-version=2021-02-10" + ], + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationOperationStatus/e9502a45-3b6a-4ead-937f-f60b5d37e26a?api-version=2021-02-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c85768b7-b9e7-4f55-81e6-d99b55682914" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "dd208326-3138-43b1-9c66-c297de7d05ea" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220806Z:dd208326-3138-43b1-9c66-c297de7d05ea" + ], + "Date": [ + "Sun, 18 Apr 2021 22:08:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9yZXBsaWNhdGlvbkpvYnMvZTk1MDJhNDUtM2I2YS00ZWFkLTkzN2YtZjYwYjVkMzdlMjZhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c85768b7-b9e7-4f55-81e6-d99b55682914" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618780086797)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384886797)\\/\",\"ClientRequestId\":\"4c9b8121-e81f-4d77-ae6c-7d154b2a8406-2021-04-18 22:08:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OZPlkGyXoLqi2I4iX5LikADF7fkC6Hj8SWEoFE2yu+A=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c85768b7-b9e7-4f55-81e6-d99b55682914" + ], + "x-ms-correlation-request-id": [ + "afd18137-9790-4a67-b20b-d282a64bbb56" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220807Z:afd18137-9790-4a67-b20b-d282a64bbb56" + ], + "Date": [ + "Sun, 18 Apr 2021 22:08:06 GMT" + ], + "Content-Length": [ + "1318" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a\",\r\n \"name\": \"e9502a45-3b6a-4ead-937f-f60b5d37e26a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c85768b7-b9e7-4f55-81e6-d99b55682914 ActivityId: dd208326-3138-43b1-9c66-c297de7d05ea\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T22:08:05.958442Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T22:08:05.4196353Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"104808ea-1518-518d-924b-0b9dfe438316\",\r\n \"targetObjectName\": \"a2aPrimaryFabric106\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"104808ea-1518-518d-924b-0b9dfe438316\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric106\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9yZXBsaWNhdGlvbkpvYnMvZTk1MDJhNDUtM2I2YS00ZWFkLTkzN2YtZjYwYjVkMzdlMjZhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7420d866-b952-4824-8f36-ec2dc11b08fe" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618780087238)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384887238)\\/\",\"ClientRequestId\":\"403d0d6a-f08e-4936-9cb2-3f4ebe3de2e8-2021-04-18 22:08:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GGnHrVg34p8hRsz6dSmhT8U1LPNQg+m5HA5264cr6DY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "7420d866-b952-4824-8f36-ec2dc11b08fe" + ], + "x-ms-correlation-request-id": [ + "fd427433-3e86-41bb-addb-5b966a2c92c6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220807Z:fd427433-3e86-41bb-addb-5b966a2c92c6" + ], + "Date": [ + "Sun, 18 Apr 2021 22:08:07 GMT" + ], + "Content-Length": [ + "1318" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a\",\r\n \"name\": \"e9502a45-3b6a-4ead-937f-f60b5d37e26a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c85768b7-b9e7-4f55-81e6-d99b55682914 ActivityId: dd208326-3138-43b1-9c66-c297de7d05ea\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T22:08:05.958442Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T22:08:05.4196353Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"104808ea-1518-518d-924b-0b9dfe438316\",\r\n \"targetObjectName\": \"a2aPrimaryFabric106\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"104808ea-1518-518d-924b-0b9dfe438316\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric106\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9yZXBsaWNhdGlvbkpvYnMvZTk1MDJhNDUtM2I2YS00ZWFkLTkzN2YtZjYwYjVkMzdlMjZhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e4c6e7a0-2b90-481c-8b5b-f8f3619cf106" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618780107605)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384907605)\\/\",\"ClientRequestId\":\"4f25564e-c9cc-44c2-a8a2-4074c2a7f5de-2021-04-18 22:08:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"oqLThM5evEeKmla1yXogyWaEDIE4ObNHvmGQ7DzKBiY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e4c6e7a0-2b90-481c-8b5b-f8f3619cf106" + ], + "x-ms-correlation-request-id": [ + "4d441b7d-9b6f-4b99-a0fe-ed8a4554eebf" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220827Z:4d441b7d-9b6f-4b99-a0fe-ed8a4554eebf" + ], + "Date": [ + "Sun, 18 Apr 2021 22:08:27 GMT" + ], + "Content-Length": [ + "1318" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a\",\r\n \"name\": \"e9502a45-3b6a-4ead-937f-f60b5d37e26a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c85768b7-b9e7-4f55-81e6-d99b55682914 ActivityId: dd208326-3138-43b1-9c66-c297de7d05ea\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T22:08:05.958442Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T22:08:05.4196353Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"104808ea-1518-518d-924b-0b9dfe438316\",\r\n \"targetObjectName\": \"a2aPrimaryFabric106\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"104808ea-1518-518d-924b-0b9dfe438316\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric106\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9yZXBsaWNhdGlvbkpvYnMvZTk1MDJhNDUtM2I2YS00ZWFkLTkzN2YtZjYwYjVkMzdlMjZhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a716414-31c2-48d3-989f-fb277205d144" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618780127959)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384927959)\\/\",\"ClientRequestId\":\"166b84f0-acc3-4725-b052-a93fd2772362-2021-04-18 22:08:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"z5hPBaJ//m2+PSYXaoEgxajy4Xd1kb6X4bYOKrmuJDQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "3a716414-31c2-48d3-989f-fb277205d144" + ], + "x-ms-correlation-request-id": [ + "5dc97187-6cf5-4150-aeb0-26268c2ab842" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220848Z:5dc97187-6cf5-4150-aeb0-26268c2ab842" + ], + "Date": [ + "Sun, 18 Apr 2021 22:08:47 GMT" + ], + "Content-Length": [ + "1318" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a\",\r\n \"name\": \"e9502a45-3b6a-4ead-937f-f60b5d37e26a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c85768b7-b9e7-4f55-81e6-d99b55682914 ActivityId: dd208326-3138-43b1-9c66-c297de7d05ea\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T22:08:05.958442Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T22:08:05.4196353Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"104808ea-1518-518d-924b-0b9dfe438316\",\r\n \"targetObjectName\": \"a2aPrimaryFabric106\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"104808ea-1518-518d-924b-0b9dfe438316\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric106\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MTA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9yZXBsaWNhdGlvbkpvYnMvZTk1MDJhNDUtM2I2YS00ZWFkLTkzN2YtZjYwYjVkMzdlMjZhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "91" - ], "x-ms-client-request-id": [ - "f56298e0-a8fc-4913-be21-335f3e96ec2b-2018-08-16 12:43:36Z-P" + "29812f71-ad1e-4c2a-af2e-7390930f8061" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618780148330)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384948330)\\/\",\"ClientRequestId\":\"994b1b5f-8c77-4f7d-8bdf-180d4425bd57-2021-04-18 22:09:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BCVUzcso9kKWyhma5Mem2jzRLZ9NzKzS4opTJqkUISg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"location\": \"westus\",\r\n \"name\": \"A2APowershellTest10\",\r\n \"etag\": \"W/\\\"datetime'2018-08-16T12%3A43%3A40.3722763Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "384" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "6f96dae0-a77c-4368-8b86-661c5eaa05c0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" ], - "x-ms-client-request-id": [ - "f56298e0-a8fc-4913-be21-335f3e96ec2b-2018-08-16 12:43:36Z-P" + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "29812f71-ad1e-4c2a-af2e-7390930f8061" ], "x-ms-correlation-request-id": [ - "6f96dae0-a77c-4368-8b86-661c5eaa05c0" + "b12ee917-2bc9-4430-b4d8-f76c65e44b63" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124341Z:6f96dae0-a77c-4368-8b86-661c5eaa05c0" - ], - "Cache-Control": [ - "no-cache" + "WESTINDIA:20210418T220908Z:b12ee917-2bc9-4430-b4d8-f76c65e44b63" ], "Date": [ - "Thu, 16 Aug 2018 12:43:40 GMT" + "Sun, 18 Apr 2021 22:09:07 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Content-Length": [ + "1318" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a\",\r\n \"name\": \"e9502a45-3b6a-4ead-937f-f60b5d37e26a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c85768b7-b9e7-4f55-81e6-d99b55682914 ActivityId: dd208326-3138-43b1-9c66-c297de7d05ea\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T22:08:05.958442Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T22:08:05.4196353Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"104808ea-1518-518d-924b-0b9dfe438316\",\r\n \"targetObjectName\": \"a2aPrimaryFabric106\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"104808ea-1518-518d-924b-0b9dfe438316\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric106\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9yZXBsaWNhdGlvbkpvYnMvZTk1MDJhNDUtM2I2YS00ZWFkLTkzN2YtZjYwYjVkMzdlMjZhP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7821135-9b44-45fb-8482-5cfa72f20d10-2018-08-16 12:44:04Z-P" + "cd050b22-2afe-4420-8b79-e28b17ae0425" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618780168678)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384968678)\\/\",\"ClientRequestId\":\"4572b3a9-a653-46c5-9b15-167a114804bc-2021-04-18 22:09:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"INMPtvxlqWK/F3wjSsKlzvC8njwaEYBsNfE0mNqGSz8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"A2APowershellTest10\",\r\n \"etag\": \"W/\\\"datetime'2018-08-16T12%3A43%3A40.3722763Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "cd050b22-2afe-4420-8b79-e28b17ae0425" + ], + "x-ms-correlation-request-id": [ + "99d51d25-2b53-46ea-9158-c6aac1e68d67" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T220928Z:99d51d25-2b53-46ea-9158-c6aac1e68d67" + ], + "Date": [ + "Sun, 18 Apr 2021 22:09:28 GMT" + ], "Content-Length": [ - "396" + "1357" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/e9502a45-3b6a-4ead-937f-f60b5d37e26a\",\r\n \"name\": \"e9502a45-3b6a-4ead-937f-f60b5d37e26a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"c85768b7-b9e7-4f55-81e6-d99b55682914 ActivityId: dd208326-3138-43b1-9c66-c297de7d05ea\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T22:09:11.6388919Z\",\r\n \"endTime\": \"2021-04-18T22:09:11.8338939Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T22:08:05.4196353Z\",\r\n \"endTime\": \"2021-04-18T22:09:11Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"104808ea-1518-518d-924b-0b9dfe438316\",\r\n \"targetObjectName\": \"a2aPrimaryFabric106\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"104808ea-1518-518d-924b-0b9dfe438316\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric106\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationFabrics/a2aPrimaryFabric106?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNj9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9a6220a0-e7ae-4700-97b8-2aee525cc661" ], - "Pragma": [ + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618780169042)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384969042)\\/\",\"ClientRequestId\":\"591391b4-e9bc-4f71-b44a-bea44f86b48f-2021-04-18 22:09:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EeVlcj1mJzGt2NIyxVqhsNsOF5whEH8unUKtxzTMnDs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" + "Pragma": [ + "no-cache" ], - "x-ms-request-id": [ - "d25b1eba-59ae-4572-8cf3-e5416f11b902" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" ], - "x-ms-client-request-id": [ - "a7821135-9b44-45fb-8482-5cfa72f20d10-2018-08-16 12:44:04Z-P" + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "x-ms-request-id": [ + "9a6220a0-e7ae-4700-97b8-2aee525cc661 4/18/2021 10:09:29 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "9a6220a0-e7ae-4700-97b8-2aee525cc661" ], "x-ms-correlation-request-id": [ - "d25b1eba-59ae-4572-8cf3-e5416f11b902" + "001a3f24-848f-4912-865c-d65b1c958ddb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124404Z:d25b1eba-59ae-4572-8cf3-e5416f11b902" - ], - "Cache-Control": [ - "no-cache" + "WESTINDIA:20210418T220929Z:001a3f24-848f-4912-865c-d65b1c958ddb" ], "Date": [ - "Thu, 16 Aug 2018 12:44:03 GMT" + "Sun, 18 Apr 2021 22:09:29 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Content-Length": [ + "683" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric106\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationFabrics/a2aPrimaryFabric106\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"104808ea-1518-518d-924b-0b9dfe438316\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationFabrics/a2aPrimaryFabric106?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNj9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b5d5750-915c-40d4-b993-cc43b030e7af" + "30af1bed-532f-42be-a2d9-876fb0dd06d9" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618780252745)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619385052745)\\/\",\"ClientRequestId\":\"2c5f05c5-bf0a-47a4-8c32-235750bba8f3-2021-04-18 22:10:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HPK+RqtGAwuSvb/hjKpsqbWIWXBC6MYtdWoe/Bsmo00=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"A2APowershellTest10\",\r\n \"etag\": \"W/\\\"datetime'2018-08-16T12%3A44%3A06.2508239Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "30af1bed-532f-42be-a2d9-876fb0dd06d9 4/18/2021 10:10:52 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "30af1bed-532f-42be-a2d9-876fb0dd06d9" + ], + "x-ms-correlation-request-id": [ + "9657cd4c-ba9a-4273-9fe4-bd0b1e1d1716" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T221053Z:9657cd4c-ba9a-4273-9fe4-bd0b1e1d1716" + ], + "Date": [ + "Sun, 18 Apr 2021 22:10:52 GMT" + ], "Content-Length": [ - "396" + "683" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric106\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationFabrics/a2aPrimaryFabric106\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"104808ea-1518-518d-924b-0b9dfe438316\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationFabrics/a2aRecoveryFabric106?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"WestCentralUS\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6355713-7c61-4ce5-9d33-d66bd43409e8" ], - "Pragma": [ + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618780169502)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384969502)\\/\",\"ClientRequestId\":\"f689335c-b9b3-4131-81f5-9bb01572c575-2021-04-18 22:09:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"A96z3ooG+P2syn/Aq8E42rmn6C2Q0SZaSLwUQmxUk70=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "126" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" + "Pragma": [ + "no-cache" ], - "x-ms-request-id": [ - "ac9e4ce6-1d4d-40c9-9308-0bf09983a7b4" + "Location": [ + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationFabrics/a2aRecoveryFabric106/operationresults/48dd37ac-2336-4cd6-b1c3-a4329bb237d9?api-version=2021-02-10" ], - "x-ms-client-request-id": [ - "9b5d5750-915c-40d4-b993-cc43b030e7af" + "Retry-After": [ + "30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationOperationStatus/48dd37ac-2336-4cd6-b1c3-a4329bb237d9?api-version=2021-02-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e6355713-7c61-4ce5-9d33-d66bd43409e8" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "ac9e4ce6-1d4d-40c9-9308-0bf09983a7b4" + "b9556d85-4544-4a7c-8169-827b2883df9a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124406Z:ac9e4ce6-1d4d-40c9-9308-0bf09983a7b4" - ], - "Cache-Control": [ - "no-cache" + "WESTINDIA:20210418T220930Z:b9556d85-4544-4a7c-8169-827b2883df9a" ], "Date": [ - "Thu, 16 Aug 2018 12:44:06 GMT" + "Sun, 18 Apr 2021 22:09:29 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MTAvZXh0ZW5kZWRJbmZvcm1hdGlvbi92YXVsdEV4dGVuZGVkSW5mbz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9yZXBsaWNhdGlvbkpvYnMvNDhkZDM3YWMtMjMzNi00Y2Q2LWIxYzMtYTQzMjliYjIzN2Q5P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0d9e048-e2eb-4d03-a22f-5c09ae0991a5-2018-08-16 12:44:04Z-Ps" + "e6355713-7c61-4ce5-9d33-d66bd43409e8" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "" + "{\"NotBeforeTimestamp\":\"\\/Date(1618780170124)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384970124)\\/\",\"ClientRequestId\":\"ad536386-592e-482a-be63-68201da15930-2021-04-18 22:09:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2F+O/4CSA9m/UJybrNr3pVoIpa3LOfaRfegAmtSnip4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"ErrorCode\": \"ResourceExtendedInfoNotFound\",\r\n \"Message\": {\r\n \"Language\": \"en-US\",\r\n \"Value\": \"\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "86" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9" + ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-request-id": [ - "a26d2a54-0b5e-4960-9077-bdcf58a17d88" - ], "x-ms-client-request-id": [ - "d0d9e048-e2eb-4d03-a22f-5c09ae0991a5-2018-08-16 12:44:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "e6355713-7c61-4ce5-9d33-d66bd43409e8" ], "x-ms-correlation-request-id": [ - "a26d2a54-0b5e-4960-9077-bdcf58a17d88" + "bfdaee12-b048-429b-ae5f-046277db5c6e" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124404Z:a26d2a54-0b5e-4960-9077-bdcf58a17d88" - ], - "Cache-Control": [ - "no-cache" + "WESTINDIA:20210418T220930Z:bfdaee12-b048-429b-ae5f-046277db5c6e" ], "Date": [ - "Thu, 16 Aug 2018 12:44:03 GMT" + "Sun, 18 Apr 2021 22:09:30 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 404 + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9\",\r\n \"name\": \"48dd37ac-2336-4cd6-b1c3-a4329bb237d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e6355713-7c61-4ce5-9d33-d66bd43409e8 ActivityId: b9556d85-4544-4a7c-8169-827b2883df9a\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T22:09:30.012546Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T22:09:29.8261043Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"857f64ab-f32c-5457-b742-66323ca0696e\",\r\n \"targetObjectName\": \"a2aRecoveryFabric106\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"857f64ab-f32c-5457-b742-66323ca0696e\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric106\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MTAvZXh0ZW5kZWRJbmZvcm1hdGlvbi92YXVsdEV4dGVuZGVkSW5mbz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"mJEaJ9ygTyRFd2r3dBeKOw==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9yZXBsaWNhdGlvbkpvYnMvNDhkZDM3YWMtMjMzNi00Y2Q2LWIxYzMtYTQzMjliYjIzN2Q5P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "102" - ], "x-ms-client-request-id": [ - "7b0fba74-b0c7-4dfd-98ba-229d5ab8df44-2018-08-16 12:44:04Z-Ps" + "ebfb0324-0130-4735-b3a5-8a91d1104a6f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "" + "{\"NotBeforeTimestamp\":\"\\/Date(1618780170542)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384970542)\\/\",\"ClientRequestId\":\"6f5c71cd-8e4c-45cc-aaef-f7ebd6d16fed-2021-04-18 22:09:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"utlrKhaeHWV1QMHxT15cAmZ7Nn53/Duhzm6TZPPY+9Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"8aa260c0-da8f-455f-ad07-5cd792ca6506\",\r\n \"properties\": {\r\n \"integrityKey\": \"mJEaJ9ygTyRFd2r3dBeKOw==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "410" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "05760768-96f7-4a97-9211-0460538dd04b" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" ], - "x-ms-client-request-id": [ - "7b0fba74-b0c7-4dfd-98ba-229d5ab8df44-2018-08-16 12:44:04Z-Ps" + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "ebfb0324-0130-4735-b3a5-8a91d1104a6f" ], "x-ms-correlation-request-id": [ - "05760768-96f7-4a97-9211-0460538dd04b" + "bc917793-acba-4a78-a81c-bc3cb32818e0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124406Z:05760768-96f7-4a97-9211-0460538dd04b" - ], - "Cache-Control": [ - "no-cache" + "WESTINDIA:20210418T220930Z:bc917793-acba-4a78-a81c-bc3cb32818e0" ], "Date": [ - "Thu, 16 Aug 2018 12:44:05 GMT" + "Sun, 18 Apr 2021 22:09:30 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9\",\r\n \"name\": \"48dd37ac-2336-4cd6-b1c3-a4329bb237d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e6355713-7c61-4ce5-9d33-d66bd43409e8 ActivityId: b9556d85-4544-4a7c-8169-827b2883df9a\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T22:09:30.012546Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T22:09:29.8261043Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"857f64ab-f32c-5457-b742-66323ca0696e\",\r\n \"targetObjectName\": \"a2aRecoveryFabric106\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"857f64ab-f32c-5457-b742-66323ca0696e\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric106\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationFabrics/a2aPrimaryFabric10?api-version=2018-01-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MTAvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMxMD9hcGktdmVyc2lvbj0yMDE4LTAxLTEw", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\"\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9yZXBsaWNhdGlvbkpvYnMvNDhkZDM3YWMtMjMzNi00Y2Q2LWIxYzMtYTQzMjliYjIzN2Q5P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "119" - ], "x-ms-client-request-id": [ - "fb254c26-125a-483f-9be3-b21cfd649897-2018-08-16 12:44:06Z-Ps" + "d495311d-ba9b-4f56-b817-1004988c3a9c" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534419846941)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535024646941)\\/\",\"ClientRequestId\":\"fb254c26-125a-483f-9be3-b21cfd649897-2018-08-16 12:44:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xtZrC06gqHj1B8Fkz2Fl0HvECfEAhTJjgV2iOj1tIGw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618780190884)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384990884)\\/\",\"ClientRequestId\":\"6f58b154-ed9a-42de-8645-c0573e5169a4-2021-04-18 22:09:50Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fsN9UrOFlIYO0oTkDyQwWgDOokLiTZrCuvGDmVhQvoI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "30" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3", - "fb254c26-125a-483f-9be3-b21cfd649897-2018-08-16 12:44:06Z-Ps 8/16/2018 12:44:09 PM" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationOperationStatus/09653bf6-5e79-4d6d-8e27-77dd460612b3?api-version=2018-01-10" + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "fb254c26-125a-483f-9be3-b21cfd649897-2018-08-16 12:44:06Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "d495311d-ba9b-4f56-b817-1004988c3a9c" ], "x-ms-correlation-request-id": [ - "b443b8b6-b8c9-44b3-bcf7-42a64ef73048" + "72f827b7-fbf9-4181-8bea-0c49879d7be4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124409Z:b443b8b6-b8c9-44b3-bcf7-42a64ef73048" - ], - "Cache-Control": [ - "no-cache" + "WESTINDIA:20210418T220951Z:72f827b7-fbf9-4181-8bea-0c49879d7be4" ], "Date": [ - "Thu, 16 Aug 2018 12:44:08 GMT" + "Sun, 18 Apr 2021 22:09:50 GMT" ], - "Location": [ - "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationFabrics/a2aPrimaryFabric10/operationresults/09653bf6-5e79-4d6d-8e27-77dd460612b3?api-version=2018-01-10" + "Content-Length": [ + "1320" ], - "X-Powered-By": [ - "ASP.NET" + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9\",\r\n \"name\": \"48dd37ac-2336-4cd6-b1c3-a4329bb237d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e6355713-7c61-4ce5-9d33-d66bd43409e8 ActivityId: b9556d85-4544-4a7c-8169-827b2883df9a\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T22:09:30.012546Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T22:09:29.8261043Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"857f64ab-f32c-5457-b742-66323ca0696e\",\r\n \"targetObjectName\": \"a2aRecoveryFabric106\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"857f64ab-f32c-5457-b742-66323ca0696e\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric106\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3?api-version=2018-01-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MTAvcmVwbGljYXRpb25Kb2JzLzA5NjUzYmY2LTVlNzktNGQ2ZC04ZTI3LTc3ZGQ0NjA2MTJiMz9hcGktdmVyc2lvbj0yMDE4LTAxLTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9yZXBsaWNhdGlvbkpvYnMvNDhkZDM3YWMtMjMzNi00Y2Q2LWIxYzMtYTQzMjliYjIzN2Q5P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abe0e525-af00-4df0-b8a0-53c2c30ca612-2018-08-16 12:44:10Z-Ps" + "b11a9637-497e-4039-93a5-b115feb764e2" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534419850104)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535024650104)\\/\",\"ClientRequestId\":\"abe0e525-af00-4df0-b8a0-53c2c30ca612-2018-08-16 12:44:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Dfm+dZ8J40Vt/4x274+1a9uw6epXe08OFy8eeVho0rg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618780211232)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619385011232)\\/\",\"ClientRequestId\":\"9c76731f-5d3d-4436-9970-75204ccbaa55-2021-04-18 22:10:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"exQJbjK6o3FG28fFevcoOFz1rAQPQe9ZMnGDDArl2oU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3\",\r\n \"name\": \"09653bf6-5e79-4d6d-8e27-77dd460612b3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb254c26-125a-483f-9be3-b21cfd649897-2018-08-16 12:44:06Z-Ps ActivityId: b443b8b6-b8c9-44b3-bcf7-42a64ef73048\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-16T12:44:10.0766132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-16T12:44:09.3633808Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6a871586-8c74-5634-90d8-d593d746731e\",\r\n \"targetObjectName\": \"a2aPrimaryFabric10\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"6a871586-8c74-5634-90d8-d593d746731e\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric10\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "abe0e525-af00-4df0-b8a0-53c2c30ca612-2018-08-16 12:44:10Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "b11a9637-497e-4039-93a5-b115feb764e2" ], "x-ms-correlation-request-id": [ - "4982ffe8-9c88-48e9-b1e9-6f9aaba0c682" + "a2f0ecaa-7e11-4781-96ff-bc3f0404b67a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124410Z:4982ffe8-9c88-48e9-b1e9-6f9aaba0c682" + "WESTINDIA:20210418T221011Z:a2f0ecaa-7e11-4781-96ff-bc3f0404b67a" ], "Date": [ - "Thu, 16 Aug 2018 12:44:09 GMT" + "Sun, 18 Apr 2021 22:10:11 GMT" + ], + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9\",\r\n \"name\": \"48dd37ac-2336-4cd6-b1c3-a4329bb237d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e6355713-7c61-4ce5-9d33-d66bd43409e8 ActivityId: b9556d85-4544-4a7c-8169-827b2883df9a\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T22:09:30.012546Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T22:09:29.8261043Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"857f64ab-f32c-5457-b742-66323ca0696e\",\r\n \"targetObjectName\": \"a2aRecoveryFabric106\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"857f64ab-f32c-5457-b742-66323ca0696e\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric106\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3?api-version=2018-01-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MTAvcmVwbGljYXRpb25Kb2JzLzA5NjUzYmY2LTVlNzktNGQ2ZC04ZTI3LTc3ZGQ0NjA2MTJiMz9hcGktdmVyc2lvbj0yMDE4LTAxLTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9yZXBsaWNhdGlvbkpvYnMvNDhkZDM3YWMtMjMzNi00Y2Q2LWIxYzMtYTQzMjliYjIzN2Q5P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9800187c-7082-4705-8156-afdc4d7b80b7-2018-08-16 12:44:10Z-Ps" + "2c3610ac-65cd-421a-a0d9-bd9ac89c3095" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534419850529)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535024650529)\\/\",\"ClientRequestId\":\"9800187c-7082-4705-8156-afdc4d7b80b7-2018-08-16 12:44:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zqu4F1fOsYSEt1+L1+KolmgFDRQd0AMcZUmsSu2M+0M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618780231598)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619385031598)\\/\",\"ClientRequestId\":\"c0db619d-8a5d-4453-b367-2738d47f2eee-2021-04-18 22:10:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"btWudoKLGvSWZKrWvFWd9CmfoVBEzTXRkN5xtZspxNc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3\",\r\n \"name\": \"09653bf6-5e79-4d6d-8e27-77dd460612b3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb254c26-125a-483f-9be3-b21cfd649897-2018-08-16 12:44:06Z-Ps ActivityId: b443b8b6-b8c9-44b3-bcf7-42a64ef73048\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-16T12:44:10.0766132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-16T12:44:09.3633808Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6a871586-8c74-5634-90d8-d593d746731e\",\r\n \"targetObjectName\": \"a2aPrimaryFabric10\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"6a871586-8c74-5634-90d8-d593d746731e\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric10\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9800187c-7082-4705-8156-afdc4d7b80b7-2018-08-16 12:44:10Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "2c3610ac-65cd-421a-a0d9-bd9ac89c3095" ], "x-ms-correlation-request-id": [ - "40e632b3-96ca-4ebc-9760-713a65e93f6f" + "050c2e6c-bb03-4a42-99b3-8c3df2c8203a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124410Z:40e632b3-96ca-4ebc-9760-713a65e93f6f" + "WESTINDIA:20210418T221031Z:050c2e6c-bb03-4a42-99b3-8c3df2c8203a" ], "Date": [ - "Thu, 16 Aug 2018 12:44:10 GMT" + "Sun, 18 Apr 2021 22:10:31 GMT" + ], + "Content-Length": [ + "1320" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9\",\r\n \"name\": \"48dd37ac-2336-4cd6-b1c3-a4329bb237d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e6355713-7c61-4ce5-9d33-d66bd43409e8 ActivityId: b9556d85-4544-4a7c-8169-827b2883df9a\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T22:09:30.012546Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T22:09:29.8261043Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"857f64ab-f32c-5457-b742-66323ca0696e\",\r\n \"targetObjectName\": \"a2aRecoveryFabric106\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"857f64ab-f32c-5457-b742-66323ca0696e\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric106\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3?api-version=2018-01-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MTAvcmVwbGljYXRpb25Kb2JzLzA5NjUzYmY2LTVlNzktNGQ2ZC04ZTI3LTc3ZGQ0NjA2MTJiMz9hcGktdmVyc2lvbj0yMDE4LTAxLTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9yZXBsaWNhdGlvbkpvYnMvNDhkZDM3YWMtMjMzNi00Y2Q2LWIxYzMtYTQzMjliYjIzN2Q5P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92e9394d-8c2c-44e7-9c7a-51f0d3a76dd8-2018-08-16 12:45:10Z-Ps" + "c46a0efc-9605-4e0f-9c77-8aa06481686f" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534419910880)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535024710880)\\/\",\"ClientRequestId\":\"92e9394d-8c2c-44e7-9c7a-51f0d3a76dd8-2018-08-16 12:45:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"voU/2v7omATWfCkyzGIQznfEjhZIhWbjuSfc8Dc65W8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618780251981)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619385051981)\\/\",\"ClientRequestId\":\"9c500351-0d88-45e8-9315-b212e1679aa5-2021-04-18 22:10:51Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"wkFHDWimsgxZ73xRV0KR2mNwbkG3iy5TzPKi7JJ4OV8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3\",\r\n \"name\": \"09653bf6-5e79-4d6d-8e27-77dd460612b3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb254c26-125a-483f-9be3-b21cfd649897-2018-08-16 12:44:06Z-Ps ActivityId: b443b8b6-b8c9-44b3-bcf7-42a64ef73048\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-16T12:44:10.0766132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-16T12:44:09.3633808Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6a871586-8c74-5634-90d8-d593d746731e\",\r\n \"targetObjectName\": \"a2aPrimaryFabric10\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"6a871586-8c74-5634-90d8-d593d746731e\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric10\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "92e9394d-8c2c-44e7-9c7a-51f0d3a76dd8-2018-08-16 12:45:10Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "c46a0efc-9605-4e0f-9c77-8aa06481686f" ], "x-ms-correlation-request-id": [ - "db7efaf9-852c-46a2-a7b0-6090b2e3dd99" + "26b09ce6-c515-4558-9d96-10c9fbdae000" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124511Z:db7efaf9-852c-46a2-a7b0-6090b2e3dd99" + "WESTINDIA:20210418T221052Z:26b09ce6-c515-4558-9d96-10c9fbdae000" ], "Date": [ - "Thu, 16 Aug 2018 12:45:11 GMT" + "Sun, 18 Apr 2021 22:10:51 GMT" + ], + "Content-Length": [ + "1359" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationJobs/48dd37ac-2336-4cd6-b1c3-a4329bb237d9\",\r\n \"name\": \"48dd37ac-2336-4cd6-b1c3-a4329bb237d9\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e6355713-7c61-4ce5-9d33-d66bd43409e8 ActivityId: b9556d85-4544-4a7c-8169-827b2883df9a\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T22:10:37.3181312Z\",\r\n \"endTime\": \"2021-04-18T22:10:37.5631264Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T22:09:29.8261043Z\",\r\n \"endTime\": \"2021-04-18T22:10:37Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"857f64ab-f32c-5457-b742-66323ca0696e\",\r\n \"targetObjectName\": \"a2aRecoveryFabric106\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"857f64ab-f32c-5457-b742-66323ca0696e\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric106\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3?api-version=2018-01-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MTAvcmVwbGljYXRpb25Kb2JzLzA5NjUzYmY2LTVlNzktNGQ2ZC04ZTI3LTc3ZGQ0NjA2MTJiMz9hcGktdmVyc2lvbj0yMDE4LTAxLTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationFabrics/a2aRecoveryFabric106?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38ca3e59-a77f-4f6b-b8eb-394f504ac9d2-2018-08-16 12:46:11Z-Ps" + "67e3b69c-8938-4dc4-853c-bd8be867ee5d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534419971370)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535024771370)\\/\",\"ClientRequestId\":\"38ca3e59-a77f-4f6b-b8eb-394f504ac9d2-2018-08-16 12:46:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2vnHznbFgsVT1LWAsd2eYDnScAfGLquA7ISl4rbSwCM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618780252347)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619385052347)\\/\",\"ClientRequestId\":\"07f4c0c4-a719-4442-92e2-c30476d55140-2021-04-18 22:10:52Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AETnLqpuMwfWzYDlSurEYy8S7dkDlGzpd2ELI8sU71M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3\",\r\n \"name\": \"09653bf6-5e79-4d6d-8e27-77dd460612b3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb254c26-125a-483f-9be3-b21cfd649897-2018-08-16 12:44:06Z-Ps ActivityId: b443b8b6-b8c9-44b3-bcf7-42a64ef73048\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-16T12:45:16.6967338Z\",\r\n \"endTime\": \"2018-08-16T12:45:16.9154823Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-16T12:44:09.3633808Z\",\r\n \"endTime\": \"2018-08-16T12:45:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6a871586-8c74-5634-90d8-d593d746731e\",\r\n \"targetObjectName\": \"a2aPrimaryFabric10\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"6a871586-8c74-5634-90d8-d593d746731e\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric10\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1377" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "67e3b69c-8938-4dc4-853c-bd8be867ee5d 4/18/2021 10:10:52 PM" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "38ca3e59-a77f-4f6b-b8eb-394f504ac9d2-2018-08-16 12:46:11Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "67e3b69c-8938-4dc4-853c-bd8be867ee5d" ], "x-ms-correlation-request-id": [ - "6cfb1819-f373-46b5-8ef7-a9711ec511f7" + "554ff373-d2f5-4352-a66e-507e0fedd92b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124611Z:6cfb1819-f373-46b5-8ef7-a9711ec511f7" + "WESTINDIA:20210418T221052Z:554ff373-d2f5-4352-a66e-507e0fedd92b" ], "Date": [ - "Thu, 16 Aug 2018 12:46:11 GMT" + "Sun, 18 Apr 2021 22:10:52 GMT" + ], + "Content-Length": [ + "700" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric106\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationFabrics/a2aRecoveryFabric106\",\r\n \"properties\": {\r\n \"friendlyName\": \"West Central US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"857f64ab-f32c-5457-b742-66323ca0696e\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westcentralus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationFabrics/a2aPrimaryFabric10?api-version=2018-01-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MTAvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMxMD9hcGktdmVyc2lvbj0yMDE4LTAxLTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationFabrics/a2aRecoveryFabric106?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNi9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDY/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b64506b2-4b66-4669-9b33-ae537e1d64f4-2018-08-16 12:46:11Z-Ps" + "8dd1efa4-02c9-453e-8ab1-8b6719d350da" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534419971750)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535024771750)\\/\",\"ClientRequestId\":\"b64506b2-4b66-4669-9b33-ae537e1d64f4-2018-08-16 12:46:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4f+210Cs1n/w0bBgzXsKmo94f2/lwQ9cXF8U17JxBEc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618780253113)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619385053113)\\/\",\"ClientRequestId\":\"e0eb0e65-7129-46a1-a1e1-2fb2a72c50bc-2021-04-18 22:10:53Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"VT0Jzi/BtG5tDEQITvyUC7FCzAAbFXbOSFQQZjlbGj0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationFabrics/a2aPrimaryFabric10\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"6a871586-8c74-5634-90d8-d593d746731e\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "668" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "b64506b2-4b66-4669-9b33-ae537e1d64f4-2018-08-16 12:46:11Z-Ps 8/16/2018 12:46:11 PM" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "8dd1efa4-02c9-453e-8ab1-8b6719d350da 4/18/2021 10:10:53 PM" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b64506b2-4b66-4669-9b33-ae537e1d64f4-2018-08-16 12:46:11Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "8dd1efa4-02c9-453e-8ab1-8b6719d350da" ], "x-ms-correlation-request-id": [ - "6b7fff0d-fac8-44cf-881f-76ab2baa332a" + "b4c8986d-e16a-4ed6-abd9-3ced91e1c426" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124612Z:6b7fff0d-fac8-44cf-881f-76ab2baa332a" + "WESTINDIA:20210418T221053Z:b4c8986d-e16a-4ed6-abd9-3ced91e1c426" ], "Date": [ - "Thu, 16 Aug 2018 12:46:11 GMT" + "Sun, 18 Apr 2021 22:10:52 GMT" + ], + "Content-Length": [ + "700" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric106\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg106/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest106/replicationFabrics/a2aRecoveryFabric106\",\r\n \"properties\": {\r\n \"friendlyName\": \"West Central US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"857f64ab-f32c-5457-b742-66323ca0696e\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westcentralus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "7c943c1b-5122-4097-90c8-861411bdd574" + "SubscriptionId": "509099b2-9d2c-4636-b43e-bd5cafb6be69", + "NamingSuffix": "f1547c34-a3f2-4046-91c0-ba17b30bf7ab" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/TestNewA2AManagedDiskReplicationConfig.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/TestNewA2AManagedDiskReplicationConfig.json index 7b1a8ca37827..e2940c47fbf9 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/TestNewA2AManagedDiskReplicationConfig.json +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/TestNewA2AManagedDiskReplicationConfig.json @@ -1,49 +1,48 @@ { "Entries": [ { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L2xvY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recRG105?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL3JlY1JHMTA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "63136300-3ddc-4fe8-898b-557d7dbc989f" + "9cdb217b-e9fc-4de2-940e-3219836d5a23" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Internal.Subscriptions.SubscriptionClient/4.1.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastasia\",\r\n \"name\": \"eastasia\",\r\n \"displayName\": \"East Asia\",\r\n \"longitude\": \"114.188\",\r\n \"latitude\": \"22.267\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southeastasia\",\r\n \"name\": \"southeastasia\",\r\n \"displayName\": \"Southeast Asia\",\r\n \"longitude\": \"103.833\",\r\n \"latitude\": \"1.283\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/centralus\",\r\n \"name\": \"centralus\",\r\n \"displayName\": \"Central US\",\r\n \"longitude\": \"-93.6208\",\r\n \"latitude\": \"41.5908\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastus\",\r\n \"name\": \"eastus\",\r\n \"displayName\": \"East US\",\r\n \"longitude\": \"-79.8164\",\r\n \"latitude\": \"37.3719\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastus2\",\r\n \"name\": \"eastus2\",\r\n \"displayName\": \"East US 2\",\r\n \"longitude\": \"-78.3889\",\r\n \"latitude\": \"36.6681\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westus\",\r\n \"name\": \"westus\",\r\n \"displayName\": \"West US\",\r\n \"longitude\": \"-122.417\",\r\n \"latitude\": \"37.783\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/northcentralus\",\r\n \"name\": \"northcentralus\",\r\n \"displayName\": \"North Central US\",\r\n \"longitude\": \"-87.6278\",\r\n \"latitude\": \"41.8819\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southcentralus\",\r\n \"name\": \"southcentralus\",\r\n \"displayName\": \"South Central US\",\r\n \"longitude\": \"-98.5\",\r\n \"latitude\": \"29.4167\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/northeurope\",\r\n \"name\": \"northeurope\",\r\n \"displayName\": \"North Europe\",\r\n \"longitude\": \"-6.2597\",\r\n \"latitude\": \"53.3478\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westeurope\",\r\n \"name\": \"westeurope\",\r\n \"displayName\": \"West Europe\",\r\n \"longitude\": \"4.9\",\r\n \"latitude\": \"52.3667\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/japanwest\",\r\n \"name\": \"japanwest\",\r\n \"displayName\": \"Japan West\",\r\n \"longitude\": \"135.5022\",\r\n \"latitude\": \"34.6939\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/japaneast\",\r\n \"name\": \"japaneast\",\r\n \"displayName\": \"Japan East\",\r\n \"longitude\": \"139.77\",\r\n \"latitude\": \"35.68\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/brazilsouth\",\r\n \"name\": \"brazilsouth\",\r\n \"displayName\": \"Brazil South\",\r\n \"longitude\": \"-46.633\",\r\n \"latitude\": \"-23.55\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiaeast\",\r\n \"name\": \"australiaeast\",\r\n \"displayName\": \"Australia East\",\r\n \"longitude\": \"151.2094\",\r\n \"latitude\": \"-33.86\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiasoutheast\",\r\n \"name\": \"australiasoutheast\",\r\n \"displayName\": \"Australia Southeast\",\r\n \"longitude\": \"144.9631\",\r\n \"latitude\": \"-37.8136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southindia\",\r\n \"name\": \"southindia\",\r\n \"displayName\": \"South India\",\r\n \"longitude\": \"80.1636\",\r\n \"latitude\": \"12.9822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/centralindia\",\r\n \"name\": \"centralindia\",\r\n \"displayName\": \"Central India\",\r\n \"longitude\": \"73.9197\",\r\n \"latitude\": \"18.5822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westindia\",\r\n \"name\": \"westindia\",\r\n \"displayName\": \"West India\",\r\n \"longitude\": \"72.868\",\r\n \"latitude\": \"19.088\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/canadacentral\",\r\n \"name\": \"canadacentral\",\r\n \"displayName\": \"Canada Central\",\r\n \"longitude\": \"-79.383\",\r\n \"latitude\": \"43.653\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/canadaeast\",\r\n \"name\": \"canadaeast\",\r\n \"displayName\": \"Canada East\",\r\n \"longitude\": \"-71.217\",\r\n \"latitude\": \"46.817\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/uksouth\",\r\n \"name\": \"uksouth\",\r\n \"displayName\": \"UK South\",\r\n \"longitude\": \"-0.799\",\r\n \"latitude\": \"50.941\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/ukwest\",\r\n \"name\": \"ukwest\",\r\n \"displayName\": \"UK West\",\r\n \"longitude\": \"-3.084\",\r\n \"latitude\": \"53.427\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westcentralus\",\r\n \"name\": \"westcentralus\",\r\n \"displayName\": \"West Central US\",\r\n \"longitude\": \"-110.234\",\r\n \"latitude\": \"40.890\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westus2\",\r\n \"name\": \"westus2\",\r\n \"displayName\": \"West US 2\",\r\n \"longitude\": \"-119.852\",\r\n \"latitude\": \"47.233\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/koreacentral\",\r\n \"name\": \"koreacentral\",\r\n \"displayName\": \"Korea Central\",\r\n \"longitude\": \"126.9780\",\r\n \"latitude\": \"37.5665\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/koreasouth\",\r\n \"name\": \"koreasouth\",\r\n \"displayName\": \"Korea South\",\r\n \"longitude\": \"129.0756\",\r\n \"latitude\": \"35.1796\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/francecentral\",\r\n \"name\": \"francecentral\",\r\n \"displayName\": \"France Central\",\r\n \"longitude\": \"2.3730\",\r\n \"latitude\": \"46.3772\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/francesouth\",\r\n \"name\": \"francesouth\",\r\n \"displayName\": \"France South\",\r\n \"longitude\": \"2.1972\",\r\n \"latitude\": \"43.8345\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiacentral\",\r\n \"name\": \"australiacentral\",\r\n \"displayName\": \"Australia Central\",\r\n \"longitude\": \"149.1244\",\r\n \"latitude\": \"-35.3075\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiacentral2\",\r\n \"name\": \"australiacentral2\",\r\n \"displayName\": \"Australia Central 2\",\r\n \"longitude\": \"149.1244\",\r\n \"latitude\": \"-35.3075\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "5269" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "d01b6f03-9457-4e9d-a52c-ba8ee1112b5c" + "d10bad89-7897-4cb3-933f-d6f5cb082785" ], "x-ms-correlation-request-id": [ - "d01b6f03-9457-4e9d-a52c-ba8ee1112b5c" + "d10bad89-7897-4cb3-933f-d6f5cb082785" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124256Z:d01b6f03-9457-4e9d-a52c-ba8ee1112b5c" + "WESTINDIA:20210418T214819Z:d10bad89-7897-4cb3-933f-d6f5cb082785" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,59 +50,59 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:42:56 GMT" + "Sun, 18 Apr 2021 21:48:18 GMT" + ], + "Content-Length": [ + "176" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG105\",\r\n \"name\": \"recRG105\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L2xvY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG105/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork105?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTA1P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4abe2db-af9c-4a04-bcaf-e5ea9abd2d1f" + "6234886d-698f-452a-8bb7-06eff3b0318d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Internal.Subscriptions.SubscriptionClient/4.1.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastasia\",\r\n \"name\": \"eastasia\",\r\n \"displayName\": \"East Asia\",\r\n \"longitude\": \"114.188\",\r\n \"latitude\": \"22.267\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southeastasia\",\r\n \"name\": \"southeastasia\",\r\n \"displayName\": \"Southeast Asia\",\r\n \"longitude\": \"103.833\",\r\n \"latitude\": \"1.283\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/centralus\",\r\n \"name\": \"centralus\",\r\n \"displayName\": \"Central US\",\r\n \"longitude\": \"-93.6208\",\r\n \"latitude\": \"41.5908\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastus\",\r\n \"name\": \"eastus\",\r\n \"displayName\": \"East US\",\r\n \"longitude\": \"-79.8164\",\r\n \"latitude\": \"37.3719\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastus2\",\r\n \"name\": \"eastus2\",\r\n \"displayName\": \"East US 2\",\r\n \"longitude\": \"-78.3889\",\r\n \"latitude\": \"36.6681\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westus\",\r\n \"name\": \"westus\",\r\n \"displayName\": \"West US\",\r\n \"longitude\": \"-122.417\",\r\n \"latitude\": \"37.783\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/northcentralus\",\r\n \"name\": \"northcentralus\",\r\n \"displayName\": \"North Central US\",\r\n \"longitude\": \"-87.6278\",\r\n \"latitude\": \"41.8819\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southcentralus\",\r\n \"name\": \"southcentralus\",\r\n \"displayName\": \"South Central US\",\r\n \"longitude\": \"-98.5\",\r\n \"latitude\": \"29.4167\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/northeurope\",\r\n \"name\": \"northeurope\",\r\n \"displayName\": \"North Europe\",\r\n \"longitude\": \"-6.2597\",\r\n \"latitude\": \"53.3478\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westeurope\",\r\n \"name\": \"westeurope\",\r\n \"displayName\": \"West Europe\",\r\n \"longitude\": \"4.9\",\r\n \"latitude\": \"52.3667\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/japanwest\",\r\n \"name\": \"japanwest\",\r\n \"displayName\": \"Japan West\",\r\n \"longitude\": \"135.5022\",\r\n \"latitude\": \"34.6939\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/japaneast\",\r\n \"name\": \"japaneast\",\r\n \"displayName\": \"Japan East\",\r\n \"longitude\": \"139.77\",\r\n \"latitude\": \"35.68\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/brazilsouth\",\r\n \"name\": \"brazilsouth\",\r\n \"displayName\": \"Brazil South\",\r\n \"longitude\": \"-46.633\",\r\n \"latitude\": \"-23.55\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiaeast\",\r\n \"name\": \"australiaeast\",\r\n \"displayName\": \"Australia East\",\r\n \"longitude\": \"151.2094\",\r\n \"latitude\": \"-33.86\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiasoutheast\",\r\n \"name\": \"australiasoutheast\",\r\n \"displayName\": \"Australia Southeast\",\r\n \"longitude\": \"144.9631\",\r\n \"latitude\": \"-37.8136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southindia\",\r\n \"name\": \"southindia\",\r\n \"displayName\": \"South India\",\r\n \"longitude\": \"80.1636\",\r\n \"latitude\": \"12.9822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/centralindia\",\r\n \"name\": \"centralindia\",\r\n \"displayName\": \"Central India\",\r\n \"longitude\": \"73.9197\",\r\n \"latitude\": \"18.5822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westindia\",\r\n \"name\": \"westindia\",\r\n \"displayName\": \"West India\",\r\n \"longitude\": \"72.868\",\r\n \"latitude\": \"19.088\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/canadacentral\",\r\n \"name\": \"canadacentral\",\r\n \"displayName\": \"Canada Central\",\r\n \"longitude\": \"-79.383\",\r\n \"latitude\": \"43.653\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/canadaeast\",\r\n \"name\": \"canadaeast\",\r\n \"displayName\": \"Canada East\",\r\n \"longitude\": \"-71.217\",\r\n \"latitude\": \"46.817\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/uksouth\",\r\n \"name\": \"uksouth\",\r\n \"displayName\": \"UK South\",\r\n \"longitude\": \"-0.799\",\r\n \"latitude\": \"50.941\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/ukwest\",\r\n \"name\": \"ukwest\",\r\n \"displayName\": \"UK West\",\r\n \"longitude\": \"-3.084\",\r\n \"latitude\": \"53.427\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westcentralus\",\r\n \"name\": \"westcentralus\",\r\n \"displayName\": \"West Central US\",\r\n \"longitude\": \"-110.234\",\r\n \"latitude\": \"40.890\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westus2\",\r\n \"name\": \"westus2\",\r\n \"displayName\": \"West US 2\",\r\n \"longitude\": \"-119.852\",\r\n \"latitude\": \"47.233\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/koreacentral\",\r\n \"name\": \"koreacentral\",\r\n \"displayName\": \"Korea Central\",\r\n \"longitude\": \"126.9780\",\r\n \"latitude\": \"37.5665\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/koreasouth\",\r\n \"name\": \"koreasouth\",\r\n \"displayName\": \"Korea South\",\r\n \"longitude\": \"129.0756\",\r\n \"latitude\": \"35.1796\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/francecentral\",\r\n \"name\": \"francecentral\",\r\n \"displayName\": \"France Central\",\r\n \"longitude\": \"2.3730\",\r\n \"latitude\": \"46.3772\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/francesouth\",\r\n \"name\": \"francesouth\",\r\n \"displayName\": \"France South\",\r\n \"longitude\": \"2.1972\",\r\n \"latitude\": \"43.8345\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiacentral\",\r\n \"name\": \"australiacentral\",\r\n \"displayName\": \"Australia Central\",\r\n \"longitude\": \"149.1244\",\r\n \"latitude\": \"-35.3075\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiacentral2\",\r\n \"name\": \"australiacentral2\",\r\n \"displayName\": \"Australia Central 2\",\r\n \"longitude\": \"149.1244\",\r\n \"latitude\": \"-35.3075\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5269" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "92ce9a08-b07c-4316-af1b-197d5b06884c" + "1679f876-02d9-444e-85d5-6aef270237d5" ], "x-ms-correlation-request-id": [ - "92ce9a08-b07c-4316-af1b-197d5b06884c" + "1679f876-02d9-444e-85d5-6aef270237d5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124302Z:92ce9a08-b07c-4316-af1b-197d5b06884c" + "WESTINDIA:20210418T214840Z:1679f876-02d9-444e-85d5-6aef270237d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,299 +110,342 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:01 GMT" + "Sun, 18 Apr 2021 21:48:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "235" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/A2ARecoveryNetwork105' under resource group 'recRG105' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L2xvY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG105/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork105?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTA1P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0e124c7-a2a0-43f8-b893-14e10779600f" - ], - "accept-language": [ - "en-US" + "6234886d-698f-452a-8bb7-06eff3b0318d" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Internal.Subscriptions.SubscriptionClient/4.1.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastasia\",\r\n \"name\": \"eastasia\",\r\n \"displayName\": \"East Asia\",\r\n \"longitude\": \"114.188\",\r\n \"latitude\": \"22.267\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southeastasia\",\r\n \"name\": \"southeastasia\",\r\n \"displayName\": \"Southeast Asia\",\r\n \"longitude\": \"103.833\",\r\n \"latitude\": \"1.283\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/centralus\",\r\n \"name\": \"centralus\",\r\n \"displayName\": \"Central US\",\r\n \"longitude\": \"-93.6208\",\r\n \"latitude\": \"41.5908\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastus\",\r\n \"name\": \"eastus\",\r\n \"displayName\": \"East US\",\r\n \"longitude\": \"-79.8164\",\r\n \"latitude\": \"37.3719\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastus2\",\r\n \"name\": \"eastus2\",\r\n \"displayName\": \"East US 2\",\r\n \"longitude\": \"-78.3889\",\r\n \"latitude\": \"36.6681\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westus\",\r\n \"name\": \"westus\",\r\n \"displayName\": \"West US\",\r\n \"longitude\": \"-122.417\",\r\n \"latitude\": \"37.783\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/northcentralus\",\r\n \"name\": \"northcentralus\",\r\n \"displayName\": \"North Central US\",\r\n \"longitude\": \"-87.6278\",\r\n \"latitude\": \"41.8819\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southcentralus\",\r\n \"name\": \"southcentralus\",\r\n \"displayName\": \"South Central US\",\r\n \"longitude\": \"-98.5\",\r\n \"latitude\": \"29.4167\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/northeurope\",\r\n \"name\": \"northeurope\",\r\n \"displayName\": \"North Europe\",\r\n \"longitude\": \"-6.2597\",\r\n \"latitude\": \"53.3478\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westeurope\",\r\n \"name\": \"westeurope\",\r\n \"displayName\": \"West Europe\",\r\n \"longitude\": \"4.9\",\r\n \"latitude\": \"52.3667\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/japanwest\",\r\n \"name\": \"japanwest\",\r\n \"displayName\": \"Japan West\",\r\n \"longitude\": \"135.5022\",\r\n \"latitude\": \"34.6939\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/japaneast\",\r\n \"name\": \"japaneast\",\r\n \"displayName\": \"Japan East\",\r\n \"longitude\": \"139.77\",\r\n \"latitude\": \"35.68\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/brazilsouth\",\r\n \"name\": \"brazilsouth\",\r\n \"displayName\": \"Brazil South\",\r\n \"longitude\": \"-46.633\",\r\n \"latitude\": \"-23.55\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiaeast\",\r\n \"name\": \"australiaeast\",\r\n \"displayName\": \"Australia East\",\r\n \"longitude\": \"151.2094\",\r\n \"latitude\": \"-33.86\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiasoutheast\",\r\n \"name\": \"australiasoutheast\",\r\n \"displayName\": \"Australia Southeast\",\r\n \"longitude\": \"144.9631\",\r\n \"latitude\": \"-37.8136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southindia\",\r\n \"name\": \"southindia\",\r\n \"displayName\": \"South India\",\r\n \"longitude\": \"80.1636\",\r\n \"latitude\": \"12.9822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/centralindia\",\r\n \"name\": \"centralindia\",\r\n \"displayName\": \"Central India\",\r\n \"longitude\": \"73.9197\",\r\n \"latitude\": \"18.5822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westindia\",\r\n \"name\": \"westindia\",\r\n \"displayName\": \"West India\",\r\n \"longitude\": \"72.868\",\r\n \"latitude\": \"19.088\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/canadacentral\",\r\n \"name\": \"canadacentral\",\r\n \"displayName\": \"Canada Central\",\r\n \"longitude\": \"-79.383\",\r\n \"latitude\": \"43.653\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/canadaeast\",\r\n \"name\": \"canadaeast\",\r\n \"displayName\": \"Canada East\",\r\n \"longitude\": \"-71.217\",\r\n \"latitude\": \"46.817\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/uksouth\",\r\n \"name\": \"uksouth\",\r\n \"displayName\": \"UK South\",\r\n \"longitude\": \"-0.799\",\r\n \"latitude\": \"50.941\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/ukwest\",\r\n \"name\": \"ukwest\",\r\n \"displayName\": \"UK West\",\r\n \"longitude\": \"-3.084\",\r\n \"latitude\": \"53.427\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westcentralus\",\r\n \"name\": \"westcentralus\",\r\n \"displayName\": \"West Central US\",\r\n \"longitude\": \"-110.234\",\r\n \"latitude\": \"40.890\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westus2\",\r\n \"name\": \"westus2\",\r\n \"displayName\": \"West US 2\",\r\n \"longitude\": \"-119.852\",\r\n \"latitude\": \"47.233\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/koreacentral\",\r\n \"name\": \"koreacentral\",\r\n \"displayName\": \"Korea Central\",\r\n \"longitude\": \"126.9780\",\r\n \"latitude\": \"37.5665\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/koreasouth\",\r\n \"name\": \"koreasouth\",\r\n \"displayName\": \"Korea South\",\r\n \"longitude\": \"129.0756\",\r\n \"latitude\": \"35.1796\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/francecentral\",\r\n \"name\": \"francecentral\",\r\n \"displayName\": \"France Central\",\r\n \"longitude\": \"2.3730\",\r\n \"latitude\": \"46.3772\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/francesouth\",\r\n \"name\": \"francesouth\",\r\n \"displayName\": \"France South\",\r\n \"longitude\": \"2.1972\",\r\n \"latitude\": \"43.8345\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiacentral\",\r\n \"name\": \"australiacentral\",\r\n \"displayName\": \"Australia Central\",\r\n \"longitude\": \"149.1244\",\r\n \"latitude\": \"-35.3075\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiacentral2\",\r\n \"name\": \"australiacentral2\",\r\n \"displayName\": \"Australia Central 2\",\r\n \"longitude\": \"149.1244\",\r\n \"latitude\": \"-35.3075\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5269" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "ETag": [ + "W/\"3ca799b7-337d-4f89-88b5-28063ec7409a\"" ], "x-ms-request-id": [ - "f7b40455-451c-4b50-8cf9-0cc82dcbd413" + "e50016b8-dd1d-4a49-8b72-ae8913b58c35" ], "x-ms-correlation-request-id": [ - "f7b40455-451c-4b50-8cf9-0cc82dcbd413" + "87795b10-b4b0-4fd3-b0ef-a8a21413c9fd" ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124306Z:f7b40455-451c-4b50-8cf9-0cc82dcbd413" + "x-ms-arm-service-request-id": [ + "82e0d64a-36e9-43b0-ba9e-2e774417f8ac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214856Z:87795b10-b4b0-4fd3-b0ef-a8a21413c9fd" + ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:06 GMT" + "Sun, 18 Apr 2021 21:48:56 GMT" + ], + "Content-Length": [ + "1306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork105\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG105/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork105\",\r\n \"etag\": \"W/\\\"3ca799b7-337d-4f89-88b5-28063ec7409a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"885df81a-8fe7-4241-944f-4813af28471d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG105/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork105/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"3ca799b7-337d-4f89-88b5-28063ec7409a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L2xvY2F0aW9ucz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG105/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork105?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTA1P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc0203c6-95a9-4b57-b370-f2071c7e66cf" + "6234886d-698f-452a-8bb7-06eff3b0318d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Internal.Subscriptions.SubscriptionClient/4.1.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastasia\",\r\n \"name\": \"eastasia\",\r\n \"displayName\": \"East Asia\",\r\n \"longitude\": \"114.188\",\r\n \"latitude\": \"22.267\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southeastasia\",\r\n \"name\": \"southeastasia\",\r\n \"displayName\": \"Southeast Asia\",\r\n \"longitude\": \"103.833\",\r\n \"latitude\": \"1.283\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/centralus\",\r\n \"name\": \"centralus\",\r\n \"displayName\": \"Central US\",\r\n \"longitude\": \"-93.6208\",\r\n \"latitude\": \"41.5908\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastus\",\r\n \"name\": \"eastus\",\r\n \"displayName\": \"East US\",\r\n \"longitude\": \"-79.8164\",\r\n \"latitude\": \"37.3719\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/eastus2\",\r\n \"name\": \"eastus2\",\r\n \"displayName\": \"East US 2\",\r\n \"longitude\": \"-78.3889\",\r\n \"latitude\": \"36.6681\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westus\",\r\n \"name\": \"westus\",\r\n \"displayName\": \"West US\",\r\n \"longitude\": \"-122.417\",\r\n \"latitude\": \"37.783\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/northcentralus\",\r\n \"name\": \"northcentralus\",\r\n \"displayName\": \"North Central US\",\r\n \"longitude\": \"-87.6278\",\r\n \"latitude\": \"41.8819\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southcentralus\",\r\n \"name\": \"southcentralus\",\r\n \"displayName\": \"South Central US\",\r\n \"longitude\": \"-98.5\",\r\n \"latitude\": \"29.4167\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/northeurope\",\r\n \"name\": \"northeurope\",\r\n \"displayName\": \"North Europe\",\r\n \"longitude\": \"-6.2597\",\r\n \"latitude\": \"53.3478\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westeurope\",\r\n \"name\": \"westeurope\",\r\n \"displayName\": \"West Europe\",\r\n \"longitude\": \"4.9\",\r\n \"latitude\": \"52.3667\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/japanwest\",\r\n \"name\": \"japanwest\",\r\n \"displayName\": \"Japan West\",\r\n \"longitude\": \"135.5022\",\r\n \"latitude\": \"34.6939\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/japaneast\",\r\n \"name\": \"japaneast\",\r\n \"displayName\": \"Japan East\",\r\n \"longitude\": \"139.77\",\r\n \"latitude\": \"35.68\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/brazilsouth\",\r\n \"name\": \"brazilsouth\",\r\n \"displayName\": \"Brazil South\",\r\n \"longitude\": \"-46.633\",\r\n \"latitude\": \"-23.55\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiaeast\",\r\n \"name\": \"australiaeast\",\r\n \"displayName\": \"Australia East\",\r\n \"longitude\": \"151.2094\",\r\n \"latitude\": \"-33.86\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiasoutheast\",\r\n \"name\": \"australiasoutheast\",\r\n \"displayName\": \"Australia Southeast\",\r\n \"longitude\": \"144.9631\",\r\n \"latitude\": \"-37.8136\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/southindia\",\r\n \"name\": \"southindia\",\r\n \"displayName\": \"South India\",\r\n \"longitude\": \"80.1636\",\r\n \"latitude\": \"12.9822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/centralindia\",\r\n \"name\": \"centralindia\",\r\n \"displayName\": \"Central India\",\r\n \"longitude\": \"73.9197\",\r\n \"latitude\": \"18.5822\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westindia\",\r\n \"name\": \"westindia\",\r\n \"displayName\": \"West India\",\r\n \"longitude\": \"72.868\",\r\n \"latitude\": \"19.088\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/canadacentral\",\r\n \"name\": \"canadacentral\",\r\n \"displayName\": \"Canada Central\",\r\n \"longitude\": \"-79.383\",\r\n \"latitude\": \"43.653\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/canadaeast\",\r\n \"name\": \"canadaeast\",\r\n \"displayName\": \"Canada East\",\r\n \"longitude\": \"-71.217\",\r\n \"latitude\": \"46.817\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/uksouth\",\r\n \"name\": \"uksouth\",\r\n \"displayName\": \"UK South\",\r\n \"longitude\": \"-0.799\",\r\n \"latitude\": \"50.941\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/ukwest\",\r\n \"name\": \"ukwest\",\r\n \"displayName\": \"UK West\",\r\n \"longitude\": \"-3.084\",\r\n \"latitude\": \"53.427\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westcentralus\",\r\n \"name\": \"westcentralus\",\r\n \"displayName\": \"West Central US\",\r\n \"longitude\": \"-110.234\",\r\n \"latitude\": \"40.890\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/westus2\",\r\n \"name\": \"westus2\",\r\n \"displayName\": \"West US 2\",\r\n \"longitude\": \"-119.852\",\r\n \"latitude\": \"47.233\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/koreacentral\",\r\n \"name\": \"koreacentral\",\r\n \"displayName\": \"Korea Central\",\r\n \"longitude\": \"126.9780\",\r\n \"latitude\": \"37.5665\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/koreasouth\",\r\n \"name\": \"koreasouth\",\r\n \"displayName\": \"Korea South\",\r\n \"longitude\": \"129.0756\",\r\n \"latitude\": \"35.1796\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/francecentral\",\r\n \"name\": \"francecentral\",\r\n \"displayName\": \"France Central\",\r\n \"longitude\": \"2.3730\",\r\n \"latitude\": \"46.3772\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/francesouth\",\r\n \"name\": \"francesouth\",\r\n \"displayName\": \"France South\",\r\n \"longitude\": \"2.1972\",\r\n \"latitude\": \"43.8345\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiacentral\",\r\n \"name\": \"australiacentral\",\r\n \"displayName\": \"Australia Central\",\r\n \"longitude\": \"149.1244\",\r\n \"latitude\": \"-35.3075\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/locations/australiacentral2\",\r\n \"name\": \"australiacentral2\",\r\n \"displayName\": \"Australia Central 2\",\r\n \"longitude\": \"149.1244\",\r\n \"latitude\": \"-35.3075\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5269" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "ETag": [ + "W/\"3ca799b7-337d-4f89-88b5-28063ec7409a\"" ], "x-ms-request-id": [ - "5d037424-a85e-43c6-80ad-0a5ef0f43bca" + "8569b6fa-d6af-4f65-b349-ad38e7fd7d02" ], "x-ms-correlation-request-id": [ - "5d037424-a85e-43c6-80ad-0a5ef0f43bca" + "7578de3a-fcb2-4d25-80be-62548246fdf4" ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124310Z:5d037424-a85e-43c6-80ad-0a5ef0f43bca" + "x-ms-arm-service-request-id": [ + "b9b3723d-457e-443a-b1c4-0dc7253d1665" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214857Z:7578de3a-fcb2-4d25-80be-62548246fdf4" + ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:10 GMT" + "Sun, 18 Apr 2021 21:48:56 GMT" + ], + "Content-Length": [ + "1306" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork105\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG105/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork105\",\r\n \"etag\": \"W/\\\"3ca799b7-337d-4f89-88b5-28063ec7409a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"885df81a-8fe7-4241-944f-4813af28471d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG105/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork105/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"3ca799b7-337d-4f89-88b5-28063ec7409a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG105/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork105?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTA1P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"frontendSubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6b3d90dc-2d31-4b2b-95d6-5e8ad912487d" + "6234886d-698f-452a-8bb7-06eff3b0318d" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorization\": {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/virtualMachines\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/endpoints\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/subnets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/patch\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/baseline\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/antimalware\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SiteRecovery\",\r\n \"namespace\": \"Microsoft.SiteRecovery\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SiteRecoveryVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/backupLongTermRetentionVaults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/workers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/AppDynamics.APM\",\r\n \"namespace\": \"AppDynamics.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Aspera.Transfers\",\r\n \"namespace\": \"Aspera.Transfers\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Auth0.Cloud\",\r\n \"namespace\": \"Auth0.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-23\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Citrix.Cloud\",\r\n \"namespace\": \"Citrix.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Cloudyn.Analytics\",\r\n \"namespace\": \"Cloudyn.Analytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.DynatraceSaaS\",\r\n \"namespace\": \"Dynatrace.DynatraceSaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-27\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.Ruxit\",\r\n \"namespace\": \"Dynatrace.Ruxit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-07\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Lombiq.DotNest\",\r\n \"namespace\": \"Lombiq.DotNest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BillingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Invoices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContentModerator\",\r\n \"namespace\": \"Microsoft.ContentModerator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CustomerInsights\",\r\n \"namespace\": \"Microsoft.CustomerInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"38c77d00-5fcb-4cce-9d93-af4738258e3c\",\r\n \"roleDefinitionId\": \"E006F9C7-F333-477C-8AD6-1F3A9FE87F55\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hubs/profiles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/interactions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/authorizationPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors/mappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/kpi\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/views\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/links\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roleAssignments\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/widgetTypes\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/suggestTypeSchema\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/connectors\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningExperimentation\",\r\n \"namespace\": \"Microsoft.MachineLearningExperimentation\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningCompute\",\r\n \"namespace\": \"Microsoft.MachineLearningCompute\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operationalizationClusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningModelManagement\",\r\n \"namespace\": \"Microsoft.MachineLearningModelManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/nuubit.nextgencdn\",\r\n \"namespace\": \"nuubit.nextgencdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RevAPM.MobileCDN\",\r\n \"namespace\": \"RevAPM.MobileCDN\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-24\",\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/TrendMicro.DeepSecurity\",\r\n \"namespace\": \"TrendMicro.DeepSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "459189" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], - "Expires": [ - "-1" + "Content-Length": [ + "692" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "Retry-After": [ + "3" ], "x-ms-request-id": [ - "c124e788-44b1-499d-98bb-7c09ff81e9c9" + "e194468e-612d-427e-8b40-d22e874196c4" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westcentralus/operations/e194468e-612d-427e-8b40-d22e874196c4?api-version=2020-11-01" ], "x-ms-correlation-request-id": [ - "c124e788-44b1-499d-98bb-7c09ff81e9c9" + "4a39fe8b-56d5-4b33-87dc-eaff3c5097d7" ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124259Z:c124e788-44b1-499d-98bb-7c09ff81e9c9" + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "c24585e3-051a-48c3-9407-7e2304554fdd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214853Z:4a39fe8b-56d5-4b33-87dc-eaff3c5097d7" + ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:42:58 GMT" + "Sun, 18 Apr 2021 21:48:52 GMT" + ], + "Content-Length": [ + "1304" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork105\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG105/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork105\",\r\n \"etag\": \"W/\\\"79f0f2f0-0c99-4198-99cf-aafc15bf4ed0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"885df81a-8fe7-4241-944f-4813af28471d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG105/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork105/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"79f0f2f0-0c99-4198-99cf-aafc15bf4ed0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westcentralus/operations/e194468e-612d-427e-8b40-d22e874196c4?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zL2UxOTQ0NjhlLTYxMmQtNDI3ZS04YjQwLWQyMmU4NzQxOTZjND9hcGktdmVyc2lvbj0yMDIwLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cad4ef52-3b38-41d5-a356-6e594780d21c" - ], - "accept-language": [ - "en-US" + "6234886d-698f-452a-8bb7-06eff3b0318d" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorization\": {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/virtualMachines\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/endpoints\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/subnets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/patch\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/baseline\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/antimalware\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SiteRecovery\",\r\n \"namespace\": \"Microsoft.SiteRecovery\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SiteRecoveryVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/backupLongTermRetentionVaults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/workers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/AppDynamics.APM\",\r\n \"namespace\": \"AppDynamics.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Aspera.Transfers\",\r\n \"namespace\": \"Aspera.Transfers\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Auth0.Cloud\",\r\n \"namespace\": \"Auth0.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-23\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Citrix.Cloud\",\r\n \"namespace\": \"Citrix.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Cloudyn.Analytics\",\r\n \"namespace\": \"Cloudyn.Analytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.DynatraceSaaS\",\r\n \"namespace\": \"Dynatrace.DynatraceSaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-27\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.Ruxit\",\r\n \"namespace\": \"Dynatrace.Ruxit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-07\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Lombiq.DotNest\",\r\n \"namespace\": \"Lombiq.DotNest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BillingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Invoices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContentModerator\",\r\n \"namespace\": \"Microsoft.ContentModerator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CustomerInsights\",\r\n \"namespace\": \"Microsoft.CustomerInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"38c77d00-5fcb-4cce-9d93-af4738258e3c\",\r\n \"roleDefinitionId\": \"E006F9C7-F333-477C-8AD6-1F3A9FE87F55\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hubs/profiles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/interactions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/authorizationPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors/mappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/kpi\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/views\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/links\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roleAssignments\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/widgetTypes\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/suggestTypeSchema\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/connectors\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningExperimentation\",\r\n \"namespace\": \"Microsoft.MachineLearningExperimentation\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningCompute\",\r\n \"namespace\": \"Microsoft.MachineLearningCompute\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operationalizationClusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningModelManagement\",\r\n \"namespace\": \"Microsoft.MachineLearningModelManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/nuubit.nextgencdn\",\r\n \"namespace\": \"nuubit.nextgencdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RevAPM.MobileCDN\",\r\n \"namespace\": \"RevAPM.MobileCDN\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-24\",\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/TrendMicro.DeepSecurity\",\r\n \"namespace\": \"TrendMicro.DeepSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "459189" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], "x-ms-request-id": [ - "d79c344b-30e0-47d2-9a06-f27a86ed08bc" + "d3b8ee48-8cd3-4003-a09f-519663956e0c" ], "x-ms-correlation-request-id": [ - "d79c344b-30e0-47d2-9a06-f27a86ed08bc" + "a73bfca0-607b-41de-a540-a039d47e38d8" ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124301Z:d79c344b-30e0-47d2-9a06-f27a86ed08bc" + "x-ms-arm-service-request-id": [ + "7f130be7-da11-4685-a017-58e588d82637" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214856Z:a73bfca0-607b-41de-a540-a039d47e38d8" + ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:00 GMT" + "Sun, 18 Apr 2021 21:48:56 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Compute/images/RHEL?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9pbWFnZXMvUkhFTD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c19187db-41cd-4142-83a7-01f41a4b80f0" + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorization\": {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/virtualMachines\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/endpoints\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/subnets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/patch\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/baseline\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/antimalware\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SiteRecovery\",\r\n \"namespace\": \"Microsoft.SiteRecovery\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SiteRecoveryVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/backupLongTermRetentionVaults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/workers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/AppDynamics.APM\",\r\n \"namespace\": \"AppDynamics.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Aspera.Transfers\",\r\n \"namespace\": \"Aspera.Transfers\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Auth0.Cloud\",\r\n \"namespace\": \"Auth0.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-23\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Citrix.Cloud\",\r\n \"namespace\": \"Citrix.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Cloudyn.Analytics\",\r\n \"namespace\": \"Cloudyn.Analytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.DynatraceSaaS\",\r\n \"namespace\": \"Dynatrace.DynatraceSaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-27\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.Ruxit\",\r\n \"namespace\": \"Dynatrace.Ruxit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-07\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Lombiq.DotNest\",\r\n \"namespace\": \"Lombiq.DotNest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BillingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Invoices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContentModerator\",\r\n \"namespace\": \"Microsoft.ContentModerator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CustomerInsights\",\r\n \"namespace\": \"Microsoft.CustomerInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"38c77d00-5fcb-4cce-9d93-af4738258e3c\",\r\n \"roleDefinitionId\": \"E006F9C7-F333-477C-8AD6-1F3A9FE87F55\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hubs/profiles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/interactions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/authorizationPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors/mappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/kpi\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/views\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/links\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roleAssignments\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/widgetTypes\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/suggestTypeSchema\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/connectors\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningExperimentation\",\r\n \"namespace\": \"Microsoft.MachineLearningExperimentation\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningCompute\",\r\n \"namespace\": \"Microsoft.MachineLearningCompute\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operationalizationClusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningModelManagement\",\r\n \"namespace\": \"Microsoft.MachineLearningModelManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/nuubit.nextgencdn\",\r\n \"namespace\": \"nuubit.nextgencdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RevAPM.MobileCDN\",\r\n \"namespace\": \"RevAPM.MobileCDN\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-24\",\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/TrendMicro.DeepSecurity\",\r\n \"namespace\": \"TrendMicro.DeepSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "459189" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "1233b722-6cf1-4065-b7dd-34438bc80c5f" + "7c6fa6ff-cd63-44c9-9558-2a85476000c4" ], "x-ms-correlation-request-id": [ - "1233b722-6cf1-4065-b7dd-34438bc80c5f" + "7c6fa6ff-cd63-44c9-9558-2a85476000c4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124303Z:1233b722-6cf1-4065-b7dd-34438bc80c5f" + "WESTINDIA:20210418T214857Z:7c6fa6ff-cd63-44c9-9558-2a85476000c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -411,59 +453,59 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:03 GMT" + "Sun, 18 Apr 2021 21:48:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "100" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM105' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e00d1bbc-d48c-499a-aef1-93e7555ea822" + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorization\": {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/virtualMachines\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/endpoints\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/subnets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/patch\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/baseline\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/antimalware\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SiteRecovery\",\r\n \"namespace\": \"Microsoft.SiteRecovery\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SiteRecoveryVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/backupLongTermRetentionVaults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/workers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/AppDynamics.APM\",\r\n \"namespace\": \"AppDynamics.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Aspera.Transfers\",\r\n \"namespace\": \"Aspera.Transfers\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Auth0.Cloud\",\r\n \"namespace\": \"Auth0.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-23\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Citrix.Cloud\",\r\n \"namespace\": \"Citrix.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Cloudyn.Analytics\",\r\n \"namespace\": \"Cloudyn.Analytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.DynatraceSaaS\",\r\n \"namespace\": \"Dynatrace.DynatraceSaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-27\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.Ruxit\",\r\n \"namespace\": \"Dynatrace.Ruxit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-07\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Lombiq.DotNest\",\r\n \"namespace\": \"Lombiq.DotNest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BillingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Invoices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContentModerator\",\r\n \"namespace\": \"Microsoft.ContentModerator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CustomerInsights\",\r\n \"namespace\": \"Microsoft.CustomerInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"38c77d00-5fcb-4cce-9d93-af4738258e3c\",\r\n \"roleDefinitionId\": \"E006F9C7-F333-477C-8AD6-1F3A9FE87F55\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hubs/profiles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/interactions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/authorizationPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors/mappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/kpi\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/views\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/links\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roleAssignments\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/widgetTypes\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/suggestTypeSchema\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/connectors\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningExperimentation\",\r\n \"namespace\": \"Microsoft.MachineLearningExperimentation\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningCompute\",\r\n \"namespace\": \"Microsoft.MachineLearningCompute\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operationalizationClusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningModelManagement\",\r\n \"namespace\": \"Microsoft.MachineLearningModelManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/nuubit.nextgencdn\",\r\n \"namespace\": \"nuubit.nextgencdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RevAPM.MobileCDN\",\r\n \"namespace\": \"RevAPM.MobileCDN\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-24\",\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/TrendMicro.DeepSecurity\",\r\n \"namespace\": \"TrendMicro.DeepSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "459189" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "11999" ], "x-ms-request-id": [ - "77a80eba-d366-4266-89fe-324dd87a0773" + "5c6c77cf-9130-4df4-8b67-833e9031d2ae" ], "x-ms-correlation-request-id": [ - "77a80eba-d366-4266-89fe-324dd87a0773" + "5c6c77cf-9130-4df4-8b67-833e9031d2ae" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124305Z:77a80eba-d366-4266-89fe-324dd87a0773" + "WESTINDIA:20210418T214858Z:5c6c77cf-9130-4df4-8b67-833e9031d2ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -471,59 +513,59 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:05 GMT" + "Sun, 18 Apr 2021 21:48:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "59552" ] }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n },\r\n {\r\n \"applicationId\": \"579d9c9d-4c83-4efc-8124-7eba65ed3356\",\r\n \"roleDefinitionId\": \"8c99c4ce-d744-4597-a2f0-0a0044d67560\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotEvictionRates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotPriceHistory\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/sharedGalleries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"diskAccesses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roles\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/csoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsVersions\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsFamilies\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/publicIPAddresses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups/capacityReservations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Compute/virtualMachines/a2aVM105?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDU/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c18d3624-d9d4-4c7f-868d-382cedc77445" + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorization\": {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/virtualMachines\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/endpoints\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/subnets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/patch\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/baseline\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/antimalware\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SiteRecovery\",\r\n \"namespace\": \"Microsoft.SiteRecovery\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SiteRecoveryVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/backupLongTermRetentionVaults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/workers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/AppDynamics.APM\",\r\n \"namespace\": \"AppDynamics.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Aspera.Transfers\",\r\n \"namespace\": \"Aspera.Transfers\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Auth0.Cloud\",\r\n \"namespace\": \"Auth0.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-23\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Citrix.Cloud\",\r\n \"namespace\": \"Citrix.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Cloudyn.Analytics\",\r\n \"namespace\": \"Cloudyn.Analytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.DynatraceSaaS\",\r\n \"namespace\": \"Dynatrace.DynatraceSaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-27\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.Ruxit\",\r\n \"namespace\": \"Dynatrace.Ruxit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-07\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Lombiq.DotNest\",\r\n \"namespace\": \"Lombiq.DotNest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BillingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Invoices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContentModerator\",\r\n \"namespace\": \"Microsoft.ContentModerator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CustomerInsights\",\r\n \"namespace\": \"Microsoft.CustomerInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"38c77d00-5fcb-4cce-9d93-af4738258e3c\",\r\n \"roleDefinitionId\": \"E006F9C7-F333-477C-8AD6-1F3A9FE87F55\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hubs/profiles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/interactions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/authorizationPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors/mappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/kpi\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/views\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/links\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roleAssignments\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/widgetTypes\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/suggestTypeSchema\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/connectors\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningExperimentation\",\r\n \"namespace\": \"Microsoft.MachineLearningExperimentation\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningCompute\",\r\n \"namespace\": \"Microsoft.MachineLearningCompute\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operationalizationClusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningModelManagement\",\r\n \"namespace\": \"Microsoft.MachineLearningModelManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/nuubit.nextgencdn\",\r\n \"namespace\": \"nuubit.nextgencdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RevAPM.MobileCDN\",\r\n \"namespace\": \"RevAPM.MobileCDN\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-24\",\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/TrendMicro.DeepSecurity\",\r\n \"namespace\": \"TrendMicro.DeepSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "459189" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "0b888d71-d14e-4360-887d-4bcf14ee7eb0" + "3d2bdef4-784f-4e67-a210-d2fa3849392a" ], "x-ms-correlation-request-id": [ - "0b888d71-d14e-4360-887d-4bcf14ee7eb0" + "3d2bdef4-784f-4e67-a210-d2fa3849392a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124307Z:0b888d71-d14e-4360-887d-4bcf14ee7eb0" + "WESTINDIA:20210418T214858Z:3d2bdef4-784f-4e67-a210-d2fa3849392a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -531,179 +573,193 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:07 GMT" + "Sun, 18 Apr 2021 21:48:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "100" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM105' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Compute/virtualMachines/a2aVM105?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDU/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c9fea0c-bfaf-4b53-a3d5-559cee3d72f9" - ], - "accept-language": [ - "en-US" + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorization\": {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/virtualMachines\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/endpoints\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/subnets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/patch\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/baseline\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/antimalware\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SiteRecovery\",\r\n \"namespace\": \"Microsoft.SiteRecovery\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SiteRecoveryVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/backupLongTermRetentionVaults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/workers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/AppDynamics.APM\",\r\n \"namespace\": \"AppDynamics.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Aspera.Transfers\",\r\n \"namespace\": \"Aspera.Transfers\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Auth0.Cloud\",\r\n \"namespace\": \"Auth0.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-23\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Citrix.Cloud\",\r\n \"namespace\": \"Citrix.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Cloudyn.Analytics\",\r\n \"namespace\": \"Cloudyn.Analytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.DynatraceSaaS\",\r\n \"namespace\": \"Dynatrace.DynatraceSaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-27\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.Ruxit\",\r\n \"namespace\": \"Dynatrace.Ruxit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-07\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Lombiq.DotNest\",\r\n \"namespace\": \"Lombiq.DotNest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BillingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Invoices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContentModerator\",\r\n \"namespace\": \"Microsoft.ContentModerator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CustomerInsights\",\r\n \"namespace\": \"Microsoft.CustomerInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"38c77d00-5fcb-4cce-9d93-af4738258e3c\",\r\n \"roleDefinitionId\": \"E006F9C7-F333-477C-8AD6-1F3A9FE87F55\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hubs/profiles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/interactions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/authorizationPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors/mappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/kpi\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/views\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/links\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roleAssignments\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/widgetTypes\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/suggestTypeSchema\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/connectors\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningExperimentation\",\r\n \"namespace\": \"Microsoft.MachineLearningExperimentation\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningCompute\",\r\n \"namespace\": \"Microsoft.MachineLearningCompute\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operationalizationClusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningModelManagement\",\r\n \"namespace\": \"Microsoft.MachineLearningModelManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/nuubit.nextgencdn\",\r\n \"namespace\": \"nuubit.nextgencdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RevAPM.MobileCDN\",\r\n \"namespace\": \"RevAPM.MobileCDN\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-24\",\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/TrendMicro.DeepSecurity\",\r\n \"namespace\": \"TrendMicro.DeepSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "459189" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31989" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "92cafede-e991-42e5-b3d4-c64bc005a6dd" + "ce4b6fa3-fa0b-4223-b3f2-f27ba1177271" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" ], "x-ms-correlation-request-id": [ - "92cafede-e991-42e5-b3d4-c64bc005a6dd" + "0c098993-ecb9-4720-9e62-362f47ae0a20" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124309Z:92cafede-e991-42e5-b3d4-c64bc005a6dd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTINDIA:20210418T215045Z:0c098993-ecb9-4720-9e62-362f47ae0a20" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:09 GMT" + "Sun, 18 Apr 2021 21:50:45 GMT" + ], + "Content-Length": [ + "1897" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aVM105\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Compute/virtualMachines/a2aVM105\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"4d5d0f99-d043-449d-ac1d-a2e6690afece\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM105_OsDisk_1_07163f15883f4c24a6a1a980cddd7fcc\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Compute/disks/a2aVM105_OsDisk_1_07163f15883f4c24a6a1a980cddd7fcc\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM105\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkInterfaces/a2aVM105\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Compute/virtualMachines/a2aVM105?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDU/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05be7b1b-1d29-4b7c-8ad8-1620a6ab8b25" + "18bf3830-6620-4895-8947-9ff4ffc07e65" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorization\": {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/virtualMachines\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/endpoints\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/subnets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/patch\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/baseline\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/antimalware\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SiteRecovery\",\r\n \"namespace\": \"Microsoft.SiteRecovery\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SiteRecoveryVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/backupLongTermRetentionVaults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/workers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/AppDynamics.APM\",\r\n \"namespace\": \"AppDynamics.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Aspera.Transfers\",\r\n \"namespace\": \"Aspera.Transfers\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Auth0.Cloud\",\r\n \"namespace\": \"Auth0.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-23\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Citrix.Cloud\",\r\n \"namespace\": \"Citrix.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Cloudyn.Analytics\",\r\n \"namespace\": \"Cloudyn.Analytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.DynatraceSaaS\",\r\n \"namespace\": \"Dynatrace.DynatraceSaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-27\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.Ruxit\",\r\n \"namespace\": \"Dynatrace.Ruxit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-07\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Lombiq.DotNest\",\r\n \"namespace\": \"Lombiq.DotNest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BillingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Invoices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContentModerator\",\r\n \"namespace\": \"Microsoft.ContentModerator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CustomerInsights\",\r\n \"namespace\": \"Microsoft.CustomerInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"38c77d00-5fcb-4cce-9d93-af4738258e3c\",\r\n \"roleDefinitionId\": \"E006F9C7-F333-477C-8AD6-1F3A9FE87F55\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hubs/profiles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/interactions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/authorizationPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors/mappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/kpi\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/views\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/links\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roleAssignments\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/widgetTypes\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/suggestTypeSchema\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/connectors\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningExperimentation\",\r\n \"namespace\": \"Microsoft.MachineLearningExperimentation\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningCompute\",\r\n \"namespace\": \"Microsoft.MachineLearningCompute\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operationalizationClusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningModelManagement\",\r\n \"namespace\": \"Microsoft.MachineLearningModelManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/nuubit.nextgencdn\",\r\n \"namespace\": \"nuubit.nextgencdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RevAPM.MobileCDN\",\r\n \"namespace\": \"RevAPM.MobileCDN\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-24\",\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/TrendMicro.DeepSecurity\",\r\n \"namespace\": \"TrendMicro.DeepSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "459189" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31988" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "3f6d6d41-a6cd-4f2c-8e46-3d7f69ba8f21" + "2a77f2bd-09b1-4176-b93c-09cfbf863d5a" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" ], "x-ms-correlation-request-id": [ - "3f6d6d41-a6cd-4f2c-8e46-3d7f69ba8f21" + "b6d73707-fd08-4f39-86ea-9ffc3f9b2ee5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124311Z:3f6d6d41-a6cd-4f2c-8e46-3d7f69ba8f21" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTINDIA:20210418T215110Z:b6d73707-fd08-4f39-86ea-9ffc3f9b2ee5" ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:11 GMT" + "Sun, 18 Apr 2021 21:51:09 GMT" + ], + "Content-Length": [ + "1897" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aVM105\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Compute/virtualMachines/a2aVM105\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"4d5d0f99-d043-449d-ac1d-a2e6690afece\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM105_OsDisk_1_07163f15883f4c24a6a1a980cddd7fcc\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Compute/disks/a2aVM105_OsDisk_1_07163f15883f4c24a6a1a980cddd7fcc\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM105\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkInterfaces/a2aVM105\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM105?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNMTA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e101120d-a2c4-4a64-8d2c-94908724eb66" + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Advisor\",\r\n \"namespace\": \"Microsoft.Advisor\",\r\n \"authorization\": {\r\n \"applicationId\": \"c39c9bac-9d1f-4dfb-aa29-27f6365e5cb7\",\r\n \"roleDefinitionId\": \"8a63b04c-3731-409b-9765-f1175c047872\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"suppressions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-19\",\r\n \"2017-03-31\",\r\n \"2016-07-12-preview\",\r\n \"2016-05-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AlertsManagement\",\r\n \"namespace\": \"Microsoft.AlertsManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alertsSummary\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorMonitoringAppliances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"smartDetectorAlertRules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-05-preview\",\r\n \"2017-11-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ApiManagement\",\r\n \"namespace\": \"Microsoft.ApiManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"roleDefinitionId\": \"e263b525-2e60-4418-b655-420bae0b172e\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"service\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"validateServiceName\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reportFeedback\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkFeedbackRequired\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-03-01\",\r\n \"2016-10-10\",\r\n \"2016-07-07\",\r\n \"2015-09-15\",\r\n \"2014-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Authorization\",\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"roleAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"roleDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicAdministrators\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"permissions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locks\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-09-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-01-01\",\r\n \"2014-10-01-preview\",\r\n \"2014-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policySetDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-06-01-preview\",\r\n \"2016-12-01\",\r\n \"2016-04-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providerOperations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"elevateAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-01\",\r\n \"2016-07-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01-preview\",\r\n \"2014-10-01-preview\",\r\n \"2014-07-01-preview\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-05-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAccess\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Automation\",\r\n \"namespace\": \"Microsoft.Automation\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"roleDefinitionId\": \"95fd5de3-d071-4362-92bf-cf341c1de832\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"automationAccounts\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/runbooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/configurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"Korea Central\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"North Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/webhooks\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/softwareUpdateConfigurations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automationAccounts/jobs\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-01-15\",\r\n \"2017-05-15-preview\",\r\n \"2015-10-31\",\r\n \"2015-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Batch\",\r\n \"namespace\": \"Microsoft.Batch\",\r\n \"authorization\": {\r\n \"applicationId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"roleDefinitionId\": \"b7f84953-1d03-4eab-9ea4-45f065258ff8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"batchAccounts\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\",\r\n \"2015-07-01\",\r\n \"2014-05-01-privatepreview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-05-01\",\r\n \"2017-01-01\",\r\n \"2015-12-01\",\r\n \"2015-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Unregistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicCompute\",\r\n \"namespace\": \"Microsoft.ClassicCompute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domainNames\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domainNames/internalLoadBalancers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/slots/roles/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/capabilities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domainNames/serviceCertificates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metrics\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceTypes\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"moveSubscriptionResources\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateSubscriptionMoveAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationStatuses\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystems\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operatingSystemFamilies\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicNetwork\",\r\n \"namespace\": \"Microsoft.ClassicNetwork\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworks/remoteVirtualNetworkPeeringProxies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservedIps\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"gatewaySupportedDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCrossConnections/peerings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-10-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicStorage\",\r\n \"namespace\": \"Microsoft.ClassicStorage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"quotas\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkStorageAccountAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"East US 2 (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metricDefinitions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/metrics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"capabilities\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/vmImages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-beta\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": []\r\n },\r\n {\r\n \"resourceType\": \"osImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"osPlatformImages\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-04-01-beta\",\r\n \"2016-04-01\",\r\n \"2015-12-01\",\r\n \"2015-06-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Commerce\",\r\n \"namespace\": \"Microsoft.Commerce\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"UsageAggregates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RateCard\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-31-preview\",\r\n \"2015-06-01-preview\",\r\n \"2015-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\",\r\n \"2015-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-30\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeAnalytics\",\r\n \"namespace\": \"Microsoft.DataLakeAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/dataLakeStoreAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/storageAccounts/containers/listSasTokens\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataLakeStore\",\r\n \"namespace\": \"Microsoft.DataLakeStore\",\r\n \"authorization\": {\r\n \"applicationId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"roleDefinitionId\": \"17eb9cca-f08a-4499-b2d3-852d175f614f\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/firewallRules\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"accounts/eventGridFilters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2015-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataMigration\",\r\n \"namespace\": \"Microsoft.DataMigration\",\r\n \"authorization\": {\r\n \"applicationId\": \"a4bad4aa-bf02-4631-9f78-a64ffdba8150\",\r\n \"roleDefinitionId\": \"b831a21d-db98-4760-89cb-bef871952df1\",\r\n \"managedByRoleDefinitionId\": \"6256fb55-9e59-4018-a9e1-76b11c0a4c89\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"services/projects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationStatuses\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"Australia Southeast\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"West US\",\r\n \"UK South\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-15-preview\",\r\n \"2018-04-19\",\r\n \"2018-03-31-preview\",\r\n \"2018-03-15-preview\",\r\n \"2017-11-15-privatepreview\",\r\n \"2017-11-15-preview\",\r\n \"2017-04-15-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DevTestLab\",\r\n \"namespace\": \"Microsoft.DevTestLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labs\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"schedules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"labs/virtualMachines\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"labs/serviceRunners\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\",\r\n \"2015-05-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"UK West\",\r\n \"West India\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2016-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DocumentDB\",\r\n \"namespace\": \"Microsoft.DocumentDB\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"roleDefinitionId\": \"FFFD5CF5-FFD3-4B24-B0E2-0715ADD4C282\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databaseAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"databaseAccountNames\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-08\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Brazil South\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-31\",\r\n \"2016-03-19\",\r\n \"2015-11-06\",\r\n \"2015-04-08\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventHub\",\r\n \"namespace\": \"Microsoft.EventHub\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\",\r\n \"roleDefinitionId\": \"eb8e1991-5de0-42a6-a64b-29b059341b7b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventhubs/consumergroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HDInsight\",\r\n \"namespace\": \"Microsoft.HDInsight\",\r\n \"authorization\": {\r\n \"applicationId\": \"9191c4da-09fe-49d9-a5f1-d41cbe92ad95\",\r\n \"roleDefinitionId\": \"d102a6f3-d9cb-4633-8950-1243b975886c\",\r\n \"managedByRoleDefinitionId\": \"346da55d-e1db-4a5a-89db-33ab3cdb6fc6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"clusters/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureasyncoperations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateCreateRequest\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"West US\",\r\n \"South India\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.insights\",\r\n \"namespace\": \"microsoft.insights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"roleDefinitionId\": \"dd9d4347-f397-45f2-b538-85f21c90037b\"\r\n },\r\n {\r\n \"applicationId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"roleDefinitionId\": \"323795fe-ba3d-4f5a-ad42-afb4e1ea9485\"\r\n },\r\n {\r\n \"applicationId\": \"f5c26e74-f226-4ae8-85f0-b4af0080ac9e\",\r\n \"roleDefinitionId\": \"529d7ae6-e892-4d43-809d-8547aeb90643\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"components\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-12-01-preview\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/query\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"components/events\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"webtests\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-08-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"queries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01\",\r\n \"2014-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"scheduledqueryrules\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-16\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"components/pricingPlans\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"migrateToNewPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"rollbackToLegacyPricingModel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listMigrationdate\",\r\n \"locations\": [\r\n \"East US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logprofiles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricalerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"alertrules\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"autoscalesettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"eventtypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2016-09-01-preview\",\r\n \"2015-04-01\",\r\n \"2014-11-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"automatedExportSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extendedDiagnosticSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logDefinitions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metrics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\",\r\n \"2017-09-01-preview\",\r\n \"2017-05-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"metricNamespaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\",\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"actiongroups\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"activityLogAlerts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"baseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatebaseline\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workbooks\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"myWorkbooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-10-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-10-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearning\",\r\n \"namespace\": \"Microsoft.MachineLearning\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Workspaces\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"webServices\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"commitmentPlans\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01\",\r\n \"2016-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedIdentity\",\r\n \"namespace\": \"Microsoft.ManagedIdentity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Identities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userAssignedIdentities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-31-PREVIEW\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Migrate\",\r\n \"namespace\": \"Microsoft.Migrate\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3bfd6ac-eace-4438-9dc1-eed439e738de\",\r\n \"roleDefinitionId\": \"e88f4159-1d71-4b12-8ef0-38c039cb051e\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"projects\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/assessmentOptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-02\",\r\n \"2017-11-11-preview\",\r\n \"2017-09-25-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"assessmentProjects\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Network\",\r\n \"namespace\": \"Microsoft.Network\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"roleDefinitionId\": \"13ba9ab4-19f0-4804-adc4-14ece36cc7a1\"\r\n },\r\n {\r\n \"applicationId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"roleDefinitionId\": \"ad6261e4-fa9a-4642-aa5f-104f1b67e9e3\"\r\n },\r\n {\r\n \"applicationId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"roleDefinitionId\": \"1d538b69-3d87-4e56-8ff8-25786fd48261\"\r\n },\r\n {\r\n \"applicationId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"roleDefinitionId\": \"7ce22727-ffce-45a9-930c-ddb2e56fa131\"\r\n },\r\n {\r\n \"applicationId\": \"486c78bf-a0f7-45f1-92fd-37215929e116\",\r\n \"roleDefinitionId\": \"98a9e526-0a60-4c1f-a33a-ae46e1f8dc0d\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"loadBalancers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationSecurityGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkIntentPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"routeTables\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"publicIPPrefixes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/connectionMonitors\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkWatchers/lenses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"localNetworkGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"applicationGateways\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/CheckDnsNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2015-06-15\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkAvailableEndpointServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableDelegations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/supportedVirtualMachineSizes\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkAcceleratedNetworkingSupport\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/validateResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/effectiveResourceOwnership\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationResults\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnsOperationStatuses\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/A\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/AAAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CNAME\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/PTR\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/MX\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/TXT\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SRV\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/SOA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/NS\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/CAA\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/recordsets\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dnszones/all\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-10-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-09-01\",\r\n \"2016-04-01\",\r\n \"2015-05-04-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"trafficmanagerprofiles/heatMaps\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkTrafficManagerNameAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2015-11-01\",\r\n \"2015-04-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerUserMetricsKeys\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"trafficManagerGeographicHierarchies\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-05-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRouteCircuits\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"expressRouteServiceProviders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\",\r\n \"2016-11-01\",\r\n \"2016-10-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\",\r\n \"2014-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableWafRuleSets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationGatewayAvailableSslOptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"routeFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"bgpServiceCommunities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\",\r\n \"2017-10-01\",\r\n \"2017-09-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"expressRoutePorts\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"ddosProtectionPlans\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"secureGateways\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"azureFirewalls\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networkProfiles\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OffAzure\",\r\n \"namespace\": \"Microsoft.OffAzure\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"VMwareSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"HyperVSites\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"Central US EUAP\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationalInsights\",\r\n \"namespace\": \"Microsoft.OperationalInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"86695298-2eb9-48a7-9ec3-2fdb38b6878b\"\r\n },\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-26-preview\",\r\n \"2017-03-15-preview\",\r\n \"2017-03-03-preview\",\r\n \"2017-01-01-preview\",\r\n \"2015-11-01-preview\",\r\n \"2015-03-20\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/query\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Australia Southeast\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/dataSources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageInsightConfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-10-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/linkedServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"linkTargets\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-03-20\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2014-11-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"devices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.OperationsManagement\",\r\n \"namespace\": \"Microsoft.OperationsManagement\",\r\n \"authorization\": {\r\n \"applicationId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"roleDefinitionId\": \"aa249101-6816-4966-aafa-08175d795f14\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"solutions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementconfigurations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"managementassociations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"views\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PolicyInsights\",\r\n \"namespace\": \"Microsoft.PolicyInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"1d78a85d-813d-46f0-b496-dd72f50a3ec0\",\r\n \"roleDefinitionId\": \"63d2b225-4c34-4641-8768-21a1f7c68ce8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyEvents\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyStates\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-04-04\",\r\n \"2017-12-12-preview\",\r\n \"2017-10-17-preview\",\r\n \"2017-08-09-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Portal\",\r\n \"namespace\": \"Microsoft.Portal\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dashboards\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"consoles\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/consoles\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"userSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/userSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"Central India\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Relay\",\r\n \"namespace\": \"Microsoft.Relay\",\r\n \"authorization\": {\r\n \"applicationId\": \"80369ed6-5f11-4dd9-bef3-692475845e77\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/hybridconnections/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/wcfrelays/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ResourceHealth\",\r\n \"namespace\": \"Microsoft.ResourceHealth\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"roleDefinitionId\": \"cc026344-c8b1-4561-83ba-59eba84b27cc\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilityStatuses\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifications\",\r\n \"locations\": [\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Search\",\r\n \"namespace\": \"Microsoft.Search\",\r\n \"authorization\": {\r\n \"applicationId\": \"408992c7-2af6-4ff1-92e3-65b73d2b5092\",\r\n \"roleDefinitionId\": \"20FA3191-87CF-4C3D-9510-74CCB594A310\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"searchServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"checkServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-02-28\",\r\n \"2014-07-31-Preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-19\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-19\",\r\n \"2015-02-28\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Security\",\r\n \"namespace\": \"Microsoft.Security\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"roleDefinitionId\": \"855AF4C4-82F6-414C-B1A2-628025628B9A\"\r\n },\r\n {\r\n \"applicationId\": \"fc780465-2017-40d4-a0c5-307022471b92\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatuses\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/virtualMachines\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/endpoints\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatus/subnets\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/patch\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/baseline\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"monitoring/antimalware\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionAgents\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataCollectionResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"pricings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"AutoProvisioningSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Compliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityContacts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaceSettings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"complianceResults\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/discoveredSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securitySolutionsReferenceData\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jitNetworkAccessPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"France Central\",\r\n \"France South\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"securityStatusesSummaries\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/applicationWhitelistings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/alerts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tasks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/externalSecuritySolutions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"InformationProtectionPolicies\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceBus\",\r\n \"namespace\": \"Microsoft.ServiceBus\",\r\n \"authorization\": {\r\n \"applicationId\": \"80a10ef9-8168-493d-abf9-3297c4ef6e3c\",\r\n \"roleDefinitionId\": \"2b7763f7-bbe2-4e19-befe-28c79f1cf7f7\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01-preview\",\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/queues/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/authorizationrules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/topics/subscriptions/rules\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sku\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"premiumMessagingRegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/eventgridfilters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2015-08-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"namespaces/disasterrecoveryconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-04-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SiteRecovery\",\r\n \"namespace\": \"Microsoft.SiteRecovery\",\r\n \"authorization\": {\r\n \"applicationId\": \"b8340c3b-9267-498f-b21a-15d5547fd85e\",\r\n \"roleDefinitionId\": \"8A00C8EA-8F1B-45A7-8F64-F4CC61EEE9B6\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SiteRecoveryVault\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Sql\",\r\n \"namespace\": \"Microsoft.Sql\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"roleDefinitionId\": \"ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec\"\r\n },\r\n {\r\n \"applicationId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"roleDefinitionId\": \"45e8abf8-0ec4-44f3-9c37-cff4f7779302\"\r\n },\r\n {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n {\r\n \"applicationId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"roleDefinitionId\": \"7f7513a8-73f9-4c5f-97a2-c41f0ea783ef\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capabilities\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverKeyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/keys\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/encryptionProtector\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/encryptionProtectorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/tdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/serverOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"servers/databases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"servers/serviceObjectives\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/communicationLinks\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administrators\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/restorableDroppedDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableDatabases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/geoBackupPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/backupLongTermRetentionVaults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/import\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/importExportOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/backupLongTermRetentionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databaseSecurityPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/automaticTuning\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/transparentDataEncryption\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/recommendedElasticPools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/connectionPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/dataMaskingPolicies/rules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/securityAlertPolicies\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/auditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/extendedAuditingSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/auditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extendedAuditingSettingsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/elasticPoolOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-09-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobAgentAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/disasterRecoveryConfiguration\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/dnsAliases\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/dnsAliasOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/failoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/failoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/firewallRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualNetworkRulesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/databaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedServerOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/usages\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metricDefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/aggregatedDatabaseMetrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metrics\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticpools/metricdefinitions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/topQueries/queryText\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPools/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/advisors\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/extensions\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\",\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/elasticPoolEstimates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/auditRecords\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentScans\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/databases/vulnerabilityAssessments\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\",\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessmentSettings\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/VulnerabilityAssessment\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vulnerabilityAssessmentScanOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/databases/syncGroups/syncMembers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/syncAgents\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedDatabaseRestoreOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedInstances/tdeCertificates\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceTdeCertOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedServerSecurityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualClusters\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedInstanceOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/administratorOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncMemberOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncAgentOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/syncDatabaseIds\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionServers\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/longTermRetentionBackupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/shortTermRetentionPolicyAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroups\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/instanceFailoverGroupOperationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US 2 (Stage)\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-01-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-10-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StreamAnalytics\",\r\n \"namespace\": \"Microsoft.StreamAnalytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"streamingjobs\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/quotas\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/diagnosticSettings\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"streamingjobs/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"East US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2016-03-01\",\r\n \"2015-11-01\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Web\",\r\n \"namespace\": \"Microsoft.Web\",\r\n \"authorization\": {\r\n \"applicationId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"roleDefinitionId\": \"f47ed98b-b063-4a5b-9e10-4b9b44fa7735\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/instances/extensions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publishingUsers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostnameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validate\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"isusernameavailable\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sourceControls\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"availableStacks\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listSitesAssignedToHostName\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/hostNameBindings\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"certificates\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/workers\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"sites/slots\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"runtimes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/slots/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"serverFarms/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"recommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-08-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceHealthMetadata\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"georegions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sites/premieraddons\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metrics\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/multiRolePools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2017-08-01\",\r\n \"2016-09-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-09-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2017-08-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metrics\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments/workerPools/instances/metricDefinitions\",\r\n \"locations\": [\r\n \"East Asia (Stage)\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2014-04-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2014-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentLocations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"functions\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedSites\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ishostingenvironmentnameavailable\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"classicMobileServices\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"connections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"customApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/listWsdlInterfaces\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/extractApiDefinitionFromWsdl\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/managedApis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runtimes\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/apiOperations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"connectionGateways\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/connectionGatewayInstallations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-06-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-03-01-preview\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"billingMeters\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"verifyHostingEnvironmentVnet\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"East US 2 (Stage)\",\r\n \"East Asia (Stage)\",\r\n \"Central US (Stage)\",\r\n \"North Central US (Stage)\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2016-03-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01\",\r\n \"2015-06-01\",\r\n \"2015-05-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\",\r\n \"2014-11-01\",\r\n \"2014-06-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-03-01-hybrid\",\r\n \"apiVersion\": \"2016-03-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-02-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/84codes.CloudAMQP\",\r\n \"namespace\": \"84codes.CloudAMQP\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"Central US\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/AppDynamics.APM\",\r\n \"namespace\": \"AppDynamics.APM\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-26\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Aspera.Transfers\",\r\n \"namespace\": \"Aspera.Transfers\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-25\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Auth0.Cloud\",\r\n \"namespace\": \"Auth0.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-11-23\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Citrix.Cloud\",\r\n \"namespace\": \"Citrix.Cloud\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/CloudSimple.PrivateCloudIaaS\",\r\n \"namespace\": \"CloudSimple.PrivateCloudIaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Cloudyn.Analytics\",\r\n \"namespace\": \"Cloudyn.Analytics\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Conexlink.MyCloudIT\",\r\n \"namespace\": \"Conexlink.MyCloudIT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Crypteron.DataSecurity\",\r\n \"namespace\": \"Crypteron.DataSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-12\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.DynatraceSaaS\",\r\n \"namespace\": \"Dynatrace.DynatraceSaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-27\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Dynatrace.Ruxit\",\r\n \"namespace\": \"Dynatrace.Ruxit\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-09-07\",\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/LiveArena.Broadcast\",\r\n \"namespace\": \"LiveArena.Broadcast\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Lombiq.DotNest\",\r\n \"namespace\": \"Lombiq.DotNest\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"sites\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Mailjet.Email\",\r\n \"namespace\": \"Mailjet.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-05-29\",\r\n \"2017-02-03\",\r\n \"2016-11-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-02-03\",\r\n \"2016-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AAD\",\r\n \"namespace\": \"Microsoft.AAD\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"443155a6-77f3-45e3-882b-22b3a8d431fb\",\r\n \"roleDefinitionId\": \"7389DE79-3180-4F07-B2BA-C5BA1F01B03A\"\r\n },\r\n {\r\n \"applicationId\": \"abba844e-bc0e-44b0-947a-dc74e5d09022\",\r\n \"roleDefinitionId\": \"63BC473E-7767-42A5-A3BF-08EB71200E04\"\r\n },\r\n {\r\n \"applicationId\": \"d87dcbc6-a371-462e-88e3-28ad15ec4e64\",\r\n \"roleDefinitionId\": \"861776c5-e0df-4f95-be4f-ac1eec193323\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DomainServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Central US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.aadiam\",\r\n \"namespace\": \"microsoft.aadiam\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-03-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\",\r\n \"2017-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Addons\",\r\n \"namespace\": \"Microsoft.Addons\",\r\n \"authorization\": {\r\n \"applicationId\": \"24d3987b-be4a-48e0-a3e7-11c186f39e41\",\r\n \"roleDefinitionId\": \"8004BAAB-A4CB-4981-8571-F7E44D039D93\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"supportProviders\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-05-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ADHybridHealthService\",\r\n \"namespace\": \"Microsoft.ADHybridHealthService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"addsservices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"configuration\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"agents\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"aadsupportcases\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reports\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servicehealthmetrics\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"anonymousapiusers\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AnalysisServices\",\r\n \"namespace\": \"Microsoft.AnalysisServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-beta\",\r\n \"2017-08-01\",\r\n \"2017-07-14\",\r\n \"2016-05-16\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-08-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureActiveDirectory\",\r\n \"namespace\": \"Microsoft.AzureActiveDirectory\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"b2cDirectories\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"United States\",\r\n \"Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-30\",\r\n \"2016-12-13-preview\",\r\n \"2016-02-10-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.AzureStack\",\r\n \"namespace\": \"Microsoft.AzureStack\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registrations/products\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registrations/customerSubscriptions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BatchAI\",\r\n \"namespace\": \"Microsoft.BatchAI\",\r\n \"authorization\": {\r\n \"applicationId\": \"9fcb3732-5f52-4135-8c08-9d4bbaf203ea\",\r\n \"roleDefinitionId\": \"703B89C7-CE2C-431B-BDD8-FA34E39AF696\",\r\n \"managedByRoleDefinitionId\": \"90B8E153-EBFF-4073-A95F-4DAD56B14C78\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/clusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/fileservers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"workspaces/experiments/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"South Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Billing\",\r\n \"namespace\": \"Microsoft.Billing\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"80dbdb39-4f33-4799-8b6f-711b5e3e61b6\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BillingPeriods\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Invoices\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-04-24-preview\",\r\n \"2017-02-27-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BingMaps\",\r\n \"namespace\": \"Microsoft.BingMaps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mapApis\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-18\",\r\n \"2015-07-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BizTalkServices\",\r\n \"namespace\": \"Microsoft.BizTalkServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"BizTalk\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Blueprint\",\r\n \"namespace\": \"Microsoft.Blueprint\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"f71766dc-90d9-4b7d-bd9d-4499c4331c3f\",\r\n \"roleDefinitionId\": \"cb180127-cf6d-4672-9e75-e29a487f9658\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"blueprints\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprints/versions/artifacts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"blueprintAssignments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-11-preview\",\r\n \"2017-11-11-alpha\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.BotService\",\r\n \"namespace\": \"Microsoft.BotService\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3723d34-6ff5-4ceb-a148-d99dcd2511fc\",\r\n \"roleDefinitionId\": \"71213c26-43ed-41d8-9905-3c12971517a3\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"botServices\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"botServices/channels\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"botServices/connections\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAuthServiceProviders\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n },\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-07-12\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-12\",\r\n \"2017-12-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2017-03-09-profile\",\r\n \"apiVersion\": \"2017-12-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cache\",\r\n \"namespace\": \"Microsoft.Cache\",\r\n \"authorization\": {\r\n \"applicationId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"roleDefinitionId\": \"4f731528-ba85-45c7-acfb-cd0a9b3cf31b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Redis\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"South India\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"France Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\",\r\n \"2014-04-01-preview\",\r\n \"2014-04-01-alpha\",\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"RedisConfigDefinition\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01\",\r\n \"2017-10-01\",\r\n \"2017-02-01\",\r\n \"2016-04-01\",\r\n \"2015-08-01\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Capacity\",\r\n \"namespace\": \"Microsoft.Capacity\",\r\n \"authorization\": {\r\n \"applicationId\": \"4d0ad6c7-f6c3-46d8-ab0d-1406d5e6c86b\",\r\n \"roleDefinitionId\": \"FD9C0A9A-4DB9-4F41-8A61-98385DEB6E2D\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [\r\n \"South Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/reservations/revisions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"appliedReservations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculatePrice\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/calculateRefund\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/return\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/split\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/merge\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/swap\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateReservationOrder\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"reservationOrders/availableScopes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-beta\",\r\n \"2018-06-01\",\r\n \"2017-11-01-beta\",\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Cdn\",\r\n \"namespace\": \"Microsoft.Cdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"profiles\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/origins\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"profiles/endpoints/customdomains\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/originresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults/profileresults/endpointresults/customdomainresults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkResourceUsage\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateProbe\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"edgenodes\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2017-10-12\",\r\n \"2017-04-02\",\r\n \"2016-10-02\",\r\n \"2016-04-02\",\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CertificateRegistration\",\r\n \"namespace\": \"Microsoft.CertificateRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"f3c21649-0979-4721-ac85-b0216b2cf413\",\r\n \"roleDefinitionId\": \"933fba7e-2ed3-4da8-973d-8bd8298a9b40\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"certificateOrders\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"certificateOrders/certificates\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateCertificateRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicSubscription\",\r\n \"namespace\": \"Microsoft.ClassicSubscription\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-01\",\r\n \"2017-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ClassicInfrastructureMigrate\",\r\n \"namespace\": \"Microsoft.ClassicInfrastructureMigrate\",\r\n \"authorization\": {\r\n \"applicationId\": \"5e5abe2b-83cd-4786-826a-a05653ebb103\",\r\n \"roleDefinitionId\": \"766c4d9b-ef83-4f73-8352-1450a506a69b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicInfrastructureResources\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CognitiveServices\",\r\n \"namespace\": \"Microsoft.CognitiveServices\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"7d312290-28c8-473c-a0ed-8e53749b6d6d\",\r\n \"roleDefinitionId\": \"5cb87f79-a7c3-4a95-9414-45b65974b51b\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkSkuAvailability\",\r\n \"locations\": [\r\n \"Global\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"Central India\",\r\n \"UK South\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/updateAccountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-18\",\r\n \"2016-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/accountsCreationSettings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"Global\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Consumption\",\r\n \"namespace\": \"Microsoft.Consumption\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c5b17a4f-cc6f-4649-9480-684280a2af3a\",\r\n \"roleDefinitionId\": \"4a2e6ae9-2713-4cc9-a3b3-312899d687c3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Forecasts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationRecommendations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationSummaries\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationTransactions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Balances\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Marketplaces\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Pricesheets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ReservationDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Budgets\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CostTags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Terms\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-12-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"UsageDetails\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30\",\r\n \"2018-05-31\",\r\n \"2018-03-31\",\r\n \"2018-01-31\",\r\n \"2017-11-30\",\r\n \"2017-06-30-preview\",\r\n \"2017-04-24-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerInstance\",\r\n \"namespace\": \"Microsoft.ContainerInstance\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6bb8e274-af5d-4df2-98a3-4fd78b4cafd9\",\r\n \"roleDefinitionId\": \"3c60422b-a83a-428d-9830-22609c77aa6c\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2018-02-01-preview\",\r\n \"2017-12-01-preview\",\r\n \"2017-10-01-preview\",\r\n \"2017-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerRegistry\",\r\n \"namespace\": \"Microsoft.ContainerRegistry\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"roleDefinitionId\": \"78e18383-93eb-418a-9887-bc9271046576\"\r\n },\r\n {\r\n \"applicationId\": \"737d58c1-397a-46e7-9d12-7d8c830883c2\",\r\n \"roleDefinitionId\": \"716bb53a-0390-4428-bf41-b1bedde7d751\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"registries\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/importImage\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/getBuildSourceUploadUrl\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/queueBuild\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/getLogLink\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/builds/cancel\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/listSourceRepositoryProperties\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/buildTasks/steps/listBuildArguments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/replications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/ping\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/getCallbackConfig\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/webhooks/listEvents\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/setupAuth\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/authorize\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/GetCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listCredentials\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredential\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listUsages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/listPolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/updatePolicies\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/regenerateCredentials\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"registries/eventGridFilters\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia Southeast\",\r\n \"East Asia\",\r\n \"Japan West\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\",\r\n \"2016-06-27-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\",\r\n \"2017-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Brazil South\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContainerService\",\r\n \"namespace\": \"Microsoft.ContainerService\",\r\n \"authorization\": {\r\n \"applicationId\": \"7319c514-987d-4e9b-ac3d-d38c4f427f4c\",\r\n \"roleDefinitionId\": \"1b4a0c7f-2217-416f-acfa-cf73452fdc1c\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"containerServices\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"managedClusters\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-31\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Japan East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"Korea South\",\r\n \"Korea Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\",\r\n \"2017-08-31\",\r\n \"2017-07-01\",\r\n \"2017-01-31\",\r\n \"2016-09-30\",\r\n \"2016-03-30\",\r\n \"2015-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/orchestrators\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Europe\",\r\n \"Central US\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"UK South\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Australia East\",\r\n \"North Europe\",\r\n \"Japan East\",\r\n \"East US 2\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-30\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ContentModerator\",\r\n \"namespace\": \"Microsoft.ContentModerator\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-04-08\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CostManagement\",\r\n \"namespace\": \"Microsoft.CostManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"Connectors\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"register\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Query\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Dimensions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-08-01-preview\",\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Reportconfigs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"BillingAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"Departments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"EnrollmentAccounts\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-31\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.CustomerInsights\",\r\n \"namespace\": \"Microsoft.CustomerInsights\",\r\n \"authorization\": {\r\n \"applicationId\": \"38c77d00-5fcb-4cce-9d93-af4738258e3c\",\r\n \"roleDefinitionId\": \"E006F9C7-F333-477C-8AD6-1F3A9FE87F55\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"hubs\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hubs/profiles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/interactions\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/authorizationPolicies\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/connectors/mappings\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/kpi\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/views\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/links\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roleAssignments\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/roles\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/widgetTypes\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hubs/suggestTypeSchema\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2017-01-01\",\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBox\",\r\n \"namespace\": \"Microsoft.DataBox\",\r\n \"authorization\": {\r\n \"applicationId\": \"5613cb5c-a7c9-4099-8034-511fd7616cb2\",\r\n \"roleDefinitionId\": \"382D72D1-63DC-4243-9B99-CB69FDD473D8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/availableSkus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"Australia East\",\r\n \"Canada Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Databricks\",\r\n \"namespace\": \"Microsoft.Databricks\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"d9327919-6775-4843-9037-3fb0fb0473cb\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"applicationId\": \"2ff814a6-3304-4ab8-85cb-cd0e6f879c1d\",\r\n \"roleDefinitionId\": \"f31567d0-b61f-43c2-97a5-a98cdc3bfcb6\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaces\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"workspaces/virtualNetworkPeerings\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West US 2\",\r\n \"Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-03-15\",\r\n \"2018-03-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-08-01-preview\",\r\n \"2016-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataCatalog\",\r\n \"namespace\": \"Microsoft.DataCatalog\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"catalogs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/jobs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-30\",\r\n \"2015-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataFactory\",\r\n \"namespace\": \"Microsoft.DataFactory\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"5d13f7d7-0567-429c-9880-320e9555e5fc\",\r\n \"roleDefinitionId\": \"956a8f20-9168-4c71-8e27-3c0460ac39a4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"dataFactories\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"factories\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"factories/integrationRuntimes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/diagnosticSettings\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactories/metricDefinitions\",\r\n \"locations\": [\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDataFactoryNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkAzureDataFactoryNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"dataFactorySchema\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\",\r\n \"2017-03-01-preview\",\r\n \"2015-10-01\",\r\n \"2015-09-01\",\r\n \"2015-08-01\",\r\n \"2015-07-01-preview\",\r\n \"2015-05-01-preview\",\r\n \"2015-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/configureFactoryRepo\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforMySQL\",\r\n \"namespace\": \"Microsoft.DBforMySQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"Central India\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DBforPostgreSQL\",\r\n \"namespace\": \"Microsoft.DBforPostgreSQL\",\r\n \"authorization\": {\r\n \"applicationId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"roleDefinitionId\": \"c13b7b9c-2ed1-4901-b8a8-16f35468da29\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"servers/recoverableServers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/virtualNetworkRules\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/azureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/performanceTiers\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01\",\r\n \"2017-04-30-preview\",\r\n \"2016-02-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesAzureAsyncOperation\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/securityAlertPoliciesOperationResults\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/topQueryStatistics\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"servers/queryTexts\",\r\n \"locations\": [\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"France Central\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Devices\",\r\n \"namespace\": \"Microsoft.Devices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkProvisioningServiceNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-01-preview\",\r\n \"2018-04-01\",\r\n \"2018-01-22-preview\",\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-09-25-preview\",\r\n \"2017-08-21-preview\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"IotHubs\",\r\n \"locations\": [\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01\",\r\n \"2018-01-22\",\r\n \"2017-07-01\",\r\n \"2017-01-19\",\r\n \"2016-02-03\",\r\n \"2015-08-15-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-04-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"IotHubs/eventGridFilters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"ProvisioningServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22\",\r\n \"2017-11-15\",\r\n \"2017-08-21-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"ElasticPools/IotHubTenants\",\r\n \"locations\": [\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-22-preview\",\r\n \"2017-09-25-preview\",\r\n \"2017-07-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DomainRegistration\",\r\n \"namespace\": \"Microsoft.DomainRegistration\",\r\n \"authorization\": {\r\n \"applicationId\": \"ea2f600a-4980-45b7-89bf-d34da487bda1\",\r\n \"roleDefinitionId\": \"54d7f2e3-5040-48a7-ae90-eebf629cfa0b\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/domainOwnershipIdentifiers\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topLevelDomains\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkDomainAvailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listDomainRecommendations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"validateDomainRegistrationInformation\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"generateSsoRequest\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01\",\r\n \"2015-04-01\",\r\n \"2015-02-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DynamicsLcs\",\r\n \"namespace\": \"Microsoft.DynamicsLcs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"lcsprojects\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/connectors\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"lcsprojects/clouddeployments\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-05-01-alpha\",\r\n \"2015-04-01-alpha\",\r\n \"2015-03-01-alpha\",\r\n \"2015-02-01-privatepreview\",\r\n \"2015-02-01-preview\",\r\n \"2015-02-01-beta\",\r\n \"2015-02-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"MSFT West US\",\r\n \"MSFT East US\",\r\n \"MSFT East Asia\",\r\n \"MSFT North Europe\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-02-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.EventGrid\",\r\n \"namespace\": \"Microsoft.EventGrid\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"4962773b-9cdb-44cf-a8bf-237846a00ab7\",\r\n \"roleDefinitionId\": \"7FE036D8-246F-48BF-A78F-AB3EE699C8F3\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"eventSubscriptions\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"topics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/topicTypes\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"extensionTopics\",\r\n \"locations\": [\r\n \"West US 2\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"France Central\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"East US 2 (Stage)\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationsStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\",\r\n \"2018-01-01\",\r\n \"2017-09-15-preview\",\r\n \"2017-06-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"domains\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"domains/topics\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Features\",\r\n \"namespace\": \"Microsoft.Features\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"features\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-12-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.GuestConfiguration\",\r\n \"namespace\": \"Microsoft.GuestConfiguration\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e935b4a5-8968-416d-8414-caed51c782a9\",\r\n \"roleDefinitionId\": \"9c6ffa40-421e-4dc0-9739-76b0699a11de\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"guestConfigurationAssignments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-30-preview\",\r\n \"2018-01-20-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.HardwareSecurityModules\",\r\n \"namespace\": \"Microsoft.HardwareSecurityModules\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"0eb690b7-d23e-4fb0-b43e-cd161ac80cc3\",\r\n \"roleDefinitionId\": \"48397dc8-3910-486a-8165-ab2df987447f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-10-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ImportExport\",\r\n \"namespace\": \"Microsoft.ImportExport\",\r\n \"authorization\": {\r\n \"applicationId\": \"7de4d5c5-5b32-4235-b8a9-33b34d6bcd2a\",\r\n \"roleDefinitionId\": \"9f7aa6bb-9454-46b6-8c01-a4b0f33ca151\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"South India\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-11-01\",\r\n \"2016-07-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-11-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.IoTCentral\",\r\n \"namespace\": \"Microsoft.IoTCentral\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9edfcdd9-0bc5-4bd4-b287-c3afc716aac7\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"IoTApps\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-09-01\",\r\n \"2017-07-01-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Kusto\",\r\n \"namespace\": \"Microsoft.Kusto\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-09-07-privatepreview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LabServices\",\r\n \"namespace\": \"Microsoft.LabServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"labaccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"users\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\",\r\n \"2017-12-01-alpha\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\",\r\n \"2017-12-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationServices\",\r\n \"namespace\": \"Microsoft.LocationServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LocationBasedServices\",\r\n \"namespace\": \"Microsoft.LocationBasedServices\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.LogAnalytics\",\r\n \"namespace\": \"Microsoft.LogAnalytics\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"ca7f3f0b-7d91-482c-8e09-c5d840d0eac5\",\r\n \"roleDefinitionId\": \"5d5a2e56-9835-44aa-93db-d2f19e155438\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"logs\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Logic\",\r\n \"namespace\": \"Microsoft.Logic\",\r\n \"authorization\": {\r\n \"applicationId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"roleDefinitionId\": \"cb3ef1fb-6e31-49e2-9d87-ed821053fe58\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"North Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"integrationAccounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\",\r\n \"2015-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"hostingEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-01-privatepreview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"isolatedEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"integrationServiceEnvironments\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\",\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningExperimentation\",\r\n \"namespace\": \"Microsoft.MachineLearningExperimentation\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"1cc297bc-1829-4524-941f-966373421033\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"accounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"teamAccounts/workspaces/projects\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"West Central US\",\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningCompute\",\r\n \"namespace\": \"Microsoft.MachineLearningCompute\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operationalizationClusters\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationsStatus\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-01-preview\",\r\n \"2017-06-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningServices\",\r\n \"namespace\": \"Microsoft.MachineLearningServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"0736f41a-0425-4b46-bdb5-1563eff02385\",\r\n \"roleDefinitionId\": \"376aa7d7-51a9-463d-bd4d-7e1691345612\",\r\n \"managedByRoleDefinitionId\": \"91d00862-cf55-46a5-9dce-260bbd92ce25\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MachineLearningModelManagement\",\r\n \"namespace\": \"Microsoft.MachineLearningModelManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US 2\",\r\n \"West Central US\",\r\n \"Australia East\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-09-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ManagedLab\",\r\n \"namespace\": \"Microsoft.ManagedLab\",\r\n \"authorization\": {\r\n \"applicationId\": \"1a14be2a-e903-4cec-99cf-b2e209259a0f\",\r\n \"roleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\",\r\n \"managedByRoleDefinitionId\": \"8f2de81a-b9aa-49d8-b24c-11814d3ab525\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-12-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Management\",\r\n \"namespace\": \"Microsoft.Management\",\r\n \"authorization\": {\r\n \"applicationId\": \"f2c304cf-8e7e-4c3f-8164-16299ad9d272\",\r\n \"roleDefinitionId\": \"c1cf3708-588a-4647-be7f-f400bbe214cf\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managementGroups\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"getEntities\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\",\r\n \"2018-01-01-preview\",\r\n \"2017-11-01-preview\",\r\n \"2017-08-31-preview\",\r\n \"2017-06-30-preview\",\r\n \"2017-05-31-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tenantBackfillStatus\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"startTenantBackfill\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Maps\",\r\n \"namespace\": \"Microsoft.Maps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Marketplace\",\r\n \"namespace\": \"Microsoft.Marketplace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"privategalleryitems\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/configs/importImage\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offerTypes/publishers/offers/plans/agreements\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listAvailableOffers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceApps\",\r\n \"namespace\": \"Microsoft.MarketplaceApps\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"classicDevServices\",\r\n \"locations\": [\r\n \"Northwest US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-11-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.MarketplaceOrdering\",\r\n \"namespace\": \"Microsoft.MarketplaceOrdering\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"agreements\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"offertypes\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Media\",\r\n \"namespace\": \"Microsoft.Media\",\r\n \"authorization\": {\r\n \"applicationId\": \"374b2a64-3b6b-436b-934c-b820eacca870\",\r\n \"roleDefinitionId\": \"aab70789-0cec-44b5-95d7-84b64c9487af\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"mediaservices\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/assets\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/contentKeyPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingLocators\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingPolicies\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/eventGridFilters\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/transforms/jobs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpoints\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEvents/liveOutputs\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/streamingEndpointOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveEventOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"mediaservices/liveOutputOperations\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\",\r\n \"2018-02-05\",\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-10-01\",\r\n \"2015-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East US\",\r\n \"West US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"West India\",\r\n \"South India\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01-preview\",\r\n \"2018-03-30-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NetApp\",\r\n \"namespace\": \"Microsoft.NetApp\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-08-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.NotificationHubs\",\r\n \"namespace\": \"Microsoft.NotificationHubs\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"namespaces\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"namespaces/notificationHubs\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNamespaceAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK West\",\r\n \"UK South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01\",\r\n \"2016-03-01\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBI\",\r\n \"namespace\": \"Microsoft.PowerBI\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"workspaceCollections\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Japan East\",\r\n \"UK South\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.PowerBIDedicated\",\r\n \"namespace\": \"Microsoft.PowerBIDedicated\",\r\n \"authorization\": {\r\n \"applicationId\": \"4ac7d521-0382-477b-b0f8-7e1d95f85ca2\",\r\n \"roleDefinitionId\": \"490d5987-bcf6-4be6-b6b2-056a78cb693a\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"capacities\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationresults\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West India\",\r\n \"Japan East\",\r\n \"West Central US\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-01\",\r\n \"2017-01-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2015-01-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SaaS\",\r\n \"namespace\": \"Microsoft.SaaS\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checknameavailability\",\r\n \"locations\": [\r\n \"global\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-beta\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Scheduler\",\r\n \"namespace\": \"Microsoft.Scheduler\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"jobcollections\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-03-01\",\r\n \"2016-01-01\",\r\n \"2014-08-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"flows\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-08-01-preview\",\r\n \"2015-02-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SecurityGraph\",\r\n \"namespace\": \"Microsoft.SecurityGraph\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettings\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diagnosticSettingsCategories\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabric\",\r\n \"namespace\": \"Microsoft.ServiceFabric\",\r\n \"authorization\": {\r\n \"applicationId\": \"74cb6831-0dbb-4be1-8206-fd4df301cdc2\",\r\n \"roleDefinitionId\": \"e55cc65f-6903-4917-b4ef-f8d4640b57f5\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"clusters/applications\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/clusterVersions\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/environments\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"North Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Brazil South\",\r\n \"South Central US\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01-privatepreview\",\r\n \"2018-02-01\",\r\n \"2017-07-01-privatepreview\",\r\n \"2017-07-01-preview\",\r\n \"2016-09-01\",\r\n \"2016-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.ServiceFabricMesh\",\r\n \"namespace\": \"Microsoft.ServiceFabricMesh\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"networks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"volumes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-07-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.SignalRService\",\r\n \"namespace\": \"Microsoft.SignalRService\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SignalR\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Solutions\",\r\n \"namespace\": \"Microsoft.Solutions\",\r\n \"authorization\": {\r\n \"applicationId\": \"ba4bc2bd-843f-4d61-9d33-199178eae34e\",\r\n \"roleDefinitionId\": \"6cb99a0b-29a8-49bc-b57b-057acc68cd9a\",\r\n \"managedByRoleDefinitionId\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"appliances\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applianceDefinitions\",\r\n \"locations\": [\r\n \"West Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-09-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applications\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"applicationDefinitions\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationstatuses\",\r\n \"locations\": [\r\n \"South Central US\",\r\n \"North Central US\",\r\n \"West Central US\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Brazil South\",\r\n \"Japan West\",\r\n \"Japan East\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"West India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\",\r\n \"2016-09-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-06-01\",\r\n \"2018-03-01\",\r\n \"2018-02-01\",\r\n \"2017-12-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorageSync\",\r\n \"namespace\": \"Microsoft.StorageSync\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"9469b9f5-6722-4481-a2b2-14ed560b706f\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageSyncServices\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/cloudEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/syncGroups/serverEndpoints\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/registeredServers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageSyncServices/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\",\r\n \"2018-01-01-preview\",\r\n \"2017-06-05-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/workflows\",\r\n \"locations\": [\r\n \"West US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central India\",\r\n \"South India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-04-02\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.StorSimple\",\r\n \"namespace\": \"Microsoft.StorSimple\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"managers\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"West Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-06-01\",\r\n \"2017-05-15\",\r\n \"2017-01-01\",\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-10-01\",\r\n \"2016-06-01\",\r\n \"2015-03-15\",\r\n \"2014-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.Subscription\",\r\n \"namespace\": \"Microsoft.Subscription\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"e3335adb-5ca0-40dc-b8d3-bedc094e523b\",\r\n \"roleDefinitionId\": \"c8967224-f823-4f1b-809b-0110a008dd26\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"SubscriptionDefinitions\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"SubscriptionOperations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\",\r\n \"2017-11-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"CreateSubscription\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-03-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.support\",\r\n \"namespace\": \"microsoft.support\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"959678cf-d004-4c22-82a6-d2ce549a58b8\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"supporttickets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-07-01-Preview\",\r\n \"2015-03-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.TimeSeriesInsights\",\r\n \"namespace\": \"Microsoft.TimeSeriesInsights\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"120d688d-1518-4cf7-bd38-182f158850b6\",\r\n \"roleDefinitionId\": \"5a43abdf-bb87-42c4-9e56-1c24bf364150\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"environments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/eventsources\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/referenceDataSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"environments/accessPolicies\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-11-15\",\r\n \"2017-02-28-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/microsoft.visualstudio\",\r\n \"namespace\": \"microsoft.visualstudio\",\r\n \"authorization\": {\r\n \"applicationId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"roleDefinitionId\": \"6a18f445-86f0-4e2e-b8a9-6b9b5677e3d8\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"account\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"account/project\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"account/extension\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\",\r\n \"2014-02-26\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West US 2\",\r\n \"Canada Central\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WindowsIoT\",\r\n \"namespace\": \"Microsoft.WindowsIoT\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DeviceServices\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-02-16-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.WorkloadMonitor\",\r\n \"namespace\": \"Microsoft.WorkloadMonitor\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"c4583fa2-767f-4008-9148-324598ac61bb\",\r\n \"roleDefinitionId\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-08-31-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Myget.PackageManagement\",\r\n \"namespace\": \"Myget.PackageManagement\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/NewRelic.APM\",\r\n \"namespace\": \"NewRelic.APM\",\r\n \"authorization\": {\r\n \"allowedThirdPartyExtensions\": [\r\n {\r\n \"name\": \"NewRelic_AzurePortal_APM\"\r\n }\r\n ]\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"East Asia\",\r\n \"Japan East\",\r\n \"Japan West\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-10-01\",\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/nuubit.nextgencdn\",\r\n \"namespace\": \"nuubit.nextgencdn\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"West US\",\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-05\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Paraleap.CloudMonix\",\r\n \"namespace\": \"Paraleap.CloudMonix\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Pokitdok.Platform\",\r\n \"namespace\": \"Pokitdok.Platform\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-05-17\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RavenHq.Db\",\r\n \"namespace\": \"RavenHq.Db\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-07-18\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-18\",\r\n \"2016-06-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Raygun.CrashReporting\",\r\n \"namespace\": \"Raygun.CrashReporting\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"apps\",\r\n \"locations\": [\r\n \"East US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Memcached\",\r\n \"namespace\": \"RedisLabs.Memcached\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RedisLabs.Redis\",\r\n \"namespace\": \"RedisLabs.Redis\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-07-10\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/RevAPM.MobileCDN\",\r\n \"namespace\": \"RevAPM.MobileCDN\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-05-24\",\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-29\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sendgrid.Email\",\r\n \"namespace\": \"Sendgrid.Email\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"South Central US\",\r\n \"South India\",\r\n \"Southeast Asia\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"West US\",\r\n \"West US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Sparkpost.Basic\",\r\n \"namespace\": \"Sparkpost.Basic\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-08-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/stackify.retrace\",\r\n \"namespace\": \"stackify.retrace\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2016-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/SuccessBricks.ClearDB\",\r\n \"namespace\": \"SuccessBricks.ClearDB\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"databases\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"clusters\",\r\n \"locations\": [\r\n \"Brazil South\",\r\n \"Central US\",\r\n \"East Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"North Europe\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"South Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/TrendMicro.DeepSecurity\",\r\n \"namespace\": \"TrendMicro.DeepSecurity\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"accounts\",\r\n \"locations\": [\r\n \"Central US\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/U2uconsult.TheIdentityHub\",\r\n \"namespace\": \"U2uconsult.TheIdentityHub\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"services\",\r\n \"locations\": [\r\n \"West Europe\"\r\n ],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"listCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"updateCommunicationPreference\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-06-15\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.DataBoxEdge\",\r\n \"namespace\": \"Microsoft.DataBoxEdge\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"DataBoxEdgeDevices/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-07-01\",\r\n \"2017-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"NotRegistered\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "459189" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "11998" ], "x-ms-request-id": [ - "1325cd82-d775-4897-bdee-d60cb6435a6f" + "58a4f469-3d59-4067-8141-a7e4ff22babe" ], "x-ms-correlation-request-id": [ - "1325cd82-d775-4897-bdee-d60cb6435a6f" + "58a4f469-3d59-4067-8141-a7e4ff22babe" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124313Z:1325cd82-d775-4897-bdee-d60cb6435a6f" + "WESTINDIA:20210418T214858Z:58a4f469-3d59-4067-8141-a7e4ff22babe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -711,59 +767,59 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:13 GMT" + "Sun, 18 Apr 2021 21:48:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "100" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM105' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkInterfaces/a2aVM105?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTEwNT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "317d54b4-966e-4948-8025-9b8c0f5c5373" + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "4754" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "eb89fe7c-e911-486e-9e2a-4b29bbc8a02b" + "846bc218-7447-42ff-bd3e-9a668b4ef40f" ], "x-ms-correlation-request-id": [ - "eb89fe7c-e911-486e-9e2a-4b29bbc8a02b" + "846bc218-7447-42ff-bd3e-9a668b4ef40f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124302Z:eb89fe7c-e911-486e-9e2a-4b29bbc8a02b" + "WESTINDIA:20210418T214858Z:846bc218-7447-42ff-bd3e-9a668b4ef40f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -771,119 +827,126 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:01 GMT" + "Sun, 18 Apr 2021 21:48:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "100" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM105' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkInterfaces/a2aVM105?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTEwNT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1dc0500-5f91-4da6-a8f2-01454c9b7ca8" - ], - "accept-language": [ - "en-US" + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "4754" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "ETag": [ + "W/\"7687ecb5-6f7e-49e7-b54a-8aa194c8682a\"" ], "x-ms-request-id": [ - "234a2832-7305-40a5-8e2f-b8e8e822be38" + "e39df4b4-9527-49d5-bf9f-72ca712f1eba" ], "x-ms-correlation-request-id": [ - "234a2832-7305-40a5-8e2f-b8e8e822be38" + "5f4db8d7-281a-45c6-b451-839cd2d5f5ee" ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124306Z:234a2832-7305-40a5-8e2f-b8e8e822be38" + "x-ms-arm-service-request-id": [ + "157577eb-9790-455a-841b-da6ab3ce8e2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214915Z:5f4db8d7-281a-45c6-b451-839cd2d5f5ee" + ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:06 GMT" + "Sun, 18 Apr 2021 21:49:15 GMT" + ], + "Content-Length": [ + "1913" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aVM105\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkInterfaces/a2aVM105\",\r\n \"etag\": \"W/\\\"7687ecb5-6f7e-49e7-b54a-8aa194c8682a\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fab8d69f-adb4-46ec-8cd3-91f470c4734b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM105\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkInterfaces/a2aVM105/ipConfigurations/a2aVM105\",\r\n \"etag\": \"W/\\\"7687ecb5-6f7e-49e7-b54a-8aa194c8682a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/publicIPAddresses/a2aVM105\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/virtualNetworks/a2aVM105/subnets/a2aVM105\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"lfr3jjyghdjufobum451bjeq0c.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0xMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d77e5531-b162-4f8c-b905-b79a531712de" + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "4754" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "ee6e3e91-55d1-41cb-9c69-4cea7367192b" + "794df749-0829-4df8-ab6c-3d18faea2bbb" ], "x-ms-correlation-request-id": [ - "ee6e3e91-55d1-41cb-9c69-4cea7367192b" + "794df749-0829-4df8-ab6c-3d18faea2bbb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124310Z:ee6e3e91-55d1-41cb-9c69-4cea7367192b" + "WESTINDIA:20210418T214858Z:794df749-0829-4df8-ab6c-3d18faea2bbb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -891,104 +954,111 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:10 GMT" + "Sun, 18 Apr 2021 21:48:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "100" ] }, - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM105' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVjb3ZlcnlTZXJ2aWNlcz9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0xMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8281ddd9-8709-4d5a-9610-6be5ff70fa28" - ], - "accept-language": [ - "en-US" + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/providers/Microsoft.RecoveryServices\",\r\n \"namespace\": \"Microsoft.RecoveryServices\",\r\n \"authorization\": {\r\n \"applicationId\": \"262044b1-e2ce-469f-a196-69ab7ada62d3\",\r\n \"roleDefinitionId\": \"21CEC436-F7D0-4ADE-8AD8-FEC5668484CC\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-01-10\",\r\n \"2017-07-01-preview\",\r\n \"2017-07-01\",\r\n \"2016-12-01\",\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2016-05-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2018-01-10\"\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupStatus\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\",\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocatedStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/allocateStamp\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-06-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-06-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupValidateFeatures\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/backupPreValidateProtection\",\r\n \"locations\": [\r\n \"West US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Brazil South\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Central US\",\r\n \"East US 2\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West Central US\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Southeast Asia\",\r\n \"East Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"Southeast Asia\"\r\n ],\r\n \"apiVersions\": [\r\n \"2016-08-10\",\r\n \"2016-06-01\",\r\n \"2015-12-15\",\r\n \"2015-12-10\",\r\n \"2015-11-10\",\r\n \"2015-08-15\",\r\n \"2015-08-10\",\r\n \"2015-06-10\",\r\n \"2015-03-15\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2016-08-10\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"backupProtectedItems\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-07-01\"\r\n ],\r\n \"apiProfiles\": [\r\n {\r\n \"profileVersion\": \"2018-06-01-profile\",\r\n \"apiVersion\": \"2017-07-01\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "4754" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "ETag": [ + "W/\"35a69c6d-a832-43a1-a984-e214cfae4023\"" ], "x-ms-request-id": [ - "6b7711a2-c881-4243-8ee3-d31ac9ad3669" + "9b628589-8eb2-4218-b0ec-df8b425ac4a8" ], "x-ms-correlation-request-id": [ - "6b7711a2-c881-4243-8ee3-d31ac9ad3669" + "ba83d815-8951-4142-9228-59c85dd5d92e" ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124313Z:6b7711a2-c881-4243-8ee3-d31ac9ad3669" + "x-ms-arm-service-request-id": [ + "81e77bf1-d103-40f7-93db-b98821dd8165" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214911Z:ba83d815-8951-4142-9228-59c85dd5d92e" + ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:13 GMT" + "Sun, 18 Apr 2021 21:49:10 GMT" + ], + "Content-Length": [ + "7388" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aVM105\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105\",\r\n \"etag\": \"W/\\\"35a69c6d-a832-43a1-a984-e214cfae4023\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d083543f-470f-4c80-aaf5-293b70553338\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM10522\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105/securityRules/a2aVM10522\",\r\n \"etag\": \"W/\\\"35a69c6d-a832-43a1-a984-e214cfae4023\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"35a69c6d-a832-43a1-a984-e214cfae4023\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"35a69c6d-a832-43a1-a984-e214cfae4023\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"35a69c6d-a832-43a1-a984-e214cfae4023\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"35a69c6d-a832-43a1-a984-e214cfae4023\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"35a69c6d-a832-43a1-a984-e214cfae4023\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"35a69c6d-a832-43a1-a984-e214cfae4023\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourcegroups/A2APowershellTestRg10?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", - "RequestMethod": "HEAD", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/virtualNetworks/a2aVM105?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0xMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "beb4bc18-7b57-420b-865a-a0869521ea8c" + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "113" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" @@ -996,17 +1066,14 @@ "x-ms-failure-cause": [ "gateway" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], "x-ms-request-id": [ - "090ed285-b0fc-42a2-a93d-e23893c4f974" + "bfe69b05-407e-4453-80c8-68cb0d1a0fa1" ], "x-ms-correlation-request-id": [ - "090ed285-b0fc-42a2-a93d-e23893c4f974" + "bfe69b05-407e-4453-80c8-68cb0d1a0fa1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124313Z:090ed285-b0fc-42a2-a93d-e23893c4f974" + "WESTINDIA:20210418T214859Z:bfe69b05-407e-4453-80c8-68cb0d1a0fa1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1014,894 +1081,2904 @@ "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:13 GMT" + "Sun, 18 Apr 2021 21:48:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "100" ] }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM105' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourcegroups/A2APowershellTestRg10?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMD9hcGktdmVyc2lvbj0yMDE3LTA1LTEw", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/virtualNetworks/a2aVM105?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0xMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" - ], "x-ms-client-request-id": [ - "8e926230-cdaa-4197-9fac-7405ff845fb5" - ], - "accept-language": [ - "en-US" + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10\",\r\n \"name\": \"A2APowershellTestRg10\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "195" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "ETag": [ + "W/\"8a45cbc3-015e-4bce-92ee-d59d1b713c93\"" ], "x-ms-request-id": [ - "7c0b4af2-bfff-470f-832f-48f837c8283f" + "673ff372-8a06-46f4-b7b6-373c94c05ee1" ], "x-ms-correlation-request-id": [ - "7c0b4af2-bfff-470f-832f-48f837c8283f" + "3a7af270-d387-4cf3-b4ce-a3b074e9b187" ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124316Z:7c0b4af2-bfff-470f-832f-48f837c8283f" + "x-ms-arm-service-request-id": [ + "0cf8c57c-c01d-419d-bd3f-9f4ba1779f9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214911Z:3a7af270-d387-4cf3-b4ce-a3b074e9b187" + ], "X-Content-Type-Options": [ "nosniff" ], - "Cache-Control": [ - "no-cache" - ], "Date": [ - "Thu, 16 Aug 2018 12:43:16 GMT" + "Sun, 18 Apr 2021 21:49:11 GMT" + ], + "Content-Length": [ + "1074" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM105\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/virtualNetworks/a2aVM105\",\r\n \"etag\": \"W/\\\"8a45cbc3-015e-4bce-92ee-d59d1b713c93\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"a7d46359-3806-42d3-b834-67bfb0a490d2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM105\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/virtualNetworks/a2aVM105/subnets/a2aVM105\",\r\n \"etag\": \"W/\\\"8a45cbc3-015e-4bce-92ee-d59d1b713c93\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/publicIPAddresses/a2aVM105?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTEwNT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "60c6bfbb-c6d9-41d7-89e9-c1212bdf4e93" + ], + "x-ms-correlation-request-id": [ + "60c6bfbb-c6d9-41d7-89e9-c1212bdf4e93" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214859Z:60c6bfbb-c6d9-41d7-89e9-c1212bdf4e93" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 21:48:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "100" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'a2aVM105' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/publicIPAddresses/a2aVM105?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTEwNT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "W/\"3d6faa28-c3c3-484e-9626-2f41b3a0ac0f\"" + ], + "x-ms-request-id": [ + "31adb322-8356-41f6-b6e2-4e04508f8688" + ], + "x-ms-correlation-request-id": [ + "73751770-99c2-4166-b243-b4c6f7b2b910" + ], + "x-ms-arm-service-request-id": [ + "810e3766-2ee2-4f32-accc-13f6b922aa25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214909Z:73751770-99c2-4166-b243-b4c6f7b2b910" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 21:49:08 GMT" + ], + "Content-Length": [ + "754" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM105\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/publicIPAddresses/a2aVM105\",\r\n \"etag\": \"W/\\\"3d6faa28-c3c3-484e-9626-2f41b3a0ac0f\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"34d1b464-87c0-47bb-a6d3-abb6762f3d77\",\r\n \"ipAddress\": \"40.87.121.172\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain105\",\r\n \"fqdn\": \"domain105.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM105?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNMTA1P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "28" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "40674ee6-8164-4125-8091-78792cefeed1" + ], + "x-ms-correlation-request-id": [ + "40674ee6-8164-4125-8091-78792cefeed1" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214901Z:40674ee6-8164-4125-8091-78792cefeed1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 21:49:00 GMT" + ], + "Content-Length": [ + "169" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105\",\r\n \"name\": \"a2aVM105\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/publicIPAddresses/a2aVM105?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTEwNT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain105\"\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "202" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "1" + ], + "x-ms-request-id": [ + "82fccb37-a514-43af-89f8-0d05d3627688" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/82fccb37-a514-43af-89f8-0d05d3627688?api-version=2017-10-01" + ], + "x-ms-correlation-request-id": [ + "284262de-8862-4f2f-9644-2f1944b76f61" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "07639907-b64e-4c93-81cd-2e82b6f5fd55" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214907Z:284262de-8862-4f2f-9644-2f1944b76f61" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 21:49:07 GMT" + ], + "Content-Length": [ + "718" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM105\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/publicIPAddresses/a2aVM105\",\r\n \"etag\": \"W/\\\"d93508a4-c82d-4e60-adab-507939f07e19\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"34d1b464-87c0-47bb-a6d3-abb6762f3d77\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain105\",\r\n \"fqdn\": \"domain105.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0xMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"a2aVM10522\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "451" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "3b68fbae-e713-4fff-81fd-d785e0874bc9" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/3b68fbae-e713-4fff-81fd-d785e0874bc9?api-version=2017-10-01" + ], + "x-ms-correlation-request-id": [ + "a47ed186-ce43-4fa0-aa87-fb381516df8d" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "7364eab8-c017-421b-b018-71adae66c3de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214908Z:a47ed186-ce43-4fa0-aa87-fb381516df8d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 21:49:07 GMT" + ], + "Content-Length": [ + "7380" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM105\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105\",\r\n \"etag\": \"W/\\\"84212eb5-f8ad-4b86-864e-17591fd7dc72\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d083543f-470f-4c80-aaf5-293b70553338\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM10522\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105/securityRules/a2aVM10522\",\r\n \"etag\": \"W/\\\"84212eb5-f8ad-4b86-864e-17591fd7dc72\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"84212eb5-f8ad-4b86-864e-17591fd7dc72\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"84212eb5-f8ad-4b86-864e-17591fd7dc72\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"84212eb5-f8ad-4b86-864e-17591fd7dc72\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"84212eb5-f8ad-4b86-864e-17591fd7dc72\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"84212eb5-f8ad-4b86-864e-17591fd7dc72\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"84212eb5-f8ad-4b86-864e-17591fd7dc72\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/virtualNetworks/a2aVM105?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0xMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"name\": \"a2aVM105\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "300" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "b39084e8-c300-4a17-b991-c9dfa05841ff" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/b39084e8-c300-4a17-b991-c9dfa05841ff?api-version=2017-10-01" + ], + "x-ms-correlation-request-id": [ + "cc57e036-5527-4431-ba5f-83faf64fc542" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "1502eb2d-7985-4710-85d4-a59c3f37b393" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214908Z:cc57e036-5527-4431-ba5f-83faf64fc542" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 21:49:07 GMT" + ], + "Content-Length": [ + "1072" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM105\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/virtualNetworks/a2aVM105\",\r\n \"etag\": \"W/\\\"13b6c3c0-38c1-44a4-a536-3d6c49ae6f86\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"a7d46359-3806-42d3-b834-67bfb0a490d2\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM105\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/virtualNetworks/a2aVM105/subnets/a2aVM105\",\r\n \"etag\": \"W/\\\"13b6c3c0-38c1-44a4-a536-3d6c49ae6f86\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/82fccb37-a514-43af-89f8-0d05d3627688?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvODJmY2NiMzctYTUxNC00M2FmLTg5ZjgtMGQwNWQzNjI3Njg4P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "d22c61b1-1259-4144-8a7b-ff6bef4f41bf" + ], + "x-ms-correlation-request-id": [ + "0f800abb-41ad-4eb5-a0bb-67d216a2c4ee" + ], + "x-ms-arm-service-request-id": [ + "dc00d66b-fff5-4eb0-a6e9-0b5929150ca9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214909Z:0f800abb-41ad-4eb5-a0bb-67d216a2c4ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 21:49:08 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/b39084e8-c300-4a17-b991-c9dfa05841ff?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjM5MDg0ZTgtYzMwMC00YTE3LWI5OTEtYzlkZmEwNTg0MWZmP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3b25c36d-b836-4c9d-82c2-63580e75755d" + ], + "x-ms-correlation-request-id": [ + "05c632d5-5a56-4cb8-b595-f02b5c28d007" + ], + "x-ms-arm-service-request-id": [ + "cb82a4ea-52c5-499b-95e8-6916034d84cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214911Z:05c632d5-5a56-4cb8-b595-f02b5c28d007" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 21:49:10 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/3b68fbae-e713-4fff-81fd-d785e0874bc9?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvM2I2OGZiYWUtZTcxMy00ZmZmLTgxZmQtZDc4NWUwODc0YmM5P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7eb0a589-6d38-4921-8902-91a34cb10307" + ], + "x-ms-correlation-request-id": [ + "4bbf82e8-5909-4ddb-a265-2224bb4cd6c9" + ], + "x-ms-arm-service-request-id": [ + "154c0993-0477-400d-a00a-ba99af03b9d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214911Z:4bbf82e8-5909-4ddb-a265-2224bb4cd6c9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 21:49:10 GMT" + ], + "Content-Length": [ + "29" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkInterfaces/a2aVM105?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTEwNT9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/virtualNetworks/a2aVM105/subnets/a2aVM105\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/publicIPAddresses/a2aVM105\"\r\n }\r\n },\r\n \"name\": \"a2aVM105\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "803" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5a1d4651-9edd-4516-af89-0324180def99" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/5a1d4651-9edd-4516-af89-0324180def99?api-version=2017-10-01" + ], + "x-ms-correlation-request-id": [ + "8a420f89-559d-4d18-85fe-e22ffdaa9a09" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-arm-service-request-id": [ + "15ce825d-d6af-41e7-8766-ddfd162f41be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214915Z:8a420f89-559d-4d18-85fe-e22ffdaa9a09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 21:49:15 GMT" + ], + "Content-Length": [ + "1913" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM105\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkInterfaces/a2aVM105\",\r\n \"etag\": \"W/\\\"7687ecb5-6f7e-49e7-b54a-8aa194c8682a\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"fab8d69f-adb4-46ec-8cd3-91f470c4734b\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM105\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkInterfaces/a2aVM105/ipConfigurations/a2aVM105\",\r\n \"etag\": \"W/\\\"7687ecb5-6f7e-49e7-b54a-8aa194c8682a\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/publicIPAddresses/a2aVM105\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/virtualNetworks/a2aVM105/subnets/a2aVM105\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"lfr3jjyghdjufobum451bjeq0c.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkSecurityGroups/a2aVM105\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Compute/virtualMachines/a2aVM105?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDU/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM105\",\r\n \"adminUsername\": \"adminUser\",\r\n \"adminPassword\": \"System.Security.SecureString\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkInterfaces/a2aVM105\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "734" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "10" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/fc9fb4a9-ca86-4331-ac50-071568288774?api-version=2020-12-01" + ], + "Azure-AsyncNotification": [ + "Enabled" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1198" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "fc9fb4a9-ca86-4331-ac50-071568288774" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "c5225b03-f667-42e7-9faf-ed55ed38eb1d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214924Z:c5225b03-f667-42e7-9faf-ed55ed38eb1d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 21:49:24 GMT" + ], + "Content-Length": [ + "1644" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aVM105\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Compute/virtualMachines/a2aVM105\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"4d5d0f99-d043-449d-ac1d-a2e6690afece\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM105\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Network/networkInterfaces/a2aVM105\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/fc9fb4a9-ca86-4331-ac50-071568288774?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmM5ZmI0YTktY2E4Ni00MzMxLWFjNTAtMDcxNTY4Mjg4Nzc0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "35" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29994" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "3d64aa17-1a35-46a1-ae4c-c50104933af9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "093d3c70-2663-43d0-85cf-0a1801ab37d3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T214934Z:093d3c70-2663-43d0-85cf-0a1801ab37d3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 21:49:34 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-04-19T03:19:21.7752286+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc9fb4a9-ca86-4331-ac50-071568288774\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/fc9fb4a9-ca86-4331-ac50-071568288774?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmM5ZmI0YTktY2E4Ni00MzMxLWFjNTAtMDcxNTY4Mjg4Nzc0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29993" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "45122e31-bb83-417b-8a27-bee13b604996" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "1a89dfb8-1357-4e1d-8473-a49c9156323e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T215009Z:1a89dfb8-1357-4e1d-8473-a49c9156323e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 21:50:09 GMT" + ], + "Content-Length": [ + "134" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-04-19T03:19:21.7752286+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"fc9fb4a9-ca86-4331-ac50-071568288774\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/fc9fb4a9-ca86-4331-ac50-071568288774?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvZmM5ZmI0YTktY2E4Ni00MzMxLWFjNTAtMDcxNTY4Mjg4Nzc0P2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "912dc6c5-48a2-4501-9d42-b6a47600cfe3" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29991" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "261546b1-1754-464a-9724-93dbd96df602" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "25c959df-0d53-402a-ab6a-1584d529054d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T215044Z:25c959df-0d53-402a-ab6a-1584d529054d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 21:50:44 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"startTime\": \"2021-04-19T03:19:21.7752286+05:30\",\r\n \"endTime\": \"2021-04-19T03:20:18.8378306+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"fc9fb4a9-ca86-4331-ac50-071568288774\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Storage/storageAccounts/cache105?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvY2FjaGUxMDU/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"EastUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7f5c0a4f-c5a5-4a3b-b5b2-294c0a319386" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "98" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/9d244805-13eb-443b-aecd-7bd618b11243?monitor=true&api-version=2017-10-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "9d244805-13eb-443b-aecd-7bd618b11243" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "e9d02c04-d12a-4bac-b2b0-c1013c1ac250" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T215052Z:e9d02c04-d12a-4bac-b2b0-c1013c1ac250" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 21:50:52 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/9d244805-13eb-443b-aecd-7bd618b11243?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy85ZDI0NDgwNS0xM2ViLTQ0M2ItYWVjZC03YmQ2MThiMTEyNDM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "56f8377d-1525-4759-b09f-e0e16b7abdb8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "c9123b34-55c9-4763-ae53-60b30710b2a4" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T215109Z:c9123b34-55c9-4763-ae53-60b30710b2a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 21:51:09 GMT" + ], + "Content-Length": [ + "1027" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM105/providers/Microsoft.Storage/storageAccounts/cache105\",\r\n \"name\": \"cache105\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-18T21:50:50.624905Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-18T21:50:50.624905Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-04-18T21:50:50.5311274Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cache105.blob.core.windows.net/\",\r\n \"queue\": \"https://cache105.queue.core.windows.net/\",\r\n \"table\": \"https://cache105.table.core.windows.net/\",\r\n \"file\": \"https://cache105.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/A2APowershellTestRg105?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDU/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2642c050-fde7-4ae8-b8cf-2c81f4de9850" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "07518e00-3705-45ff-93d4-44c37b0fa4ca" + ], + "x-ms-correlation-request-id": [ + "07518e00-3705-45ff-93d4-44c37b0fa4ca" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T215112Z:07518e00-3705-45ff-93d4-44c37b0fa4ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Sun, 18 Apr 2021 21:51:11 GMT" + ], + "Content-Length": [ + "204" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105\",\r\n \"name\": \"A2APowershellTestRg105\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"WestCentralUS\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5f2ce6e7-6f76-415f-a93b-f0a2246d9689" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "98" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "75be6b11-d68f-4d3d-b1d5-00493c0f4f6a" + ], + "x-ms-client-request-id": [ + "5f2ce6e7-6f76-415f-a93b-f0a2246d9689" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "209" + ], + "x-ms-correlation-request-id": [ + "75be6b11-d68f-4d3d-b1d5-00493c0f4f6a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T215150Z:75be6b11-d68f-4d3d-b1d5-00493c0f4f6a" + ], + "Date": [ + "Sun, 18 Apr 2021 21:51:49 GMT" + ], + "Content-Length": [ + "478" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest105\",\r\n \"etag\": \"W/\\\"datetime'2021-04-18T21%3A51%3A48.2290341Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db3fc6dc-e505-4387-af4b-32249383fb6c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "e488012c-b34e-4816-8834-9f0245fc8e82" + ], + "x-ms-client-request-id": [ + "db3fc6dc-e505-4387-af4b-32249383fb6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "e488012c-b34e-4816-8834-9f0245fc8e82" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T215210Z:e488012c-b34e-4816-8834-9f0245fc8e82" + ], + "Date": [ + "Sun, 18 Apr 2021 21:52:09 GMT" + ], + "Content-Length": [ + "478" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest105\",\r\n \"etag\": \"W/\\\"datetime'2021-04-18T21%3A51%3A48.2290341Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9leHRlbmRlZEluZm9ybWF0aW9uL3ZhdWx0RXh0ZW5kZWRJbmZvP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fc88bba-4146-4d44-821a-d15964e980cd" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "5f272527-6227-46fa-beba-25e7803bcd64" + ], + "x-ms-client-request-id": [ + "6fc88bba-4146-4d44-821a-d15964e980cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "5f272527-6227-46fa-beba-25e7803bcd64" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T215210Z:5f272527-6227-46fa-beba-25e7803bcd64" + ], + "Date": [ + "Sun, 18 Apr 2021 21:52:10 GMT" + ], + "Content-Length": [ + "86" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"ErrorCode\": \"ResourceExtendedInfoNotFound\",\r\n \"Message\": {\r\n \"Language\": \"en-US\",\r\n \"Value\": \"\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9leHRlbmRlZEluZm9ybWF0aW9uL3ZhdWx0RXh0ZW5kZWRJbmZvP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"h4HxT2cT/foGD08rWqAJ+Q==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fc88bba-4146-4d44-821a-d15964e980cd" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "102" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "6763167f-ff00-4a2b-9ea2-7ca7fc6689a2" + ], + "x-ms-client-request-id": [ + "6fc88bba-4146-4d44-821a-d15964e980cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "6763167f-ff00-4a2b-9ea2-7ca7fc6689a2" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T215211Z:6763167f-ff00-4a2b-9ea2-7ca7fc6689a2" + ], + "Date": [ + "Sun, 18 Apr 2021 21:52:10 GMT" + ], + "Content-Length": [ + "412" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"a20f046c-283e-479b-9630-e6ca93983ec2\",\r\n \"properties\": {\r\n \"integrityKey\": \"h4HxT2cT/foGD08rWqAJ+Q==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6fc88bba-4146-4d44-821a-d15964e980cd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-request-id": [ + "fdc123a2-be43-45e7-bf18-94d8e431249d" + ], + "x-ms-client-request-id": [ + "6fc88bba-4146-4d44-821a-d15964e980cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "fdc123a2-be43-45e7-bf18-94d8e431249d" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T215211Z:fdc123a2-be43-45e7-bf18-94d8e431249d" + ], + "Date": [ + "Sun, 18 Apr 2021 21:52:11 GMT" + ], + "Content-Length": [ + "490" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest105\",\r\n \"etag\": \"W/\\\"datetime'2021-04-18T21%3A52%3A11.2731517Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105\",\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/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationFabrics/a2aPrimaryFabric105?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNT9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"EastUS\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14ccc911-0de5-4450-9e3e-9977c85b01a7" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618779131843)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619383931843)\\/\",\"ClientRequestId\":\"e7453575-165b-48d6-9120-0cc9a3bc8a4a-2021-04-18 21:52:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Humd9RYvxCLGHyWQdD38pA//6UDRx0DhGDUEA/mDyD8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "119" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationFabrics/a2aPrimaryFabric105/operationresults/04cea4fa-f4de-4a0c-8952-4e2230f4363b?api-version=2021-02-10" + ], + "Retry-After": [ + "30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationOperationStatus/04cea4fa-f4de-4a0c-8952-4e2230f4363b?api-version=2021-02-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "14ccc911-0de5-4450-9e3e-9977c85b01a7" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "628853ab-0687-4b78-ac58-545c311ad8a6" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T215214Z:628853ab-0687-4b78-ac58-545c311ad8a6" + ], + "Date": [ + "Sun, 18 Apr 2021 21:52:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9yZXBsaWNhdGlvbkpvYnMvMDRjZWE0ZmEtZjRkZS00YTBjLTg5NTItNGUyMjMwZjQzNjNiP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14ccc911-0de5-4450-9e3e-9977c85b01a7" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618779134522)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619383934522)\\/\",\"ClientRequestId\":\"80da205c-9fd5-4654-ad69-dd1d5a1ae178-2021-04-18 21:52:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+BNobfODnAJkDDln/6oPjV0egkKm9jSJ7zNZGiRoqjc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "14ccc911-0de5-4450-9e3e-9977c85b01a7" + ], + "x-ms-correlation-request-id": [ + "3f55f133-918e-4859-8e08-d585c798371e" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T215214Z:3f55f133-918e-4859-8e08-d585c798371e" + ], + "Date": [ + "Sun, 18 Apr 2021 21:52:14 GMT" + ], + "Content-Length": [ + "1318" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b\",\r\n \"name\": \"04cea4fa-f4de-4a0c-8952-4e2230f4363b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"14ccc911-0de5-4450-9e3e-9977c85b01a7 ActivityId: 628853ab-0687-4b78-ac58-545c311ad8a6\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T21:52:14.374161Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T21:52:13.8043603Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4a0f76af-bb68-5190-8e40-1abc322df1b0\",\r\n \"targetObjectName\": \"a2aPrimaryFabric105\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"4a0f76af-bb68-5190-8e40-1abc322df1b0\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric105\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9yZXBsaWNhdGlvbkpvYnMvMDRjZWE0ZmEtZjRkZS00YTBjLTg5NTItNGUyMjMwZjQzNjNiP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9379a635-081a-46bd-9a48-85e7006c2718" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618779134930)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619383934930)\\/\",\"ClientRequestId\":\"df33545b-0b03-46ec-a091-66160f7feadc-2021-04-18 21:52:14Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RCLEQ6NYbzNSy5oJVwEe5hFQlhqTsf/4E3QLaER70WI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "9379a635-081a-46bd-9a48-85e7006c2718" + ], + "x-ms-correlation-request-id": [ + "75e7413a-92b1-435b-8786-285d229c4d43" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T215215Z:75e7413a-92b1-435b-8786-285d229c4d43" + ], + "Date": [ + "Sun, 18 Apr 2021 21:52:14 GMT" + ], + "Content-Length": [ + "1318" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b\",\r\n \"name\": \"04cea4fa-f4de-4a0c-8952-4e2230f4363b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"14ccc911-0de5-4450-9e3e-9977c85b01a7 ActivityId: 628853ab-0687-4b78-ac58-545c311ad8a6\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T21:52:14.374161Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T21:52:13.8043603Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4a0f76af-bb68-5190-8e40-1abc322df1b0\",\r\n \"targetObjectName\": \"a2aPrimaryFabric105\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"4a0f76af-bb68-5190-8e40-1abc322df1b0\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric105\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9yZXBsaWNhdGlvbkpvYnMvMDRjZWE0ZmEtZjRkZS00YTBjLTg5NTItNGUyMjMwZjQzNjNiP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e86024ec-b53a-407e-8ad2-3860dcf1a7b8" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618779155314)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619383955314)\\/\",\"ClientRequestId\":\"776b4e0d-27ed-463c-aae1-79142dfbb09b-2021-04-18 21:52:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HCEZA6xmBFHce4w35SsuVL9mPx5bqijq/fiGJwcVEWs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "e86024ec-b53a-407e-8ad2-3860dcf1a7b8" + ], + "x-ms-correlation-request-id": [ + "f0a7cdba-b4a1-41c0-9df8-7f39b882dfa3" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T215235Z:f0a7cdba-b4a1-41c0-9df8-7f39b882dfa3" + ], + "Date": [ + "Sun, 18 Apr 2021 21:52:35 GMT" + ], + "Content-Length": [ + "1318" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b\",\r\n \"name\": \"04cea4fa-f4de-4a0c-8952-4e2230f4363b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"14ccc911-0de5-4450-9e3e-9977c85b01a7 ActivityId: 628853ab-0687-4b78-ac58-545c311ad8a6\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T21:52:14.374161Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T21:52:13.8043603Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4a0f76af-bb68-5190-8e40-1abc322df1b0\",\r\n \"targetObjectName\": \"a2aPrimaryFabric105\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"4a0f76af-bb68-5190-8e40-1abc322df1b0\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric105\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9yZXBsaWNhdGlvbkpvYnMvMDRjZWE0ZmEtZjRkZS00YTBjLTg5NTItNGUyMjMwZjQzNjNiP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c475fb65-1bad-4aef-a637-054439f8befe" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618779175679)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619383975679)\\/\",\"ClientRequestId\":\"94df2831-390d-4a60-bd29-5fc64d8fe99b-2021-04-18 21:52:55Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5cbztSzDmxG4IPUpo0ZzsrjPG0YsnjMr/RQ1tTO7xi8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "c475fb65-1bad-4aef-a637-054439f8befe" + ], + "x-ms-correlation-request-id": [ + "cb5f5031-5bb7-426a-8a7c-7dfa0c1e813b" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T215255Z:cb5f5031-5bb7-426a-8a7c-7dfa0c1e813b" + ], + "Date": [ + "Sun, 18 Apr 2021 21:52:55 GMT" + ], + "Content-Length": [ + "1318" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b\",\r\n \"name\": \"04cea4fa-f4de-4a0c-8952-4e2230f4363b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"14ccc911-0de5-4450-9e3e-9977c85b01a7 ActivityId: 628853ab-0687-4b78-ac58-545c311ad8a6\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T21:52:14.374161Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T21:52:13.8043603Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4a0f76af-bb68-5190-8e40-1abc322df1b0\",\r\n \"targetObjectName\": \"a2aPrimaryFabric105\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"4a0f76af-bb68-5190-8e40-1abc322df1b0\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric105\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MTA/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9yZXBsaWNhdGlvbkpvYnMvMDRjZWE0ZmEtZjRkZS00YTBjLTg5NTItNGUyMjMwZjQzNjNiP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "91" - ], "x-ms-client-request-id": [ - "f56298e0-a8fc-4913-be21-335f3e96ec2b-2018-08-16 12:43:36Z-P" + "23ef503f-c29a-4a73-9bea-34164219e6fd" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618779196042)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619383996042)\\/\",\"ClientRequestId\":\"705e16e3-3dba-4642-9def-a4ebc087a45a-2021-04-18 21:53:16Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YwUTjYT8WgmO4Qo6xYFaujS1tgMK+y7Z3PL7eWtES+0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"location\": \"westus\",\r\n \"name\": \"A2APowershellTest10\",\r\n \"etag\": \"W/\\\"datetime'2018-08-16T12%3A43%3A40.3722763Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "384" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "6f96dae0-a77c-4368-8b86-661c5eaa05c0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" ], - "x-ms-client-request-id": [ - "f56298e0-a8fc-4913-be21-335f3e96ec2b-2018-08-16 12:43:36Z-P" + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "23ef503f-c29a-4a73-9bea-34164219e6fd" ], "x-ms-correlation-request-id": [ - "6f96dae0-a77c-4368-8b86-661c5eaa05c0" + "d059d1dc-296a-4f56-a173-78bf3de8f247" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124341Z:6f96dae0-a77c-4368-8b86-661c5eaa05c0" - ], - "Cache-Control": [ - "no-cache" + "WESTINDIA:20210418T215316Z:d059d1dc-296a-4f56-a173-78bf3de8f247" ], "Date": [ - "Thu, 16 Aug 2018 12:43:40 GMT" + "Sun, 18 Apr 2021 21:53:15 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Content-Length": [ + "1318" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 201 + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b\",\r\n \"name\": \"04cea4fa-f4de-4a0c-8952-4e2230f4363b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"14ccc911-0de5-4450-9e3e-9977c85b01a7 ActivityId: 628853ab-0687-4b78-ac58-545c311ad8a6\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T21:52:14.374161Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T21:52:13.8043603Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4a0f76af-bb68-5190-8e40-1abc322df1b0\",\r\n \"targetObjectName\": \"a2aPrimaryFabric105\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"4a0f76af-bb68-5190-8e40-1abc322df1b0\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric105\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9yZXBsaWNhdGlvbkpvYnMvMDRjZWE0ZmEtZjRkZS00YTBjLTg5NTItNGUyMjMwZjQzNjNiP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7821135-9b44-45fb-8482-5cfa72f20d10-2018-08-16 12:44:04Z-P" + "cb79e824-1554-4cae-a8b5-a3fe5a56c006" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618779216429)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384016429)\\/\",\"ClientRequestId\":\"cfd892ce-743c-418f-adf8-dc16b459a67e-2021-04-18 21:53:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"U5LSV3DZZ6My8FijckouhSzIWUOLbZTHhZZHBCWP0yc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"A2APowershellTest10\",\r\n \"etag\": \"W/\\\"datetime'2018-08-16T12%3A43%3A40.3722763Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "cb79e824-1554-4cae-a8b5-a3fe5a56c006" + ], + "x-ms-correlation-request-id": [ + "e77fd83e-6900-4500-b33e-4882e016bf34" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T215336Z:e77fd83e-6900-4500-b33e-4882e016bf34" + ], + "Date": [ + "Sun, 18 Apr 2021 21:53:36 GMT" + ], "Content-Length": [ - "396" + "1357" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/04cea4fa-f4de-4a0c-8952-4e2230f4363b\",\r\n \"name\": \"04cea4fa-f4de-4a0c-8952-4e2230f4363b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"14ccc911-0de5-4450-9e3e-9977c85b01a7 ActivityId: 628853ab-0687-4b78-ac58-545c311ad8a6\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T21:53:19.8449021Z\",\r\n \"endTime\": \"2021-04-18T21:53:19.9899023Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T21:52:13.8043603Z\",\r\n \"endTime\": \"2021-04-18T21:53:19Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4a0f76af-bb68-5190-8e40-1abc322df1b0\",\r\n \"targetObjectName\": \"a2aPrimaryFabric105\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"4a0f76af-bb68-5190-8e40-1abc322df1b0\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric105\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationFabrics/a2aPrimaryFabric105?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNT9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b8895455-aac9-4a20-a29b-afa4c33e12a2" ], - "Pragma": [ + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618779216803)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384016803)\\/\",\"ClientRequestId\":\"ae523ba0-fc6e-412a-a57c-5f8f8d4c5b5c-2021-04-18 21:53:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4r555JNY8MTMCh9WOMAexLR2hZhRcuuQoIzEX0uhp8U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" + "Pragma": [ + "no-cache" ], - "x-ms-request-id": [ - "d25b1eba-59ae-4572-8cf3-e5416f11b902" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" ], - "x-ms-client-request-id": [ - "a7821135-9b44-45fb-8482-5cfa72f20d10-2018-08-16 12:44:04Z-P" + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "x-ms-request-id": [ + "b8895455-aac9-4a20-a29b-afa4c33e12a2 4/18/2021 9:53:37 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "b8895455-aac9-4a20-a29b-afa4c33e12a2" ], "x-ms-correlation-request-id": [ - "d25b1eba-59ae-4572-8cf3-e5416f11b902" + "79d037b1-e877-4147-8f48-90160bf1b07d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124404Z:d25b1eba-59ae-4572-8cf3-e5416f11b902" - ], - "Cache-Control": [ - "no-cache" + "WESTINDIA:20210418T215337Z:79d037b1-e877-4147-8f48-90160bf1b07d" ], "Date": [ - "Thu, 16 Aug 2018 12:44:03 GMT" + "Sun, 18 Apr 2021 21:53:36 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Content-Length": [ + "683" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric105\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationFabrics/a2aPrimaryFabric105\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"4a0f76af-bb68-5190-8e40-1abc322df1b0\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationFabrics/a2aPrimaryFabric105?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNT9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b5d5750-915c-40d4-b993-cc43b030e7af" + "d80b7c80-eeb7-4b8b-a85e-65a7887dc810" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618779300653)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384100653)\\/\",\"ClientRequestId\":\"592765cf-dbc9-4efa-b26e-b5da350251ed-2021-04-18 21:55:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JX96FGjbz3pJiiEFCSXaCtpKnohpWRbJ0YF9VyGlJSM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"A2APowershellTest10\",\r\n \"etag\": \"W/\\\"datetime'2018-08-16T12%3A44%3A06.2508239Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "d80b7c80-eeb7-4b8b-a85e-65a7887dc810 4/18/2021 9:55:00 PM" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "d80b7c80-eeb7-4b8b-a85e-65a7887dc810" + ], + "x-ms-correlation-request-id": [ + "088fe389-a6f5-4fe3-b446-ffa3ae7d7f9a" + ], + "x-ms-routing-request-id": [ + "WESTINDIA:20210418T215500Z:088fe389-a6f5-4fe3-b446-ffa3ae7d7f9a" + ], + "Date": [ + "Sun, 18 Apr 2021 21:55:00 GMT" + ], "Content-Length": [ - "396" + "683" ], "Content-Type": [ "application/json" ], "Expires": [ "-1" + ] + }, + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric105\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationFabrics/a2aPrimaryFabric105\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"4a0f76af-bb68-5190-8e40-1abc322df1b0\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationFabrics/a2aRecoveryFabric105?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDU/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"WestCentralUS\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f184b28d-0e23-408f-b3df-3dd138457436" ], - "Pragma": [ + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618779217273)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384017273)\\/\",\"ClientRequestId\":\"209e1901-1605-4ea8-b459-1c5414af555c-2021-04-18 21:53:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OGn5LoxKfv6IWq8VM8t1L7q1HA+7Rqrg3fU0JhQWt68=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "126" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" + "Pragma": [ + "no-cache" ], - "x-ms-request-id": [ - "ac9e4ce6-1d4d-40c9-9308-0bf09983a7b4" + "Location": [ + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationFabrics/a2aRecoveryFabric105/operationresults/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1?api-version=2021-02-10" ], - "x-ms-client-request-id": [ - "9b5d5750-915c-40d4-b993-cc43b030e7af" + "Retry-After": [ + "30" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14933" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationOperationStatus/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1?api-version=2021-02-10" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "f184b28d-0e23-408f-b3df-3dd138457436" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "ac9e4ce6-1d4d-40c9-9308-0bf09983a7b4" + "0e0232e8-c590-413b-800b-392028f53b45" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124406Z:ac9e4ce6-1d4d-40c9-9308-0bf09983a7b4" - ], - "Cache-Control": [ - "no-cache" + "WESTINDIA:20210418T215337Z:0e0232e8-c590-413b-800b-392028f53b45" ], "Date": [ - "Thu, 16 Aug 2018 12:44:06 GMT" + "Sun, 18 Apr 2021 21:53:37 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" ] }, - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MTAvZXh0ZW5kZWRJbmZvcm1hdGlvbi92YXVsdEV4dGVuZGVkSW5mbz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9yZXBsaWNhdGlvbkpvYnMvOGZiMjNhYjEtMGM0MC00Y2FkLTlhYzAtNDdhNDczYzJmM2QxP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0d9e048-e2eb-4d03-a22f-5c09ae0991a5-2018-08-16 12:44:04Z-Ps" + "f184b28d-0e23-408f-b3df-3dd138457436" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "" + "{\"NotBeforeTimestamp\":\"\\/Date(1618779217901)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384017901)\\/\",\"ClientRequestId\":\"d1fec6fb-c3a3-4274-9d64-e7d1d58aabdc-2021-04-18 21:53:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kseCXAf/V+Z/yGRZYxnwDyrlqH+skAfVgsWmKelnqRY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"ErrorCode\": \"ResourceExtendedInfoNotFound\",\r\n \"Message\": {\r\n \"Language\": \"en-US\",\r\n \"Value\": \"\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "86" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1" + ], "X-Content-Type-Options": [ "nosniff" ], - "x-ms-request-id": [ - "a26d2a54-0b5e-4960-9077-bdcf58a17d88" - ], "x-ms-client-request-id": [ - "d0d9e048-e2eb-4d03-a22f-5c09ae0991a5-2018-08-16 12:44:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14934" + "f184b28d-0e23-408f-b3df-3dd138457436" ], "x-ms-correlation-request-id": [ - "a26d2a54-0b5e-4960-9077-bdcf58a17d88" + "fde25d85-b435-4116-8e4d-4f7ce2e2ceab" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124404Z:a26d2a54-0b5e-4960-9077-bdcf58a17d88" - ], - "Cache-Control": [ - "no-cache" + "WESTINDIA:20210418T215338Z:fde25d85-b435-4116-8e4d-4f7ce2e2ceab" ], "Date": [ - "Thu, 16 Aug 2018 12:44:03 GMT" + "Sun, 18 Apr 2021 21:53:38 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Content-Length": [ + "1321" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 404 + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1\",\r\n \"name\": \"8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f184b28d-0e23-408f-b3df-3dd138457436 ActivityId: 0e0232e8-c590-413b-800b-392028f53b45\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T21:53:37.7451148Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T21:53:37.5755751Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"59dfbc82-a33b-511f-a69f-4d8e6989fe88\",\r\n \"targetObjectName\": \"a2aRecoveryFabric105\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"59dfbc82-a33b-511f-a69f-4d8e6989fe88\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric105\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MTAvZXh0ZW5kZWRJbmZvcm1hdGlvbi92YXVsdEV4dGVuZGVkSW5mbz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"mJEaJ9ygTyRFd2r3dBeKOw==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9yZXBsaWNhdGlvbkpvYnMvOGZiMjNhYjEtMGM0MC00Y2FkLTlhYzAtNDdhNDczYzJmM2QxP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "102" - ], "x-ms-client-request-id": [ - "7b0fba74-b0c7-4dfd-98ba-229d5ab8df44-2018-08-16 12:44:04Z-Ps" + "38c2219a-096d-4282-aba4-4f4c49ecc145" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "" + "{\"NotBeforeTimestamp\":\"\\/Date(1618779218280)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384018280)\\/\",\"ClientRequestId\":\"9a423413-2dae-42e0-a55d-0c1d91b08751-2021-04-18 21:53:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ijeaVbAVHHhZJ70RrFgqijyXQ5TJVmvMhzkcOa69NhU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"8aa260c0-da8f-455f-ad07-5cd792ca6506\",\r\n \"properties\": {\r\n \"integrityKey\": \"mJEaJ9ygTyRFd2r3dBeKOw==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "410" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "x-ms-request-id": [ - "05760768-96f7-4a97-9211-0460538dd04b" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" ], - "x-ms-client-request-id": [ - "7b0fba74-b0c7-4dfd-98ba-229d5ab8df44-2018-08-16 12:44:04Z-Ps" + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "38c2219a-096d-4282-aba4-4f4c49ecc145" ], "x-ms-correlation-request-id": [ - "05760768-96f7-4a97-9211-0460538dd04b" + "eb954311-9b55-4824-9fad-70835c40bdeb" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124406Z:05760768-96f7-4a97-9211-0460538dd04b" - ], - "Cache-Control": [ - "no-cache" + "WESTINDIA:20210418T215338Z:eb954311-9b55-4824-9fad-70835c40bdeb" ], "Date": [ - "Thu, 16 Aug 2018 12:44:05 GMT" + "Sun, 18 Apr 2021 21:53:38 GMT" ], - "Server": [ - "Microsoft-IIS/10.0" + "Content-Length": [ + "1321" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1\",\r\n \"name\": \"8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f184b28d-0e23-408f-b3df-3dd138457436 ActivityId: 0e0232e8-c590-413b-800b-392028f53b45\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T21:53:37.7451148Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T21:53:37.5755751Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"59dfbc82-a33b-511f-a69f-4d8e6989fe88\",\r\n \"targetObjectName\": \"a2aRecoveryFabric105\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"59dfbc82-a33b-511f-a69f-4d8e6989fe88\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric105\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationFabrics/a2aPrimaryFabric10?api-version=2018-01-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MTAvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMxMD9hcGktdmVyc2lvbj0yMDE4LTAxLTEw", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\"\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9yZXBsaWNhdGlvbkpvYnMvOGZiMjNhYjEtMGM0MC00Y2FkLTlhYzAtNDdhNDczYzJmM2QxP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "119" - ], "x-ms-client-request-id": [ - "fb254c26-125a-483f-9be3-b21cfd649897-2018-08-16 12:44:06Z-Ps" + "09db6cc5-fb31-4e41-9740-13b9058b37f4" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534419846941)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535024646941)\\/\",\"ClientRequestId\":\"fb254c26-125a-483f-9be3-b21cfd649897-2018-08-16 12:44:06Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xtZrC06gqHj1B8Fkz2Fl0HvECfEAhTJjgV2iOj1tIGw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618779238664)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384038664)\\/\",\"ClientRequestId\":\"a5aee731-132f-4396-9966-1e21b07884c9-2021-04-18 21:53:58Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sA15ije7Mk39ar/+pRJDyQmEP/aAP5v6ur0Myo9dZ50=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "", "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Retry-After": [ - "30" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3", - "fb254c26-125a-483f-9be3-b21cfd649897-2018-08-16 12:44:06Z-Ps 8/16/2018 12:44:09 PM" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationOperationStatus/09653bf6-5e79-4d6d-8e27-77dd460612b3?api-version=2018-01-10" + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "fb254c26-125a-483f-9be3-b21cfd649897-2018-08-16 12:44:06Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "09db6cc5-fb31-4e41-9740-13b9058b37f4" ], "x-ms-correlation-request-id": [ - "b443b8b6-b8c9-44b3-bcf7-42a64ef73048" + "daaee086-d0fe-4acf-bab0-257821a65da4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124409Z:b443b8b6-b8c9-44b3-bcf7-42a64ef73048" - ], - "Cache-Control": [ - "no-cache" + "WESTINDIA:20210418T215359Z:daaee086-d0fe-4acf-bab0-257821a65da4" ], "Date": [ - "Thu, 16 Aug 2018 12:44:08 GMT" + "Sun, 18 Apr 2021 21:53:58 GMT" ], - "Location": [ - "https://management.azure.com/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationFabrics/a2aPrimaryFabric10/operationresults/09653bf6-5e79-4d6d-8e27-77dd460612b3?api-version=2018-01-10" + "Content-Length": [ + "1321" ], - "X-Powered-By": [ - "ASP.NET" + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1\",\r\n \"name\": \"8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f184b28d-0e23-408f-b3df-3dd138457436 ActivityId: 0e0232e8-c590-413b-800b-392028f53b45\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T21:53:37.7451148Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T21:53:37.5755751Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"59dfbc82-a33b-511f-a69f-4d8e6989fe88\",\r\n \"targetObjectName\": \"a2aRecoveryFabric105\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"59dfbc82-a33b-511f-a69f-4d8e6989fe88\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric105\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3?api-version=2018-01-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MTAvcmVwbGljYXRpb25Kb2JzLzA5NjUzYmY2LTVlNzktNGQ2ZC04ZTI3LTc3ZGQ0NjA2MTJiMz9hcGktdmVyc2lvbj0yMDE4LTAxLTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9yZXBsaWNhdGlvbkpvYnMvOGZiMjNhYjEtMGM0MC00Y2FkLTlhYzAtNDdhNDczYzJmM2QxP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abe0e525-af00-4df0-b8a0-53c2c30ca612-2018-08-16 12:44:10Z-Ps" + "8f1e019d-d084-4baf-983e-cb7d9706c6ad" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534419850104)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535024650104)\\/\",\"ClientRequestId\":\"abe0e525-af00-4df0-b8a0-53c2c30ca612-2018-08-16 12:44:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Dfm+dZ8J40Vt/4x274+1a9uw6epXe08OFy8eeVho0rg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618779259066)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384059066)\\/\",\"ClientRequestId\":\"6aee20c0-0935-4a53-91b7-26bd7dd55e91-2021-04-18 21:54:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZbN71dt7NXDl03r9Tn3tGs/LYSFwIz0BtV/LB3ytHLA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3\",\r\n \"name\": \"09653bf6-5e79-4d6d-8e27-77dd460612b3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb254c26-125a-483f-9be3-b21cfd649897-2018-08-16 12:44:06Z-Ps ActivityId: b443b8b6-b8c9-44b3-bcf7-42a64ef73048\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-16T12:44:10.0766132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-16T12:44:09.3633808Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6a871586-8c74-5634-90d8-d593d746731e\",\r\n \"targetObjectName\": \"a2aPrimaryFabric10\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"6a871586-8c74-5634-90d8-d593d746731e\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric10\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "abe0e525-af00-4df0-b8a0-53c2c30ca612-2018-08-16 12:44:10Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "8f1e019d-d084-4baf-983e-cb7d9706c6ad" ], "x-ms-correlation-request-id": [ - "4982ffe8-9c88-48e9-b1e9-6f9aaba0c682" + "52917cac-1700-45b6-90ee-18e61bb81bfe" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124410Z:4982ffe8-9c88-48e9-b1e9-6f9aaba0c682" + "WESTINDIA:20210418T215419Z:52917cac-1700-45b6-90ee-18e61bb81bfe" ], "Date": [ - "Thu, 16 Aug 2018 12:44:09 GMT" + "Sun, 18 Apr 2021 21:54:18 GMT" + ], + "Content-Length": [ + "1321" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1\",\r\n \"name\": \"8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f184b28d-0e23-408f-b3df-3dd138457436 ActivityId: 0e0232e8-c590-413b-800b-392028f53b45\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T21:53:37.7451148Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T21:53:37.5755751Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"59dfbc82-a33b-511f-a69f-4d8e6989fe88\",\r\n \"targetObjectName\": \"a2aRecoveryFabric105\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"59dfbc82-a33b-511f-a69f-4d8e6989fe88\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric105\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3?api-version=2018-01-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MTAvcmVwbGljYXRpb25Kb2JzLzA5NjUzYmY2LTVlNzktNGQ2ZC04ZTI3LTc3ZGQ0NjA2MTJiMz9hcGktdmVyc2lvbj0yMDE4LTAxLTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9yZXBsaWNhdGlvbkpvYnMvOGZiMjNhYjEtMGM0MC00Y2FkLTlhYzAtNDdhNDczYzJmM2QxP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9800187c-7082-4705-8156-afdc4d7b80b7-2018-08-16 12:44:10Z-Ps" + "229cf97e-9bcb-4038-bbd1-50155f071695" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534419850529)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535024650529)\\/\",\"ClientRequestId\":\"9800187c-7082-4705-8156-afdc4d7b80b7-2018-08-16 12:44:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zqu4F1fOsYSEt1+L1+KolmgFDRQd0AMcZUmsSu2M+0M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618779279435)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384079435)\\/\",\"ClientRequestId\":\"09a8ee80-2adb-401e-9f40-104be3a1066b-2021-04-18 21:54:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Y2E5PKpnu86DGnahASRRUUhFDKsF78bfAWrQAJNaiZM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3\",\r\n \"name\": \"09653bf6-5e79-4d6d-8e27-77dd460612b3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb254c26-125a-483f-9be3-b21cfd649897-2018-08-16 12:44:06Z-Ps ActivityId: b443b8b6-b8c9-44b3-bcf7-42a64ef73048\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-16T12:44:10.0766132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-16T12:44:09.3633808Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6a871586-8c74-5634-90d8-d593d746731e\",\r\n \"targetObjectName\": \"a2aPrimaryFabric10\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"6a871586-8c74-5634-90d8-d593d746731e\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric10\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "9800187c-7082-4705-8156-afdc4d7b80b7-2018-08-16 12:44:10Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "229cf97e-9bcb-4038-bbd1-50155f071695" ], "x-ms-correlation-request-id": [ - "40e632b3-96ca-4ebc-9760-713a65e93f6f" + "43bb5423-94bb-441f-800e-90b5117b0a31" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124410Z:40e632b3-96ca-4ebc-9760-713a65e93f6f" + "WESTINDIA:20210418T215439Z:43bb5423-94bb-441f-800e-90b5117b0a31" ], "Date": [ - "Thu, 16 Aug 2018 12:44:10 GMT" + "Sun, 18 Apr 2021 21:54:38 GMT" + ], + "Content-Length": [ + "1321" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1\",\r\n \"name\": \"8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f184b28d-0e23-408f-b3df-3dd138457436 ActivityId: 0e0232e8-c590-413b-800b-392028f53b45\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T21:53:37.7451148Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T21:53:37.5755751Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"59dfbc82-a33b-511f-a69f-4d8e6989fe88\",\r\n \"targetObjectName\": \"a2aRecoveryFabric105\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"59dfbc82-a33b-511f-a69f-4d8e6989fe88\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric105\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3?api-version=2018-01-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MTAvcmVwbGljYXRpb25Kb2JzLzA5NjUzYmY2LTVlNzktNGQ2ZC04ZTI3LTc3ZGQ0NjA2MTJiMz9hcGktdmVyc2lvbj0yMDE4LTAxLTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9yZXBsaWNhdGlvbkpvYnMvOGZiMjNhYjEtMGM0MC00Y2FkLTlhYzAtNDdhNDczYzJmM2QxP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92e9394d-8c2c-44e7-9c7a-51f0d3a76dd8-2018-08-16 12:45:10Z-Ps" + "bdfbc248-a3c9-4b83-940c-db526872c742" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534419910880)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535024710880)\\/\",\"ClientRequestId\":\"92e9394d-8c2c-44e7-9c7a-51f0d3a76dd8-2018-08-16 12:45:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"voU/2v7omATWfCkyzGIQznfEjhZIhWbjuSfc8Dc65W8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618779299887)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384099887)\\/\",\"ClientRequestId\":\"c04c2690-0244-4fd5-9c60-313a2df99509-2021-04-18 21:54:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"aXF5X+Q8vdqt1DXK8IXtdCWxzt8VVhLi1xHxdOZSNzg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3\",\r\n \"name\": \"09653bf6-5e79-4d6d-8e27-77dd460612b3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb254c26-125a-483f-9be3-b21cfd649897-2018-08-16 12:44:06Z-Ps ActivityId: b443b8b6-b8c9-44b3-bcf7-42a64ef73048\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-16T12:44:10.0766132Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-16T12:44:09.3633808Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6a871586-8c74-5634-90d8-d593d746731e\",\r\n \"targetObjectName\": \"a2aPrimaryFabric10\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"6a871586-8c74-5634-90d8-d593d746731e\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric10\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1339" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "92e9394d-8c2c-44e7-9c7a-51f0d3a76dd8-2018-08-16 12:45:10Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14961" + "bdfbc248-a3c9-4b83-940c-db526872c742" ], "x-ms-correlation-request-id": [ - "db7efaf9-852c-46a2-a7b0-6090b2e3dd99" + "957639ff-4dae-4633-b736-fbff4e719ed5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124511Z:db7efaf9-852c-46a2-a7b0-6090b2e3dd99" + "WESTINDIA:20210418T215500Z:957639ff-4dae-4633-b736-fbff4e719ed5" ], "Date": [ - "Thu, 16 Aug 2018 12:45:11 GMT" + "Sun, 18 Apr 2021 21:54:59 GMT" + ], + "Content-Length": [ + "1359" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationJobs/8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1\",\r\n \"name\": \"8fb23ab1-0c40-4cad-9ac0-47a473c2f3d1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f184b28d-0e23-408f-b3df-3dd138457436 ActivityId: 0e0232e8-c590-413b-800b-392028f53b45\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T21:54:42.5808699Z\",\r\n \"endTime\": \"2021-04-18T21:54:42.8758496Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T21:53:37.5755751Z\",\r\n \"endTime\": \"2021-04-18T21:54:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"59dfbc82-a33b-511f-a69f-4d8e6989fe88\",\r\n \"targetObjectName\": \"a2aRecoveryFabric105\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"59dfbc82-a33b-511f-a69f-4d8e6989fe88\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric105\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3?api-version=2018-01-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MTAvcmVwbGljYXRpb25Kb2JzLzA5NjUzYmY2LTVlNzktNGQ2ZC04ZTI3LTc3ZGQ0NjA2MTJiMz9hcGktdmVyc2lvbj0yMDE4LTAxLTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationFabrics/a2aRecoveryFabric105?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDU/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38ca3e59-a77f-4f6b-b8eb-394f504ac9d2-2018-08-16 12:46:11Z-Ps" + "b4089447-c945-4562-823d-b82ac2c1fc22" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534419971370)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535024771370)\\/\",\"ClientRequestId\":\"38ca3e59-a77f-4f6b-b8eb-394f504ac9d2-2018-08-16 12:46:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2vnHznbFgsVT1LWAsd2eYDnScAfGLquA7ISl4rbSwCM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618779300265)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384100265)\\/\",\"ClientRequestId\":\"412d77f3-b9ec-4e2c-8fea-a30466ac5b4e-2021-04-18 21:55:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hPBJdIKvoWEEYCdoTZiStT8zz1bCbu4uNc7X0LrAyeI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3\",\r\n \"name\": \"09653bf6-5e79-4d6d-8e27-77dd460612b3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"fb254c26-125a-483f-9be3-b21cfd649897-2018-08-16 12:44:06Z-Ps ActivityId: b443b8b6-b8c9-44b3-bcf7-42a64ef73048\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2018-08-16T12:45:16.6967338Z\",\r\n \"endTime\": \"2018-08-16T12:45:16.9154823Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2018-08-16T12:44:09.3633808Z\",\r\n \"endTime\": \"2018-08-16T12:45:16Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"6a871586-8c74-5634-90d8-d593d746731e\",\r\n \"targetObjectName\": \"a2aPrimaryFabric10\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"PrimaryVmmId\": \"6a871586-8c74-5634-90d8-d593d746731e\",\r\n \"PrimaryVmmName\": \"a2aPrimaryFabric10\",\r\n \"PrimaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1377" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationJobs/09653bf6-5e79-4d6d-8e27-77dd460612b3" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "b4089447-c945-4562-823d-b82ac2c1fc22 4/18/2021 9:55:00 PM" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "38ca3e59-a77f-4f6b-b8eb-394f504ac9d2-2018-08-16 12:46:11Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14960" + "b4089447-c945-4562-823d-b82ac2c1fc22" ], "x-ms-correlation-request-id": [ - "6cfb1819-f373-46b5-8ef7-a9711ec511f7" + "309685d1-bddb-4c60-8060-ab8c2017ba43" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124611Z:6cfb1819-f373-46b5-8ef7-a9711ec511f7" + "WESTINDIA:20210418T215500Z:309685d1-bddb-4c60-8060-ab8c2017ba43" ], "Date": [ - "Thu, 16 Aug 2018 12:46:11 GMT" + "Sun, 18 Apr 2021 21:55:00 GMT" + ], + "Content-Length": [ + "700" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric105\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationFabrics/a2aRecoveryFabric105\",\r\n \"properties\": {\r\n \"friendlyName\": \"West Central US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"59dfbc82-a33b-511f-a69f-4d8e6989fe88\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westcentralus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationFabrics/a2aPrimaryFabric10?api-version=2018-01-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvN2M5NDNjMWItNTEyMi00MDk3LTkwYzgtODYxNDExYmRkNTc0L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlY292ZXJ5U2VydmljZXMvdmF1bHRzL0EyQVBvd2Vyc2hlbGxUZXN0MTAvcmVwbGljYXRpb25GYWJyaWNzL2EyYVByaW1hcnlGYWJyaWMxMD9hcGktdmVyc2lvbj0yMDE4LTAxLTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationFabrics/a2aRecoveryFabric105?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDUvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNS9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDU/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b64506b2-4b66-4669-9b33-ae537e1d64f4-2018-08-16 12:46:11Z-Ps" + "20931324-4fb3-4ccf-8a8a-9bc8a0a4f70a" ], - "accept-language": [ + "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1534419971750)\\/\",\"NotAfterTimestamp\":\"\\/Date(1535024771750)\\/\",\"ClientRequestId\":\"b64506b2-4b66-4669-9b33-ae537e1d64f4-2018-08-16 12:46:11Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4f+210Cs1n/w0bBgzXsKmo94f2/lwQ9cXF8U17JxBEc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618779301024)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619384101024)\\/\",\"ClientRequestId\":\"c5556c71-1fc6-42c8-a03d-7b7f2bc2aa7a-2021-04-18 21:55:01Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"T4JZCR5Yjfur/p8HcmD+WlOiBbjAOBf3wSwxOF70a0k=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.7.3132.0", - "OSName/Windows10Enterprise", - "OSVersion/6.3.17134", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/1.2.0.0" + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric10\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/7c943c1b-5122-4097-90c8-861411bdd574/resourceGroups/A2APowershellTestRg10/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest10/replicationFabrics/a2aPrimaryFabric10\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"6a871586-8c74-5634-90d8-d593d746731e\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "668" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" + "Cache-Control": [ + "no-cache" ], "Pragma": [ "no-cache" ], - "Cache-Control": [ - "no-cache" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" ], "Server": [ "Microsoft-IIS/10.0", - "Microsoft-IIS/10.0" - ], - "x-ms-request-id": [ - "b64506b2-4b66-4669-9b33-ae537e1d64f4-2018-08-16 12:46:11Z-Ps 8/16/2018 12:46:11 PM" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-request-id": [ + "20931324-4fb3-4ccf-8a8a-9bc8a0a4f70a 4/18/2021 9:55:01 PM" + ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b64506b2-4b66-4669-9b33-ae537e1d64f4-2018-08-16 12:46:11Z-Ps" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14959" + "20931324-4fb3-4ccf-8a8a-9bc8a0a4f70a" ], "x-ms-correlation-request-id": [ - "6b7fff0d-fac8-44cf-881f-76ab2baa332a" + "f2d09149-d4e5-48a9-9187-8636a2e333b7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20180816T124612Z:6b7fff0d-fac8-44cf-881f-76ab2baa332a" + "WESTINDIA:20210418T215501Z:f2d09149-d4e5-48a9-9187-8636a2e333b7" ], "Date": [ - "Thu, 16 Aug 2018 12:46:11 GMT" + "Sun, 18 Apr 2021 21:55:01 GMT" + ], + "Content-Length": [ + "700" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" ] }, + "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric105\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg105/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest105/replicationFabrics/a2aRecoveryFabric105\",\r\n \"properties\": {\r\n \"friendlyName\": \"West Central US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"59dfbc82-a33b-511f-a69f-4d8e6989fe88\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westcentralus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { - "SubscriptionId": "7c943c1b-5122-4097-90c8-861411bdd574" + "SubscriptionId": "509099b2-9d2c-4636-b43e-bd5cafb6be69", + "NamingSuffix": "fce9fb26-a6eb-4f33-84bc-9755fc297b23" } } \ No newline at end of file diff --git a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/TestNewA2AManagedDiskReplicationConfigWithCmk.json b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/TestNewA2AManagedDiskReplicationConfigWithCmk.json index fe997b21a4bb..52d367d6c8ac 100644 --- a/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/TestNewA2AManagedDiskReplicationConfigWithCmk.json +++ b/src/RecoveryServices/RecoveryServices.SiteRecovery.Test/SessionRecords/RecoveryServices.SiteRecovery.Test.AsrA2ATests/TestNewA2AManagedDiskReplicationConfigWithCmk.json @@ -4,25 +4,25 @@ "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recRG104?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL3JlY1JHMTA0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "07c0e07a-82e7-4867-af21-77accb1e0d4d" + "a9ca48ac-4fe6-4ead-83ca-b365f9a70684" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "28" + "35" ] }, "ResponseHeaders": { @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-request-id": [ - "5a596b2e-cadb-4489-baa9-9b73c784973c" + "de94392a-3f7c-4253-9adb-97426da29832" ], "x-ms-correlation-request-id": [ - "5a596b2e-cadb-4489-baa9-9b73c784973c" + "de94392a-3f7c-4253-9adb-97426da29832" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234732Z:5a596b2e-cadb-4489-baa9-9b73c784973c" + "CENTRALUSEUAP:20210418T163524Z:de94392a-3f7c-4253-9adb-97426da29832" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:47:31 GMT" + "Sun, 18 Apr 2021 16:35:24 GMT" ], "Content-Length": [ - "169" + "176" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104\",\r\n \"name\": \"recRG104\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104\",\r\n \"name\": \"recRG104\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTA0P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTA0P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b05233f2-8a5b-4643-84c2-db9cf5bcd51e" + "d2184cf0-3be5-4203-9dad-0ad3f5a26728" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "4ef9e3b1-a3b7-4431-9e3c-e463a6526a8d" + "033eb7e3-8949-4bf9-80fc-fb1cec4908e0" ], "x-ms-correlation-request-id": [ - "4ef9e3b1-a3b7-4431-9e3c-e463a6526a8d" + "033eb7e3-8949-4bf9-80fc-fb1cec4908e0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234753Z:4ef9e3b1-a3b7-4431-9e3c-e463a6526a8d" + "CENTRALUSEUAP:20210418T163545Z:033eb7e3-8949-4bf9-80fc-fb1cec4908e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:47:53 GMT" + "Sun, 18 Apr 2021 16:35:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,23 +120,26 @@ "-1" ], "Content-Length": [ - "167" + "235" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104' under resource group 'recRG104' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104' under resource group 'recRG104' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTA0P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTA0P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d2184cf0-3be5-4203-9dad-0ad3f5a26728" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -147,16 +150,16 @@ "no-cache" ], "ETag": [ - "W/\"494b142f-fc28-4c5b-b1d4-ca18e8ebdb5e\"" + "W/\"e6fd7b5d-02c4-4f4a-8d4f-de1fe9657f69\"" ], "x-ms-request-id": [ - "d9661029-96af-4f1b-8931-0099d84fa3a8" + "593e7c4f-f843-43a8-8377-b76087cae66c" ], "x-ms-correlation-request-id": [ - "f2b25a5b-ee88-4d60-92d5-683e328eca1c" + "51e85c1a-6d13-4fcc-a92b-ef74b0e536b0" ], "x-ms-arm-service-request-id": [ - "3c086877-bb62-4656-b99f-6c5771800f8e" + "713eb8a0-462c-4a15-9242-2b2c32fbed60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -166,19 +169,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11992" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234809Z:f2b25a5b-ee88-4d60-92d5-683e328eca1c" + "CENTRALUSEUAP:20210418T163553Z:51e85c1a-6d13-4fcc-a92b-ef74b0e536b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:08 GMT" + "Sun, 18 Apr 2021 16:35:52 GMT" ], "Content-Length": [ - "1333" + "1306" ], "Content-Type": [ "application/json; charset=utf-8" @@ -187,26 +190,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104\",\r\n \"etag\": \"W/\\\"494b142f-fc28-4c5b-b1d4-ca18e8ebdb5e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7833e3c8-7f1c-41a2-b9ee-669fb989782e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"494b142f-fc28-4c5b-b1d4-ca18e8ebdb5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104\",\r\n \"etag\": \"W/\\\"e6fd7b5d-02c4-4f4a-8d4f-de1fe9657f69\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e74b017-9729-49f9-aa44-78112c101a8b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"e6fd7b5d-02c4-4f4a-8d4f-de1fe9657f69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTA0P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTA0P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0fd6a043-aed8-4f59-940d-531e9a9866f8" + "d2184cf0-3be5-4203-9dad-0ad3f5a26728" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -217,16 +220,16 @@ "no-cache" ], "ETag": [ - "W/\"494b142f-fc28-4c5b-b1d4-ca18e8ebdb5e\"" + "W/\"e6fd7b5d-02c4-4f4a-8d4f-de1fe9657f69\"" ], "x-ms-request-id": [ - "9965e0a8-1154-44cd-a953-b40e101c6c93" + "7ed7f043-631a-4681-b901-bd5f44b95cc1" ], "x-ms-correlation-request-id": [ - "bcb9ccb5-22f7-4c0a-821a-74346323e648" + "697c8afe-98f4-44f1-85b0-ff04117b7f63" ], "x-ms-arm-service-request-id": [ - "04aeffc0-2895-4300-b421-8581dc0bcf4d" + "bdf74b29-ec90-4757-9dc5-e9034642773e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -236,19 +239,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11991" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234809Z:bcb9ccb5-22f7-4c0a-821a-74346323e648" + "CENTRALUSEUAP:20210418T163553Z:697c8afe-98f4-44f1-85b0-ff04117b7f63" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:08 GMT" + "Sun, 18 Apr 2021 16:35:52 GMT" ], "Content-Length": [ - "1333" + "1306" ], "Content-Type": [ "application/json; charset=utf-8" @@ -257,32 +260,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104\",\r\n \"etag\": \"W/\\\"494b142f-fc28-4c5b-b1d4-ca18e8ebdb5e\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7833e3c8-7f1c-41a2-b9ee-669fb989782e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"494b142f-fc28-4c5b-b1d4-ca18e8ebdb5e\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104\",\r\n \"etag\": \"W/\\\"e6fd7b5d-02c4-4f4a-8d4f-de1fe9657f69\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8e74b017-9729-49f9-aa44-78112c101a8b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"e6fd7b5d-02c4-4f4a-8d4f-de1fe9657f69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTA0P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL3JlY1JHMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvQTJBUmVjb3ZlcnlOZXR3b3JrMTA0P2FwaS12ZXJzaW9uPTIwMjAtMTEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"frontendSubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"addressPrefixes\": [],\r\n \"serviceEndpoints\": [],\r\n \"serviceEndpointPolicies\": [],\r\n \"ipAllocations\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"name\": \"frontendSubnet\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"ipAllocations\": []\r\n },\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "26595ad2-128e-447f-9c66-6c6afa246117" + "d2184cf0-3be5-4203-9dad-0ad3f5a26728" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "627" + "692" ] }, "ResponseHeaders": { @@ -296,16 +299,19 @@ "3" ], "x-ms-request-id": [ - "5d9bcf1f-3042-4f29-969b-85e000c64397" + "87d730f2-dc7a-4942-b5d0-3c728219b9b7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/5d9bcf1f-3042-4f29-969b-85e000c64397?api-version=2019-09-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westcentralus/operations/87d730f2-dc7a-4942-b5d0-3c728219b9b7?api-version=2020-11-01" ], "x-ms-correlation-request-id": [ - "dfbab2af-34c4-4fdd-b8ee-70bbd55e95ee" + "87e65d16-cdbd-4283-af92-0771d57e4163" + ], + "Azure-AsyncNotification": [ + "Enabled" ], "x-ms-arm-service-request-id": [ - "cdc24439-3c16-4627-a762-1913fc7bd5bf" + "280c6a10-73c6-4730-9d34-6201e2a10cc9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -315,19 +321,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234804Z:dfbab2af-34c4-4fdd-b8ee-70bbd55e95ee" + "CENTRALUSEUAP:20210418T163549Z:87e65d16-cdbd-4283-af92-0771d57e4163" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:04 GMT" + "Sun, 18 Apr 2021 16:35:49 GMT" ], "Content-Length": [ - "1331" + "1304" ], "Content-Type": [ "application/json; charset=utf-8" @@ -336,20 +342,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104\",\r\n \"etag\": \"W/\\\"d57d172b-54d8-47b4-8f1f-cf54bbcaf787\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7833e3c8-7f1c-41a2-b9ee-669fb989782e\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"d57d172b-54d8-47b4-8f1f-cf54bbcaf787\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"A2ARecoveryNetwork104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104\",\r\n \"etag\": \"W/\\\"17617334-64ab-441c-8f7d-ae05b8741a69\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8e74b017-9729-49f9-aa44-78112c101a8b\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"frontendSubnet\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104/subnets/frontendSubnet\",\r\n \"etag\": \"W/\\\"17617334-64ab-441c-8f7d-ae05b8741a69\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n \"serviceEndpoints\": [],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/5d9bcf1f-3042-4f29-969b-85e000c64397?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWQ5YmNmMWYtMzA0Mi00ZjI5LTk2OWItODVlMDAwYzY0Mzk3P2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westcentralus/operations/87d730f2-dc7a-4942-b5d0-3c728219b9b7?api-version=2020-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9vcGVyYXRpb25zLzg3ZDczMGYyLWRjN2EtNDk0Mi1iNWQwLTNjNzI4MjE5YjliNz9hcGktdmVyc2lvbj0yMDIwLTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d2184cf0-3be5-4203-9dad-0ad3f5a26728" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Network.NetworkManagementClient/19.17.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Network.NetworkManagementClient/20.4.0.0" ] }, "ResponseHeaders": { @@ -360,13 +369,13 @@ "no-cache" ], "x-ms-request-id": [ - "6795d47b-0e28-4744-8517-1b57a3a864a2" + "9d5c779f-b74b-4762-b2b9-0146128af44e" ], "x-ms-correlation-request-id": [ - "9f6e0c4c-4d91-4783-82c9-4f7ba598ca5c" + "7e6e6f12-31c9-4a90-907c-a03ecddcd6c8" ], "x-ms-arm-service-request-id": [ - "444d49dc-8bd1-446b-b277-22ec70edeeec" + "2d57bdb6-bcef-4ad8-8687-b8ce2873261c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -376,16 +385,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234808Z:9f6e0c4c-4d91-4783-82c9-4f7ba598ca5c" + "CENTRALUSEUAP:20210418T163552Z:7e6e6f12-31c9-4a90-907c-a03ecddcd6c8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:08 GMT" + "Sun, 18 Apr 2021 16:35:52 GMT" ], "Content-Length": [ "29" @@ -401,22 +410,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/images/RHEL?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9pbWFnZXMvUkhFTD9hcGktdmVyc2lvbj0yMDE5LTA3LTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/images/RHEL?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9pbWFnZXMvUkhFTD9hcGktdmVyc2lvbj0yMDIwLTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1ab5d6e-b8aa-455f-92bf-ca08793cec56" + "bb41f37b-d7e0-443f-a389-88d44a62e095" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -430,13 +439,13 @@ "gateway" ], "x-ms-request-id": [ - "470e7ce6-0aeb-44a1-b216-c0a78e1c66b2" + "ef352e29-712c-43bf-b915-d4492344e3c9" ], "x-ms-correlation-request-id": [ - "470e7ce6-0aeb-44a1-b216-c0a78e1c66b2" + "ef352e29-712c-43bf-b915-d4492344e3c9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234810Z:470e7ce6-0aeb-44a1-b216-c0a78e1c66b2" + "CENTRALUSEUAP:20210418T163555Z:ef352e29-712c-43bf-b915-d4492344e3c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -445,7 +454,7 @@ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:09 GMT" + "Sun, 18 Apr 2021 16:35:54 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -467,16 +476,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7105cac6-7e65-44bf-9449-e6546ab1b727" + "bb41f37b-d7e0-443f-a389-88d44a62e095" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -487,16 +496,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-request-id": [ - "74a8e44f-f8e9-4759-a0d5-4754de9ca7d9" + "2a809dc0-69f2-497e-9704-e024dcff3327" ], "x-ms-correlation-request-id": [ - "74a8e44f-f8e9-4759-a0d5-4754de9ca7d9" + "2a809dc0-69f2-497e-9704-e024dcff3327" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234810Z:74a8e44f-f8e9-4759-a0d5-4754de9ca7d9" + "CENTRALUSEUAP:20210418T163555Z:2a809dc0-69f2-497e-9704-e024dcff3327" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -505,7 +514,7 @@ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:09 GMT" + "Sun, 18 Apr 2021 16:35:55 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -514,29 +523,29 @@ "-1" ], "Content-Length": [ - "28902" + "59552" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"locations/vsmoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"Australia East\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"Southeast Asia\",\r\n \"West US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"West India\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UK West\",\r\n \"Brazil South\",\r\n \"East Asia\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"France South\",\r\n \"West US 2\",\r\n \"Japan West\",\r\n \"France Central\",\r\n \"Central India\",\r\n \"Korea South\",\r\n \"Korea Central\",\r\n \"Japan East\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"South Africa West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute\",\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"roleDefinitionId\": \"e4770acb-272e-4dc8-87f3-12f44a612224\"\r\n },\r\n {\r\n \"applicationId\": \"a303894e-f1d8-4a37-bf10-67aa654a0596\",\r\n \"roleDefinitionId\": \"903ac751-8ad5-4e5a-bfc2-5e49f450a241\"\r\n },\r\n {\r\n \"applicationId\": \"a8b6bf88-1d1a-4626-b040-9a729ea93c65\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"184909ca-69f1-4368-a6a7-c558ee6eb0bd\",\r\n \"roleDefinitionId\": \"45c8267c-80ba-4b96-9a43-115b8f49fccd\"\r\n },\r\n {\r\n \"applicationId\": \"5e5e43d4-54da-4211-86a4-c6e7f3715801\",\r\n \"roleDefinitionId\": \"ffcd6e5b-8772-457d-bb17-89703c03428f\"\r\n },\r\n {\r\n \"applicationId\": \"ce6ff14a-7fdc-4685-bbe0-f6afdfcfa8e0\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"372140e0-b3b7-4226-8ef9-d57986796201\",\r\n \"roleDefinitionId\": \"cb17cddc-dbac-4ae0-ae79-8db34eddfca0\"\r\n },\r\n {\r\n \"applicationId\": \"b9a92e36-2cf8-4f4e-bcb3-9d99e00e14ab\",\r\n \"roleDefinitionId\": \"6efa92ca-56b6-40af-a468-5e3d2b5232f0\"\r\n },\r\n {\r\n \"applicationId\": \"579d9c9d-4c83-4efc-8124-7eba65ed3356\",\r\n \"roleDefinitionId\": \"8c99c4ce-d744-4597-a2f0-0a0044d67560\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/extensions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/virtualMachines/networkInterfaces\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-09-01\",\r\n \"2016-08-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachineScaleSets/publicIPAddresses\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-10-30-preview\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/vmSizes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/runCommands\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachines\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/virtualMachineScaleSets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/edgeZones/publishers\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"restorePointCollections/restorePoints\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"proximityPlacementGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"sshPublicKeys\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotEvictionRates\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/spotPriceHistory\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/sharedGalleries\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\",\r\n \"2016-03-30\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"sharedVMImages/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/artifactPublishers\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/capsoperations\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\",\r\n \"2017-10-15-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"galleries/images/versions\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"locations/galleries\",\r\n \"locations\": [\r\n \"West Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Southeast Asia\",\r\n \"West Europe\",\r\n \"West US\",\r\n \"East US\",\r\n \"Canada Central\",\r\n \"North Europe\",\r\n \"North Central US\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"West India\",\r\n \"East Asia\",\r\n \"Australia East\",\r\n \"Japan East\",\r\n \"Korea South\",\r\n \"West US 2\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Japan West\",\r\n \"Korea Central\",\r\n \"France Central\",\r\n \"Central US\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-09-30\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/diskoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-09-30\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-03-30\",\r\n \"2016-04-30-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"diskEncryptionSets\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\",\r\n \"2019-11-01\",\r\n \"2019-07-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"diskAccesses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-12-01\",\r\n \"2020-09-30\",\r\n \"2020-06-30\",\r\n \"2020-05-01\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roles\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/csoperations\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsVersions\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/cloudServiceOsFamilies\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/roleInstances/networkInterfaces\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"cloudServices/publicIPAddresses\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"images\",\r\n \"locations\": [\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"West Europe\",\r\n \"East US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Brazil South\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK West\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\",\r\n \"2017-03-30\",\r\n \"2016-08-30\",\r\n \"2016-04-30-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"locations/logAnalytics\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\",\r\n \"2018-06-01\",\r\n \"2018-04-01\",\r\n \"2017-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"hostGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"hostGroups/hosts\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East US 2\",\r\n \"West Europe\",\r\n \"Southeast Asia\",\r\n \"France Central\",\r\n \"North Europe\",\r\n \"West US 2\",\r\n \"East US\",\r\n \"UK South\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"East Asia\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Korea Central\",\r\n \"Brazil South\",\r\n \"UK West\",\r\n \"Canada Central\",\r\n \"West US\",\r\n \"West Central US\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Australia Southeast\",\r\n \"Korea South\",\r\n \"West India\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Australia East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"South Africa West\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Norway West\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"Jio India Central\",\r\n \"Sweden Central\",\r\n \"Sweden South\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\",\r\n \"2019-12-01\",\r\n \"2019-07-01\",\r\n \"2019-03-01\",\r\n \"2018-10-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"capacityReservationGroups/capacityReservations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Jio India West\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2021-03-01\",\r\n \"2020-12-01\",\r\n \"2020-06-01\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"None\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/virtualMachines/a2aVM104?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/virtualMachines/a2aVM104?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1383eb86-e6cf-420e-8fb9-cc08eb917d05" + "bb41f37b-d7e0-443f-a389-88d44a62e095" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -550,13 +559,13 @@ "gateway" ], "x-ms-request-id": [ - "1cef520d-d21d-4b24-ab51-a1d963dd6c07" + "dde24b31-7eea-4f81-8d63-e5ad6f1ced44" ], "x-ms-correlation-request-id": [ - "1cef520d-d21d-4b24-ab51-a1d963dd6c07" + "dde24b31-7eea-4f81-8d63-e5ad6f1ced44" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234810Z:1cef520d-d21d-4b24-ab51-a1d963dd6c07" + "CENTRALUSEUAP:20210418T163556Z:dde24b31-7eea-4f81-8d63-e5ad6f1ced44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -565,7 +574,7 @@ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:10 GMT" + "Sun, 18 Apr 2021 16:35:55 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -581,16 +590,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/virtualMachines/a2aVM104?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/virtualMachines/a2aVM104?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bb41f37b-d7e0-443f-a389-88d44a62e095" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -601,35 +613,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3998,Microsoft.Compute/LowCostGet30Min;31991" + "Microsoft.Compute/LowCostGet3Min;3997,Microsoft.Compute/LowCostGet30Min;31952" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "b9e55c3a-b265-4308-b2da-9e4695101525" + "88753fa3-2f92-4ca8-9c4e-297468f291d0" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11853" ], "x-ms-correlation-request-id": [ - "e517e4f7-6882-4977-b059-9f33e30f62de" + "a86280fd-904d-4a30-9917-1d5bcf93f20a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235111Z:e517e4f7-6882-4977-b059-9f33e30f62de" + "CENTRALUSEUAP:20210418T163732Z:a86280fd-904d-4a30-9917-1d5bcf93f20a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:51:10 GMT" + "Sun, 18 Apr 2021 16:37:32 GMT" ], "Content-Length": [ - "1682" + "1897" ], "Content-Type": [ "application/json; charset=utf-8" @@ -638,26 +650,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/virtualMachines/a2aVM104\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"vmId\": \"fd81cd34-6417-4ba2-8c5f-f087c6939629\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM104_OsDisk_1_40571b9bff534e03b979b7758a5b3610\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/disks/a2aVM104_OsDisk_1_40571b9bff534e03b979b7758a5b3610\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM104\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkInterfaces/a2aVM104\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/virtualMachines/a2aVM104\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9a9252ed-82ba-4d85-adba-5f4c26b97d02\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM104_OsDisk_1_2be099117e8c4f09a7b15577f0337655\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/disks/a2aVM104_OsDisk_1_2be099117e8c4f09a7b15577f0337655\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM104\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkInterfaces/a2aVM104\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/virtualMachines/a2aVM104?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/virtualMachines/a2aVM104?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "565fe566-ccb9-4245-bd40-6287a61d17cf" + "b1572d9e-927a-4c08-88b2-b9a4777db8a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -668,35 +680,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31989" + "Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31951" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "c5124e0c-09c1-4127-9301-efeb264e7ee8" + "d8198eee-2ec2-45b8-a289-3ca189f46b1c" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11851" ], "x-ms-correlation-request-id": [ - "9f762477-64a6-49a2-a329-496ab51f3fa4" + "45dbd3c1-2c7e-424d-ad7a-85e3577eb400" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235135Z:9f762477-64a6-49a2-a329-496ab51f3fa4" + "CENTRALUSEUAP:20210418T163754Z:45dbd3c1-2c7e-424d-ad7a-85e3577eb400" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:51:35 GMT" + "Sun, 18 Apr 2021 16:37:54 GMT" ], "Content-Length": [ - "1682" + "1897" ], "Content-Type": [ "application/json; charset=utf-8" @@ -705,7 +717,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/virtualMachines/a2aVM104\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"vmId\": \"fd81cd34-6417-4ba2-8c5f-f087c6939629\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM104_OsDisk_1_40571b9bff534e03b979b7758a5b3610\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/disks/a2aVM104_OsDisk_1_40571b9bff534e03b979b7758a5b3610\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM104\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkInterfaces/a2aVM104\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/virtualMachines/a2aVM104\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9a9252ed-82ba-4d85-adba-5f4c26b97d02\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"name\": \"a2aVM104_OsDisk_1_2be099117e8c4f09a7b15577f0337655\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/disks/a2aVM104_OsDisk_1_2be099117e8c4f09a7b15577f0337655\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM104\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkInterfaces/a2aVM104\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -715,16 +727,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c00b5e7f-5188-4b51-b5cb-134cde510869" + "bb41f37b-d7e0-443f-a389-88d44a62e095" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -738,16 +750,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "cb1e359b-6033-436d-9cb4-e79669914542" + "1c732d46-063e-4b0d-9efd-24227f0770ff" ], "x-ms-correlation-request-id": [ - "cb1e359b-6033-436d-9cb4-e79669914542" + "1c732d46-063e-4b0d-9efd-24227f0770ff" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234811Z:cb1e359b-6033-436d-9cb4-e79669914542" + "CENTRALUSEUAP:20210418T163557Z:1c732d46-063e-4b0d-9efd-24227f0770ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -756,7 +768,7 @@ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:11 GMT" + "Sun, 18 Apr 2021 16:35:56 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -778,16 +790,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2baebdb7-83ad-4c38-9322-bbdc8d1fda5f" + "bb41f37b-d7e0-443f-a389-88d44a62e095" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -801,13 +813,13 @@ "gateway" ], "x-ms-request-id": [ - "a47010c7-cc07-4941-b843-adc510be6593" + "3bf90aec-e2df-4f3d-b896-77fd4b8831f1" ], "x-ms-correlation-request-id": [ - "a47010c7-cc07-4941-b843-adc510be6593" + "3bf90aec-e2df-4f3d-b896-77fd4b8831f1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234811Z:a47010c7-cc07-4941-b843-adc510be6593" + "CENTRALUSEUAP:20210418T163558Z:3bf90aec-e2df-4f3d-b896-77fd4b8831f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -816,7 +828,7 @@ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:11 GMT" + "Sun, 18 Apr 2021 16:35:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -837,11 +849,14 @@ "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bb41f37b-d7e0-443f-a389-88d44a62e095" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -852,16 +867,16 @@ "no-cache" ], "ETag": [ - "W/\"ccbc35dd-b7b9-4010-90f7-1237bd5a7cdb\"" + "W/\"a6530674-c092-4815-9567-1e38da4533c7\"" ], "x-ms-request-id": [ - "9d8bb49d-9c53-48b0-9f06-07458458fdc2" + "611a4fba-7750-493c-ba4f-53cb9a662edb" ], "x-ms-correlation-request-id": [ - "39ac5a7e-70fd-4418-a577-7d3d644bd699" + "96db7d07-e93d-41fc-be99-2158a7198cb3" ], "x-ms-arm-service-request-id": [ - "f9abf48a-0974-4ed0-99e9-6b13363d6961" + "08c18ec2-5517-47da-a9cc-1a24cf2418cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -871,16 +886,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11744" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234851Z:39ac5a7e-70fd-4418-a577-7d3d644bd699" + "CENTRALUSEUAP:20210418T163607Z:96db7d07-e93d-41fc-be99-2158a7198cb3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:50 GMT" + "Sun, 18 Apr 2021 16:36:06 GMT" ], "Content-Length": [ "1913" @@ -892,26 +907,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkInterfaces/a2aVM104\",\r\n \"etag\": \"W/\\\"ccbc35dd-b7b9-4010-90f7-1237bd5a7cdb\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"60ca3bfb-7fc2-4d09-bac4-5d43b6d19643\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkInterfaces/a2aVM104/ipConfigurations/a2aVM104\",\r\n \"etag\": \"W/\\\"ccbc35dd-b7b9-4010-90f7-1237bd5a7cdb\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/publicIPAddresses/a2aVM104\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104/subnets/a2aVM104\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"odsulymi34zuvigqhqh35jqdvf.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkInterfaces/a2aVM104\",\r\n \"etag\": \"W/\\\"a6530674-c092-4815-9567-1e38da4533c7\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e0cde8d1-b0a6-46e9-a8c6-b95cd05edac4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkInterfaces/a2aVM104/ipConfigurations/a2aVM104\",\r\n \"etag\": \"W/\\\"a6530674-c092-4815-9567-1e38da4533c7\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/publicIPAddresses/a2aVM104\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104/subnets/a2aVM104\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mbpgmpgueb0enmvyfumwdhh42e.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0xMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0xMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eedfdb83-cecb-4aee-aa8c-e4b7064e51da" + "bb41f37b-d7e0-443f-a389-88d44a62e095" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -925,13 +940,13 @@ "gateway" ], "x-ms-request-id": [ - "e8d08e58-a9fe-4425-b802-fcdf9da2d262" + "e844ce2a-f7d4-407c-9433-d7dbf69f0a87" ], "x-ms-correlation-request-id": [ - "e8d08e58-a9fe-4425-b802-fcdf9da2d262" + "e844ce2a-f7d4-407c-9433-d7dbf69f0a87" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234811Z:e8d08e58-a9fe-4425-b802-fcdf9da2d262" + "CENTRALUSEUAP:20210418T163558Z:e844ce2a-f7d4-407c-9433-d7dbf69f0a87" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -940,7 +955,7 @@ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:11 GMT" + "Sun, 18 Apr 2021 16:35:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -956,16 +971,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0xMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0xMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bb41f37b-d7e0-443f-a389-88d44a62e095" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -976,16 +994,16 @@ "no-cache" ], "ETag": [ - "W/\"a6680b03-627b-45d6-8ed3-1ce0ce7a8e7f\"" + "W/\"00052dd6-8ad1-4cc5-b196-574afea4ed8f\"" ], "x-ms-request-id": [ - "92522ac2-26d1-4fcf-8c4f-52d93ea439a3" + "81e19196-7c7a-4287-b266-bfa6c0964b70" ], "x-ms-correlation-request-id": [ - "8b27f77a-8503-4b4f-8c03-8a2c7ae72e91" + "6fd29d0c-8f3e-418c-abd5-adff71d4b617" ], "x-ms-arm-service-request-id": [ - "14c98904-1fe6-4a45-8e63-e9889df8906e" + "08b4f563-720c-49e8-a027-c126d6eb0671" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -995,19 +1013,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11745" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234847Z:8b27f77a-8503-4b4f-8c03-8a2c7ae72e91" + "CENTRALUSEUAP:20210418T163605Z:6fd29d0c-8f3e-418c-abd5-adff71d4b617" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:46 GMT" + "Sun, 18 Apr 2021 16:36:05 GMT" ], "Content-Length": [ - "1108" + "7388" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1016,26 +1034,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104\",\r\n \"etag\": \"W/\\\"a6680b03-627b-45d6-8ed3-1ce0ce7a8e7f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e145e570-ef88-4ab3-a0d0-3c0fdfa603ad\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104/subnets/a2aVM104\",\r\n \"etag\": \"W/\\\"a6680b03-627b-45d6-8ed3-1ce0ce7a8e7f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104\",\r\n \"etag\": \"W/\\\"00052dd6-8ad1-4cc5-b196-574afea4ed8f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"df3d714e-9389-42fb-8ec6-45123ac98ef6\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM10422\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/securityRules/a2aVM10422\",\r\n \"etag\": \"W/\\\"00052dd6-8ad1-4cc5-b196-574afea4ed8f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"00052dd6-8ad1-4cc5-b196-574afea4ed8f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"00052dd6-8ad1-4cc5-b196-574afea4ed8f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"00052dd6-8ad1-4cc5-b196-574afea4ed8f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"00052dd6-8ad1-4cc5-b196-574afea4ed8f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"00052dd6-8ad1-4cc5-b196-574afea4ed8f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"00052dd6-8ad1-4cc5-b196-574afea4ed8f\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/publicIPAddresses/a2aVM104?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTEwND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0xMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d28cfff-e6dd-44fa-a103-23e9af6699ca" + "bb41f37b-d7e0-443f-a389-88d44a62e095" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1049,13 +1067,13 @@ "gateway" ], "x-ms-request-id": [ - "5010655e-c39c-4794-a46d-08c31a5d99d4" + "735048e9-4b13-4dba-ac7e-bf4223f2d877" ], "x-ms-correlation-request-id": [ - "5010655e-c39c-4794-a46d-08c31a5d99d4" + "735048e9-4b13-4dba-ac7e-bf4223f2d877" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234811Z:5010655e-c39c-4794-a46d-08c31a5d99d4" + "CENTRALUSEUAP:20210418T163559Z:735048e9-4b13-4dba-ac7e-bf4223f2d877" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1064,7 +1082,7 @@ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:11 GMT" + "Sun, 18 Apr 2021 16:35:59 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1080,16 +1098,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/publicIPAddresses/a2aVM104?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTEwND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0xMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bb41f37b-d7e0-443f-a389-88d44a62e095" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1100,16 +1121,16 @@ "no-cache" ], "ETag": [ - "W/\"21e82bd3-0fec-41aa-93c2-01c7a9a330fc\"" + "W/\"4ef21073-8a0c-4b5c-b435-0ebeec2867e2\"" ], "x-ms-request-id": [ - "b008d682-55b1-4023-8742-dc34f53dbc61" + "a0efcf53-9eea-4a7a-b2e7-e7dcbf023510" ], "x-ms-correlation-request-id": [ - "dd6d54cb-dda1-4447-993b-27014bcebfe9" + "25aa5fa6-caeb-46be-b4dd-2565a1098ce8" ], "x-ms-arm-service-request-id": [ - "28ff77c8-9bc8-4043-8a20-3beaf8de56ce" + "4584201e-917e-4005-9823-90b8a465175c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1119,19 +1140,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234825Z:dd6d54cb-dda1-4447-993b-27014bcebfe9" + "CENTRALUSEUAP:20210418T163605Z:25aa5fa6-caeb-46be-b4dd-2565a1098ce8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:24 GMT" + "Sun, 18 Apr 2021 16:36:05 GMT" ], "Content-Length": [ - "753" + "1074" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1140,26 +1161,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/publicIPAddresses/a2aVM104\",\r\n \"etag\": \"W/\\\"21e82bd3-0fec-41aa-93c2-01c7a9a330fc\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8d93e89e-894a-4495-95d4-e68e95eab070\",\r\n \"ipAddress\": \"168.61.20.51\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain104\",\r\n \"fqdn\": \"domain104.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104\",\r\n \"etag\": \"W/\\\"4ef21073-8a0c-4b5c-b435-0ebeec2867e2\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3c665e60-20d4-4674-b2b8-2d19619cfee4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104/subnets/a2aVM104\",\r\n \"etag\": \"W/\\\"4ef21073-8a0c-4b5c-b435-0ebeec2867e2\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0xMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/publicIPAddresses/a2aVM104?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTEwND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "efaedfb7-a058-4069-aa4d-6d237064649e" + "bb41f37b-d7e0-443f-a389-88d44a62e095" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1173,13 +1194,13 @@ "gateway" ], "x-ms-request-id": [ - "5b5147b1-b1bb-4e7e-b5b5-9325a7a3f0ed" + "bf75edfa-8062-4cc4-a284-c55ba0b82ffd" ], "x-ms-correlation-request-id": [ - "5b5147b1-b1bb-4e7e-b5b5-9325a7a3f0ed" + "bf75edfa-8062-4cc4-a284-c55ba0b82ffd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234811Z:5b5147b1-b1bb-4e7e-b5b5-9325a7a3f0ed" + "CENTRALUSEUAP:20210418T163559Z:bf75edfa-8062-4cc4-a284-c55ba0b82ffd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1188,7 +1209,7 @@ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:11 GMT" + "Sun, 18 Apr 2021 16:35:59 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1204,16 +1225,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0xMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/publicIPAddresses/a2aVM104?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTEwND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bb41f37b-d7e0-443f-a389-88d44a62e095" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1224,16 +1248,16 @@ "no-cache" ], "ETag": [ - "W/\"aa4eb28c-3778-47e9-8c7a-2f13159fd2e5\"" + "W/\"ba5d4019-150d-4e64-8a2b-cbb5e7fc8d2f\"" ], "x-ms-request-id": [ - "8925d1a1-218c-48f0-af90-3593d69c2b7d" + "c6c7d70c-bda5-491d-8bb0-ea720d33de4b" ], "x-ms-correlation-request-id": [ - "1d2bdd49-06e0-4ebf-82f9-573ef543b0b8" + "835aff10-fb66-4d6b-801c-4546ca2e79e9" ], "x-ms-arm-service-request-id": [ - "ed84c9e4-8e18-40be-b1a3-5e912bd4a96a" + "b81c3b76-5dd1-4435-abb7-80388ee8e7c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1243,19 +1267,19 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11992" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234826Z:1d2bdd49-06e0-4ebf-82f9-573ef543b0b8" + "CENTRALUSEUAP:20210418T163604Z:835aff10-fb66-4d6b-801c-4546ca2e79e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:25 GMT" + "Sun, 18 Apr 2021 16:36:03 GMT" ], "Content-Length": [ - "7388" + "754" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1264,26 +1288,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104\",\r\n \"etag\": \"W/\\\"aa4eb28c-3778-47e9-8c7a-2f13159fd2e5\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8ee63e8f-4f85-4080-aaae-bf57bec34205\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM10422\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/securityRules/a2aVM10422\",\r\n \"etag\": \"W/\\\"aa4eb28c-3778-47e9-8c7a-2f13159fd2e5\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"aa4eb28c-3778-47e9-8c7a-2f13159fd2e5\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"aa4eb28c-3778-47e9-8c7a-2f13159fd2e5\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"aa4eb28c-3778-47e9-8c7a-2f13159fd2e5\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"aa4eb28c-3778-47e9-8c7a-2f13159fd2e5\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"aa4eb28c-3778-47e9-8c7a-2f13159fd2e5\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"aa4eb28c-3778-47e9-8c7a-2f13159fd2e5\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/publicIPAddresses/a2aVM104\",\r\n \"etag\": \"W/\\\"ba5d4019-150d-4e64-8a2b-cbb5e7fc8d2f\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"7b0542cf-c573-4c7f-acc4-c6f9e1eabe21\",\r\n \"ipAddress\": \"20.185.217.16\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain104\",\r\n \"fqdn\": \"domain104.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", "StatusCode": 200 }, { "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2aVM104?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL2EyYVZNMTA0P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1ce5903f-a0c7-4e14-9f8a-a02bb8f87578" + "bb41f37b-d7e0-443f-a389-88d44a62e095" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1300,16 +1324,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1196" ], "x-ms-request-id": [ - "8116a240-201f-43a1-a34b-43fb8478d847" + "0ae09dac-40d4-4e58-a6f2-c845be554ea5" ], "x-ms-correlation-request-id": [ - "8116a240-201f-43a1-a34b-43fb8478d847" + "0ae09dac-40d4-4e58-a6f2-c845be554ea5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234815Z:8116a240-201f-43a1-a34b-43fb8478d847" + "CENTRALUSEUAP:20210418T163600Z:0ae09dac-40d4-4e58-a6f2-c845be554ea5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1318,7 +1342,7 @@ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:14 GMT" + "Sun, 18 Apr 2021 16:36:00 GMT" ], "Content-Length": [ "169" @@ -1330,26 +1354,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104\",\r\n \"name\": \"a2aVM104\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104\",\r\n \"name\": \"a2aVM104\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104?api-version=2017-10-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay92aXJ0dWFsTmV0d29ya3MvYTJhVk0xMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"name\": \"a2aVM104\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"name\": \"a2aVM104\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2db091a3-02dc-4d0c-aaa4-05377e073137" + "bb41f37b-d7e0-443f-a389-88d44a62e095" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1369,38 +1393,41 @@ "3" ], "x-ms-request-id": [ - "77de88da-a584-47ad-88f6-b197c741f890" + "5f9709e3-d81b-43f3-b446-51bdc81bacb2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/77de88da-a584-47ad-88f6-b197c741f890?api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/5f9709e3-d81b-43f3-b446-51bdc81bacb2?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "db9116cc-7638-4ebe-a1e6-7f371e32c152" + "c4ebf261-3032-4436-91af-3a0f12e441df" + ], + "Azure-AsyncNotification": [ + "Enabled" ], "x-ms-arm-service-request-id": [ - "e7fbc8e2-4874-46e2-b6c1-19d0d7810d45" + "aaa55f4e-6757-4fef-8fa7-b27730e9db36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234822Z:db9116cc-7638-4ebe-a1e6-7f371e32c152" + "CENTRALUSEUAP:20210418T163601Z:c4ebf261-3032-4436-91af-3a0f12e441df" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:21 GMT" + "Sun, 18 Apr 2021 16:36:01 GMT" ], "Content-Length": [ - "1106" + "1072" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1409,26 +1436,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104\",\r\n \"etag\": \"W/\\\"14003ed8-b1ec-4c7c-8bd3-ea0df3563bdc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e145e570-ef88-4ab3-a0d0-3c0fdfa603ad\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104/subnets/a2aVM104\",\r\n \"etag\": \"W/\\\"14003ed8-b1ec-4c7c-8bd3-ea0df3563bdc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104\",\r\n \"etag\": \"W/\\\"c509f900-5591-4d08-9fa5-7256411f0587\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3c665e60-20d4-4674-b2b8-2d19619cfee4\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"192.168.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104/subnets/a2aVM104\",\r\n \"etag\": \"W/\\\"c509f900-5591-4d08-9fa5-7256411f0587\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"192.168.1.0/24\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false\r\n }\r\n}", "StatusCode": 201 }, { "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104?api-version=2017-10-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrU2VjdXJpdHlHcm91cHMvYTJhVk0xMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"a2aVM10422\"\r\n }\r\n ]\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"securityRules\": [\r\n {\r\n \"properties\": {\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\"\r\n },\r\n \"name\": \"a2aVM10422\"\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d7560861-e048-43cd-9e17-1b748b607a08" + "bb41f37b-d7e0-443f-a389-88d44a62e095" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1448,16 +1475,19 @@ "3" ], "x-ms-request-id": [ - "d24a788f-678f-4f0a-8fd1-eff432db9b70" + "24b0afa6-2c17-4a61-8e47-48651f12007b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/d24a788f-678f-4f0a-8fd1-eff432db9b70?api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/24b0afa6-2c17-4a61-8e47-48651f12007b?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "e81bca80-d51d-4ffb-a62e-4629c6ad2973" + "66b700cd-3321-4914-bcc3-c5ba6f9cf469" + ], + "Azure-AsyncNotification": [ + "Enabled" ], "x-ms-arm-service-request-id": [ - "88314522-6ffc-4c0f-9e06-6914c14af473" + "4d0620dc-4ce8-4f0c-855b-456832d77c18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1467,16 +1497,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1183" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234823Z:e81bca80-d51d-4ffb-a62e-4629c6ad2973" + "CENTRALUSEUAP:20210418T163602Z:66b700cd-3321-4914-bcc3-c5ba6f9cf469" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:22 GMT" + "Sun, 18 Apr 2021 16:36:01 GMT" ], "Content-Length": [ "7380" @@ -1488,26 +1518,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104\",\r\n \"etag\": \"W/\\\"f840f604-d2fc-40e0-9fa2-d6cd7995decb\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8ee63e8f-4f85-4080-aaae-bf57bec34205\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM10422\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/securityRules/a2aVM10422\",\r\n \"etag\": \"W/\\\"f840f604-d2fc-40e0-9fa2-d6cd7995decb\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"f840f604-d2fc-40e0-9fa2-d6cd7995decb\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"f840f604-d2fc-40e0-9fa2-d6cd7995decb\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"f840f604-d2fc-40e0-9fa2-d6cd7995decb\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"f840f604-d2fc-40e0-9fa2-d6cd7995decb\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"f840f604-d2fc-40e0-9fa2-d6cd7995decb\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"f840f604-d2fc-40e0-9fa2-d6cd7995decb\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104\",\r\n \"etag\": \"W/\\\"443ab3e4-b786-4109-afa6-ee6cec7c1f98\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"df3d714e-9389-42fb-8ec6-45123ac98ef6\",\r\n \"securityRules\": [\r\n {\r\n \"name\": \"a2aVM10422\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/securityRules/a2aVM10422\",\r\n \"etag\": \"W/\\\"443ab3e4-b786-4109-afa6-ee6cec7c1f98\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/securityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"protocol\": \"Tcp\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"22\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 1000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ],\r\n \"defaultSecurityRules\": [\r\n {\r\n \"name\": \"AllowVnetInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/AllowVnetInBound\",\r\n \"etag\": \"W/\\\"443ab3e4-b786-4109-afa6-ee6cec7c1f98\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowAzureLoadBalancerInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/AllowAzureLoadBalancerInBound\",\r\n \"etag\": \"W/\\\"443ab3e4-b786-4109-afa6-ee6cec7c1f98\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow inbound traffic from azure load balancer\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"AzureLoadBalancer\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllInBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/DenyAllInBound\",\r\n \"etag\": \"W/\\\"443ab3e4-b786-4109-afa6-ee6cec7c1f98\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all inbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Inbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowVnetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/AllowVnetOutBound\",\r\n \"etag\": \"W/\\\"443ab3e4-b786-4109-afa6-ee6cec7c1f98\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to all VMs in VNET\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"VirtualNetwork\",\r\n \"destinationAddressPrefix\": \"VirtualNetwork\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65000,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"AllowInternetOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/AllowInternetOutBound\",\r\n \"etag\": \"W/\\\"443ab3e4-b786-4109-afa6-ee6cec7c1f98\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Allow outbound traffic from all VMs to Internet\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"Internet\",\r\n \"access\": \"Allow\",\r\n \"priority\": 65001,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n },\r\n {\r\n \"name\": \"DenyAllOutBound\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104/defaultSecurityRules/DenyAllOutBound\",\r\n \"etag\": \"W/\\\"443ab3e4-b786-4109-afa6-ee6cec7c1f98\\\"\",\r\n \"type\": \"Microsoft.Network/networkSecurityGroups/defaultSecurityRules\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"description\": \"Deny all outbound traffic\",\r\n \"protocol\": \"*\",\r\n \"sourcePortRange\": \"*\",\r\n \"destinationPortRange\": \"*\",\r\n \"sourceAddressPrefix\": \"*\",\r\n \"destinationAddressPrefix\": \"*\",\r\n \"access\": \"Deny\",\r\n \"priority\": 65500,\r\n \"direction\": \"Outbound\",\r\n \"sourcePortRanges\": [],\r\n \"destinationPortRanges\": [],\r\n \"sourceAddressPrefixes\": [],\r\n \"destinationAddressPrefixes\": []\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/publicIPAddresses/a2aVM104?api-version=2017-10-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9wdWJsaWNJUEFkZHJlc3Nlcy9hMmFWTTEwND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain104\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain104\"\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bfb68736-b9ce-4a99-9522-a6a2b17a7cad" + "bb41f37b-d7e0-443f-a389-88d44a62e095" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1527,16 +1557,19 @@ "1" ], "x-ms-request-id": [ - "ad52e049-4481-4923-9cf5-06fb83536510" + "b114174f-1cfe-420f-947c-6b77567a328d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/ad52e049-4481-4923-9cf5-06fb83536510?api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/b114174f-1cfe-420f-947c-6b77567a328d?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "7385c1c9-fb73-44e8-bdac-a2a94024d468" + "435f0fff-ccda-48cd-b120-f4e026a76bec" + ], + "Azure-AsyncNotification": [ + "Enabled" ], "x-ms-arm-service-request-id": [ - "ff7fb959-5395-48b8-8f1f-0f447fa4ba95" + "d48f62b3-8aa2-470d-9913-d4269d5acb23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1546,16 +1579,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234823Z:7385c1c9-fb73-44e8-bdac-a2a94024d468" + "CENTRALUSEUAP:20210418T163602Z:435f0fff-ccda-48cd-b120-f4e026a76bec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:22 GMT" + "Sun, 18 Apr 2021 16:36:02 GMT" ], "Content-Length": [ "718" @@ -1567,20 +1600,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/publicIPAddresses/a2aVM104\",\r\n \"etag\": \"W/\\\"18f68337-0694-40c1-9d09-bf5ffcc59050\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8d93e89e-894a-4495-95d4-e68e95eab070\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain104\",\r\n \"fqdn\": \"domain104.westus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/publicIPAddresses/a2aVM104\",\r\n \"etag\": \"W/\\\"7865e0ca-7444-413c-97b3-7ad063c232fd\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"7b0542cf-c573-4c7f-acc4-c6f9e1eabe21\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"domain104\",\r\n \"fqdn\": \"domain104.eastus.cloudapp.azure.com\"\r\n },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/ad52e049-4481-4923-9cf5-06fb83536510?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvYWQ1MmUwNDktNDQ4MS00OTIzLTljZjUtMDZmYjgzNTM2NTEwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/b114174f-1cfe-420f-947c-6b77567a328d?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvYjExNDE3NGYtMWNmZS00MjBmLTk0N2MtNmI3NzU2N2EzMjhkP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bb41f37b-d7e0-443f-a389-88d44a62e095" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1591,13 +1627,13 @@ "no-cache" ], "x-ms-request-id": [ - "e24bd6bc-a197-4029-b83d-1d9642272899" + "254ea772-8232-4865-ba1e-6d96e6d0a42a" ], "x-ms-correlation-request-id": [ - "a4345a35-6311-4fbe-b547-7e2888e076bd" + "f87c5769-45b6-44ef-a8a5-2a27bd676968" ], "x-ms-arm-service-request-id": [ - "e60e123f-838e-4408-badf-f24d269cc240" + "3b7f1584-9b16-46f0-bc64-2481d2c88c86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1610,13 +1646,13 @@ "11993" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234825Z:a4345a35-6311-4fbe-b547-7e2888e076bd" + "CENTRALUSEUAP:20210418T163603Z:f87c5769-45b6-44ef-a8a5-2a27bd676968" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:24 GMT" + "Sun, 18 Apr 2021 16:36:03 GMT" ], "Content-Length": [ "29" @@ -1632,144 +1668,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/77de88da-a584-47ad-88f6-b197c741f890?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzdkZTg4ZGEtYTU4NC00N2FkLTg4ZjYtYjE5N2M3NDFmODkwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "f1cdbba8-79d1-44c5-8fdf-c023a34951f7" - ], - "x-ms-correlation-request-id": [ - "747773d9-ddac-41ed-b02f-a3371c657045" - ], - "x-ms-arm-service-request-id": [ - "c4824e1a-4f67-441c-85cd-c39a372c7d2a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234826Z:747773d9-ddac-41ed-b02f-a3371c657045" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 18 Jan 2020 23:48:25 GMT" - ], - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/77de88da-a584-47ad-88f6-b197c741f890?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzdkZTg4ZGEtYTU4NC00N2FkLTg4ZjYtYjE5N2M3NDFmODkwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/5f9709e3-d81b-43f3-b446-51bdc81bacb2?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvNWY5NzA5ZTMtZDgxYi00M2YzLWI0NDYtNTFiZGM4MWJhY2IyP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "10dacfaa-941a-42cf-916a-c702f9114513" - ], - "x-ms-correlation-request-id": [ - "8c303854-79ea-44ec-9f01-dce58613e813" - ], - "x-ms-arm-service-request-id": [ - "f70078bb-bf89-4bd8-89c1-415765262f93" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234836Z:8c303854-79ea-44ec-9f01-dce58613e813" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 18 Jan 2020 23:48:36 GMT" - ], - "Content-Length": [ - "30" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "x-ms-client-request-id": [ + "bb41f37b-d7e0-443f-a389-88d44a62e095" ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/77de88da-a584-47ad-88f6-b197c741f890?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzdkZTg4ZGEtYTU4NC00N2FkLTg4ZjYtYjE5N2M3NDFmODkwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1780,13 +1691,13 @@ "no-cache" ], "x-ms-request-id": [ - "44bfe442-f4b0-47ad-ba53-23fe72881870" + "dbd6fbed-6cad-4dbd-bae6-c8aeb78a760b" ], "x-ms-correlation-request-id": [ - "832e8690-c56c-4770-b4c2-a67905a430ca" + "0a6c2ec1-500a-48df-98bc-f89ee35debb1" ], "x-ms-arm-service-request-id": [ - "f971eff0-e182-4f58-9121-ea0fd1b6f2d5" + "f8019706-4859-4632-9c05-9272b05525d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1796,16 +1707,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11991" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234846Z:832e8690-c56c-4770-b4c2-a67905a430ca" + "CENTRALUSEUAP:20210418T163605Z:0a6c2ec1-500a-48df-98bc-f89ee35debb1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:46 GMT" + "Sun, 18 Apr 2021 16:36:05 GMT" ], "Content-Length": [ "29" @@ -1821,16 +1732,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/d24a788f-678f-4f0a-8fd1-eff432db9b70?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZDI0YTc4OGYtNjc4Zi00ZjBhLThmZDEtZWZmNDMyZGI5YjcwP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/24b0afa6-2c17-4a61-8e47-48651f12007b?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvMjRiMGFmYTYtMmMxNy00YTYxLThlNDctNDg2NTFmMTIwMDdiP2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bb41f37b-d7e0-443f-a389-88d44a62e095" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -1841,13 +1755,13 @@ "no-cache" ], "x-ms-request-id": [ - "424b55f9-a2f1-476d-8930-288e7932246a" + "4727d794-5097-4604-bc91-dfaf4aa6f3d2" ], "x-ms-correlation-request-id": [ - "87eb9f26-9f9e-4e5b-937b-eb774c41c9c0" + "9ce3c360-9987-4ad7-90ae-3bfe4f60faea" ], "x-ms-arm-service-request-id": [ - "bb81050d-270d-457e-bc86-4a4a4234065f" + "02521dd2-cdae-4089-8e09-aabe48cdf9e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1857,16 +1771,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11746" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234826Z:87eb9f26-9f9e-4e5b-937b-eb774c41c9c0" + "CENTRALUSEUAP:20210418T163605Z:9ce3c360-9987-4ad7-90ae-3bfe4f60faea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:25 GMT" + "Sun, 18 Apr 2021 16:36:04 GMT" ], "Content-Length": [ "29" @@ -1885,19 +1799,19 @@ "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkInterfaces/a2aVM104?api-version=2017-10-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9uZXR3b3JrSW50ZXJmYWNlcy9hMmFWTTEwND9hcGktdmVyc2lvbj0yMDE3LTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104/subnets/a2aVM104\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/publicIPAddresses/a2aVM104\"\r\n }\r\n },\r\n \"name\": \"a2aVM104\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104\"\r\n },\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104/subnets/a2aVM104\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/publicIPAddresses/a2aVM104\"\r\n }\r\n },\r\n \"name\": \"a2aVM104\"\r\n }\r\n ],\r\n \"enableAcceleratedNetworking\": false\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6b0f029c-56f9-4fdf-9abd-0ff4ba90d5cf" + "bb41f37b-d7e0-443f-a389-88d44a62e095" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Network.Version2017.10.01.NetworkManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1914,16 +1828,19 @@ "no-cache" ], "x-ms-request-id": [ - "0426c323-f087-4309-aa21-d387ffb67e5d" + "0243bbc4-0b13-465f-877a-592a62c7b805" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/westus/operations/0426c323-f087-4309-aa21-d387ffb67e5d?api-version=2017-10-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Network/locations/eastus/operations/0243bbc4-0b13-465f-877a-592a62c7b805?api-version=2017-10-01" ], "x-ms-correlation-request-id": [ - "8cacb8f3-f218-41d1-ab29-ddfece9311d7" + "9d579a68-2210-4718-81bd-87443c61896f" + ], + "Azure-AsyncNotification": [ + "Enabled" ], "x-ms-arm-service-request-id": [ - "42912f6b-8f12-4c35-b132-f4b90796a470" + "ef8577e8-0dc4-4c59-9c3e-14ced0590bbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1933,16 +1850,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1182" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234851Z:8cacb8f3-f218-41d1-ab29-ddfece9311d7" + "CENTRALUSEUAP:20210418T163606Z:9d579a68-2210-4718-81bd-87443c61896f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:50 GMT" + "Sun, 18 Apr 2021 16:36:06 GMT" ], "Content-Length": [ "1913" @@ -1954,26 +1871,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkInterfaces/a2aVM104\",\r\n \"etag\": \"W/\\\"ccbc35dd-b7b9-4010-90f7-1237bd5a7cdb\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"60ca3bfb-7fc2-4d09-bac4-5d43b6d19643\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkInterfaces/a2aVM104/ipConfigurations/a2aVM104\",\r\n \"etag\": \"W/\\\"ccbc35dd-b7b9-4010-90f7-1237bd5a7cdb\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/publicIPAddresses/a2aVM104\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104/subnets/a2aVM104\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"odsulymi34zuvigqhqh35jqdvf.dx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkInterfaces/a2aVM104\",\r\n \"etag\": \"W/\\\"a6530674-c092-4815-9567-1e38da4533c7\\\"\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e0cde8d1-b0a6-46e9-a8c6-b95cd05edac4\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkInterfaces/a2aVM104/ipConfigurations/a2aVM104\",\r\n \"etag\": \"W/\\\"a6530674-c092-4815-9567-1e38da4533c7\\\"\",\r\n \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"192.168.1.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/publicIPAddresses/a2aVM104\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104/subnets/a2aVM104\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"mbpgmpgueb0enmvyfumwdhh42e.bx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkSecurityGroups/a2aVM104\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/virtualMachines/a2aVM104?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDQ/YXBpLXZlcnNpb249MjAxOS0wNy0wMQ==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/virtualMachines/a2aVM104?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvYTJhVk0xMDQ/YXBpLXZlcnNpb249MjAyMC0xMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM104\",\r\n \"adminUsername\": \"adminUser\",\r\n \"adminPassword\": \"System.Security.SecureString\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkInterfaces/a2aVM104\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM104\",\r\n \"adminUsername\": \"adminUser\",\r\n \"adminPassword\": \"System.Security.SecureString\",\r\n \"linuxConfiguration\": {}\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkInterfaces/a2aVM104\"\r\n }\r\n ]\r\n }\r\n },\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5d9d28cd-4285-4de2-bee3-9b722f37c287" + "bb41f37b-d7e0-443f-a389-88d44a62e095" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1993,7 +1910,7 @@ "10" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/operations/224a84d4-659e-4ece-abd8-43e273e536a4?api-version=2019-07-01" + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/9667f86b-c7e2-4392-b0d8-18066ce82260?api-version=2020-12-01" ], "Azure-AsyncNotification": [ "Enabled" @@ -2005,29 +1922,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "224a84d4-659e-4ece-abd8-43e273e536a4" + "9667f86b-c7e2-4392-b0d8-18066ce82260" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "a05893de-820c-4293-8223-8b468d15c685" + "f800477f-eca6-4631-b8ff-af60ebb72760" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234858Z:a05893de-820c-4293-8223-8b468d15c685" + "CENTRALUSEUAP:20210418T163611Z:f800477f-eca6-4631-b8ff-af60ebb72760" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:48:58 GMT" + "Sun, 18 Apr 2021 16:36:11 GMT" ], "Content-Length": [ - "1429" + "1644" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2036,20 +1953,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/virtualMachines/a2aVM104\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"vmId\": \"fd81cd34-6417-4ba2-8c5f-f087c6939629\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM104\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkInterfaces/a2aVM104\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aVM104\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/virtualMachines/a2aVM104\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": \"true\"\r\n },\r\n \"properties\": {\r\n \"vmId\": \"9a9252ed-82ba-4d85-adba-5f4c26b97d02\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_D2s_v3\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"RedHat\",\r\n \"offer\": \"RHEL\",\r\n \"sku\": \"7-RAW\",\r\n \"version\": \"latest\",\r\n \"exactVersion\": \"7.7.2019090418\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Linux\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 32\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"a2aVM104\",\r\n \"adminUsername\": \"adminUser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false,\r\n \"provisionVMAgent\": true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"ImageDefault\"\r\n }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/networkInterfaces/a2aVM104\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/operations/224a84d4-659e-4ece-abd8-43e273e536a4?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjI0YTg0ZDQtNjU5ZS00ZWNlLWFiZDgtNDNlMjczZTUzNmE0P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/9667f86b-c7e2-4392-b0d8-18066ce82260?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTY2N2Y4NmItYzdlMi00MzkyLWIwZDgtMTgwNjZjZTgyMjYwP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bb41f37b-d7e0-443f-a389-88d44a62e095" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2060,7 +1980,7 @@ "no-cache" ], "Retry-After": [ - "30" + "35" ], "x-ms-ratelimit-remaining-resource": [ "Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999" @@ -2069,29 +1989,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "59e6c526-73e4-4c83-b4ce-840010faedbf" + "0c896da0-0f77-48c1-8e1b-5ca5b4d0f849" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11856" ], "x-ms-correlation-request-id": [ - "28b722a7-2ccd-4758-8252-8cdb1edf377e" + "8c2291dc-243e-47f0-a918-9499d38ccda8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234909Z:28b722a7-2ccd-4758-8252-8cdb1edf377e" + "CENTRALUSEUAP:20210418T163621Z:8c2291dc-243e-47f0-a918-9499d38ccda8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:49:08 GMT" + "Sun, 18 Apr 2021 16:36:21 GMT" ], "Content-Length": [ - "132" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2100,20 +2020,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-01-19T05:18:57.18431+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"224a84d4-659e-4ece-abd8-43e273e536a4\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-04-18T22:06:09.0592161+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9667f86b-c7e2-4392-b0d8-18066ce82260\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/operations/224a84d4-659e-4ece-abd8-43e273e536a4?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjI0YTg0ZDQtNjU5ZS00ZWNlLWFiZDgtNDNlMjczZTUzNmE0P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/9667f86b-c7e2-4392-b0d8-18066ce82260?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTY2N2Y4NmItYzdlMi00MzkyLWIwZDgtMTgwNjZjZTgyMjYwP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bb41f37b-d7e0-443f-a389-88d44a62e095" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2130,29 +2053,29 @@ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "14239c65-cb64-4bf2-b4fa-8dc6228aa7c6" + "2b2996e1-49aa-4b80-8dde-709c63e93d35" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11855" ], "x-ms-correlation-request-id": [ - "cc601ac4-9cb1-447c-9b73-5f09487affae" + "f1edd5b2-e79b-4f4d-bbe1-b3a78d559b3b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T234939Z:cc601ac4-9cb1-447c-9b73-5f09487affae" + "CENTRALUSEUAP:20210418T163656Z:f1edd5b2-e79b-4f4d-bbe1-b3a78d559b3b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:49:38 GMT" + "Sun, 18 Apr 2021 16:36:56 GMT" ], "Content-Length": [ - "132" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2161,20 +2084,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-01-19T05:18:57.18431+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"224a84d4-659e-4ece-abd8-43e273e536a4\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-04-18T22:06:09.0592161+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"9667f86b-c7e2-4392-b0d8-18066ce82260\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/operations/224a84d4-659e-4ece-abd8-43e273e536a4?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjI0YTg0ZDQtNjU5ZS00ZWNlLWFiZDgtNDNlMjczZTUzNmE0P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/eastus/operations/9667f86b-c7e2-4392-b0d8-18066ce82260?api-version=2020-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzL29wZXJhdGlvbnMvOTY2N2Y4NmItYzdlMi00MzkyLWIwZDgtMTgwNjZjZTgyMjYwP2FwaS12ZXJzaW9uPTIwMjAtMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bb41f37b-d7e0-443f-a389-88d44a62e095" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/44.0.0.0" ] }, "ResponseHeaders": { @@ -2185,35 +2111,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997" + "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-request-id": [ - "18f9fc7b-0049-4693-9371-667a8c445216" + "cdc3e606-0165-465f-97bc-fe1c8780afc0" ], "Server": [ "Microsoft-HTTPAPI/2.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11854" ], "x-ms-correlation-request-id": [ - "6ff31b06-2425-4e74-95ec-a9ec94299b09" + "c461c8ed-4f0c-4bf0-9e44-f4bf88bd70e8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235009Z:6ff31b06-2425-4e74-95ec-a9ec94299b09" + "CENTRALUSEUAP:20210418T163732Z:c461c8ed-4f0c-4bf0-9e44-f4bf88bd70e8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:50:08 GMT" + "Sun, 18 Apr 2021 16:37:32 GMT" ], "Content-Length": [ - "132" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2222,20 +2148,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-01-19T05:18:57.18431+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"224a84d4-659e-4ece-abd8-43e273e536a4\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2021-04-18T22:06:09.0592161+05:30\",\r\n \"endTime\": \"2021-04-18T22:07:04.6218137+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"9667f86b-c7e2-4392-b0d8-18066ce82260\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/operations/224a84d4-659e-4ece-abd8-43e273e536a4?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjI0YTg0ZDQtNjU5ZS00ZWNlLWFiZDgtNDNlMjczZTUzNmE0P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Storage/storageAccounts/cache104?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvY2FjaGUxMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"EastUS\"\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "c691dbd6-8061-4622-8678-58b8399f1de0" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "98" ] }, "ResponseHeaders": { @@ -2245,58 +2183,60 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996" + "Location": [ + "https://centraluseuap.management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/fe7814da-c1e3-4122-b819-dc90beda51ad?monitor=true&api-version=2017-10-01" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "17" ], "x-ms-request-id": [ - "12e9e91d-cf44-4421-b63e-aed8b22db699" + "fe7814da-c1e3-4122-b819-dc90beda51ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1194" ], "x-ms-correlation-request-id": [ - "2f7caf62-6197-490a-b0f7-2b1c1076e40f" + "738b0060-1e66-4ba6-950d-015286a33304" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235039Z:2f7caf62-6197-490a-b0f7-2b1c1076e40f" + "CENTRALUSEUAP:20210418T163737Z:738b0060-1e66-4ba6-950d-015286a33304" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:50:39 GMT" - ], - "Content-Length": [ - "132" + "Sun, 18 Apr 2021 16:37:37 GMT" ], "Content-Type": [ - "application/json; charset=utf-8" + "text/plain; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2020-01-19T05:18:57.18431+05:30\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"224a84d4-659e-4ece-abd8-43e273e536a4\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Compute/locations/westus/operations/224a84d4-659e-4ece-abd8-43e273e536a4?api-version=2019-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvMjI0YTg0ZDQtNjU5ZS00ZWNlLWFiZDgtNDNlMjczZTUzNmE0P2FwaS12ZXJzaW9uPTIwMTktMDctMDE=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/eastus/asyncoperations/fe7814da-c1e3-4122-b819-dc90beda51ad?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy9mZTc4MTRkYS1jMWUzLTQxMjItYjgxOS1kYzkwYmVkYTUxYWQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/31.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.32" ] }, "ResponseHeaders": { @@ -2306,168 +2246,32 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-resource": [ - "Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994" + "x-ms-request-id": [ + "f11ded98-db14-409f-b132-a1657d79719e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-request-id": [ - "f43ee388-1161-40fe-9c86-cebaccd4e0a1" - ], "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11852" ], "x-ms-correlation-request-id": [ - "211b6eb0-8cc6-444d-a557-8c8760a34342" + "d9922416-a856-446d-9e7e-1109a124c48a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235110Z:211b6eb0-8cc6-444d-a557-8c8760a34342" + "CENTRALUSEUAP:20210418T163754Z:d9922416-a856-446d-9e7e-1109a124c48a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:51:10 GMT" + "Sun, 18 Apr 2021 16:37:54 GMT" ], "Content-Length": [ - "182" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2020-01-19T05:18:57.18431+05:30\",\r\n \"endTime\": \"2020-01-19T05:20:48.9813942+05:30\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"224a84d4-659e-4ece-abd8-43e273e536a4\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Storage/storageAccounts/cache104?api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL2EyYVZNMTA0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvY2FjaGUxMDQ/YXBpLXZlcnNpb249MjAxNy0xMC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "12157205-59d8-4d18-90b5-7f2607dcf6fc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.4" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "98" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/westus/asyncoperations/eef08a0d-4f2c-40b9-a794-70e7eaa5fe18?monitor=true&api-version=2017-10-01" - ], - "Retry-After": [ - "17" - ], - "x-ms-request-id": [ - "eef08a0d-4f2c-40b9-a794-70e7eaa5fe18" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-correlation-request-id": [ - "b9dde44e-89ed-45a9-aa63-0f50e06e9aff" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235118Z:b9dde44e-89ed-45a9-aa63-0f50e06e9aff" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 18 Jan 2020 23:51:17 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/providers/Microsoft.Storage/locations/westus/asyncoperations/eef08a0d-4f2c-40b9-a794-70e7eaa5fe18?monitor=true&api-version=2017-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy9lZWYwOGEwZC00ZjJjLTQwYjktYTc5NC03MGU3ZWFhNWZlMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.3.4" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d4c37f45-1f8a-4e89-9b8b-374b64a55d83" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-correlation-request-id": [ - "cfbaadf9-4900-468c-9a4e-f0f88451896d" - ], - "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235135Z:cfbaadf9-4900-468c-9a4e-f0f88451896d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Sat, 18 Jan 2020 23:51:34 GMT" - ], - "Content-Length": [ - "1027" + "1027" ], "Content-Type": [ "application/json" @@ -2476,32 +2280,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Storage/storageAccounts/cache104\",\r\n \"name\": \"cache104\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-01-18T23:51:17.5826507Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-01-18T23:51:17.5826507Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-01-18T23:51:17.520149Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cache104.blob.core.windows.net/\",\r\n \"queue\": \"https://cache104.queue.core.windows.net/\",\r\n \"table\": \"https://cache104.table.core.windows.net/\",\r\n \"file\": \"https://cache104.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Storage/storageAccounts/cache104\",\r\n \"name\": \"cache104\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-18T16:37:35.8267329Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-04-18T16:37:35.8267329Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-04-18T16:37:35.701741Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://cache104.blob.core.windows.net/\",\r\n \"queue\": \"https://cache104.queue.core.windows.net/\",\r\n \"table\": \"https://cache104.table.core.windows.net/\",\r\n \"file\": \"https://cache104.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/A2APowershellTestRg104?api-version=2016-09-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlZ3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0f147297-ce4c-4bed-9229-4ea32e808405" + "bb01d907-cc1f-47a8-b066-63a664c99c64" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.4" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.32" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "28" + "35" ] }, "ResponseHeaders": { @@ -2512,16 +2316,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-request-id": [ - "b9bcbb16-ef3d-47d4-8017-3d91eeaf516e" + "d796b4e5-23d7-4993-bad9-10a22b3559f1" ], "x-ms-correlation-request-id": [ - "b9bcbb16-ef3d-47d4-8017-3d91eeaf516e" + "d796b4e5-23d7-4993-bad9-10a22b3559f1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235141Z:b9bcbb16-ef3d-47d4-8017-3d91eeaf516e" + "CENTRALUSEUAP:20210418T163755Z:d796b4e5-23d7-4993-bad9-10a22b3559f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2530,10 +2334,10 @@ "nosniff" ], "Date": [ - "Sat, 18 Jan 2020 23:51:41 GMT" + "Sun, 18 Apr 2021 16:37:55 GMT" ], "Content-Length": [ - "197" + "204" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2542,32 +2346,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104\",\r\n \"name\": \"A2APowershellTestRg104\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104\",\r\n \"name\": \"A2APowershellTestRg104\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104?api-version=2016-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"eastus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"WestCentralUS\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b3664705-6140-4637-81e3-3ec17ff083f1-2020-01-18 23:52:01Z-P" + "2aaa51ef-b296-484e-a161-d9c7720b0616" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "91" + "98" ] }, "ResponseHeaders": { @@ -2581,10 +2385,10 @@ "nosniff" ], "x-ms-request-id": [ - "8d2affdf-2e92-49f0-9327-d4b53158590b" + "d1a32887-d439-46c8-940b-bf66927c8a9b" ], "x-ms-client-request-id": [ - "b3664705-6140-4637-81e3-3ec17ff083f1-2020-01-18 23:52:01Z-P" + "2aaa51ef-b296-484e-a161-d9c7720b0616" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2593,19 +2397,19 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "199" + "208" ], "x-ms-correlation-request-id": [ - "8d2affdf-2e92-49f0-9327-d4b53158590b" + "d1a32887-d439-46c8-940b-bf66927c8a9b" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235213Z:8d2affdf-2e92-49f0-9327-d4b53158590b" + "CENTRALUSEUAP:20210418T163819Z:d1a32887-d439-46c8-940b-bf66927c8a9b" ], "Date": [ - "Sat, 18 Jan 2020 23:52:12 GMT" + "Sun, 18 Apr 2021 16:38:19 GMT" ], "Content-Length": [ - "356" + "478" ], "Content-Type": [ "application/json" @@ -2614,7 +2418,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"eastus\",\r\n \"name\": \"A2APowershellTest104\",\r\n \"etag\": \"W/\\\"datetime'2020-01-18T23%3A52%3A10.7683488Z'\\\"\",\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest104\",\r\n \"etag\": \"W/\\\"datetime'2021-04-18T16%3A38%3A19.3474714Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 201 }, { @@ -2624,16 +2428,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f011ab62-f54e-4ec6-b306-561497f1d105-2020-01-18 23:52:33Z-P" + "0408dbd7-e1a8-4fa8-94c7-52a86848d3d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, "ResponseHeaders": { @@ -2647,10 +2451,10 @@ "nosniff" ], "x-ms-request-id": [ - "2b11e476-2550-49b9-abd5-90b2592d09aa" + "8dac48e4-4eba-45df-9611-87cc446dadf4" ], "x-ms-client-request-id": [ - "f011ab62-f54e-4ec6-b306-561497f1d105-2020-01-18 23:52:33Z-P" + "0408dbd7-e1a8-4fa8-94c7-52a86848d3d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2659,19 +2463,19 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11989" ], "x-ms-correlation-request-id": [ - "2b11e476-2550-49b9-abd5-90b2592d09aa" + "8dac48e4-4eba-45df-9611-87cc446dadf4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235233Z:2b11e476-2550-49b9-abd5-90b2592d09aa" + "CENTRALUSEUAP:20210418T163840Z:8dac48e4-4eba-45df-9611-87cc446dadf4" ], "Date": [ - "Sat, 18 Jan 2020 23:52:33 GMT" + "Sun, 18 Apr 2021 16:38:40 GMT" ], "Content-Length": [ - "356" + "478" ], "Content-Type": [ "application/json" @@ -2680,7 +2484,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"location\": \"eastus\",\r\n \"name\": \"A2APowershellTest104\",\r\n \"etag\": \"W/\\\"datetime'2020-01-18T23%3A52%3A10.7683488Z'\\\"\",\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"location\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest104\",\r\n \"etag\": \"W/\\\"datetime'2021-04-18T16%3A38%3A19.3474714Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults\",\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n }\r\n}", "StatusCode": 200 }, { @@ -2690,7 +2494,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1568a8a1-7b63-449f-851f-666ea161c8b6-2020-01-18 23:52:33Z-Ps" + "f3786a1a-7da2-4b76-b5df-47cec3ba624a" ], "Accept-Language": [ "en-US" @@ -2699,10 +2503,10 @@ "" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, "ResponseHeaders": { @@ -2716,10 +2520,10 @@ "nosniff" ], "x-ms-request-id": [ - "ead53d1f-79bd-4104-a7e5-5b6dbafb0e8a" + "2071d985-139c-440f-9d5c-ab5ab65e8c14" ], "x-ms-client-request-id": [ - "1568a8a1-7b63-449f-851f-666ea161c8b6-2020-01-18 23:52:33Z-Ps" + "f3786a1a-7da2-4b76-b5df-47cec3ba624a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2728,16 +2532,16 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11988" ], "x-ms-correlation-request-id": [ - "ead53d1f-79bd-4104-a7e5-5b6dbafb0e8a" + "2071d985-139c-440f-9d5c-ab5ab65e8c14" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235234Z:ead53d1f-79bd-4104-a7e5-5b6dbafb0e8a" + "CENTRALUSEUAP:20210418T163840Z:2071d985-139c-440f-9d5c-ab5ab65e8c14" ], "Date": [ - "Sat, 18 Jan 2020 23:52:33 GMT" + "Sun, 18 Apr 2021 16:38:40 GMT" ], "Content-Length": [ "86" @@ -2756,10 +2560,10 @@ "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/extendedInformation/vaultExtendedInfo?api-version=2016-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9leHRlbmRlZEluZm9ybWF0aW9uL3ZhdWx0RXh0ZW5kZWRJbmZvP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"Ca+a1ZB1ULY2hNawNVDkBg==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"integrityKey\": \"caP2DaclNQye+aYo5PRE2g==\",\r\n \"algorithm\": \"None\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e985d573-8faa-4d0f-b862-ae1b306bf05d-2020-01-18 23:52:34Z-Ps" + "f3786a1a-7da2-4b76-b5df-47cec3ba624a" ], "Accept-Language": [ "en-US" @@ -2768,10 +2572,10 @@ "" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2791,10 +2595,10 @@ "nosniff" ], "x-ms-request-id": [ - "d9488281-5271-4f11-b922-249431859be7" + "52149681-a447-462b-8131-30bcd45dce01" ], "x-ms-client-request-id": [ - "e985d573-8faa-4d0f-b862-ae1b306bf05d-2020-01-18 23:52:34Z-Ps" + "f3786a1a-7da2-4b76-b5df-47cec3ba624a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2803,16 +2607,16 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1194" ], "x-ms-correlation-request-id": [ - "d9488281-5271-4f11-b922-249431859be7" + "52149681-a447-462b-8131-30bcd45dce01" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235235Z:d9488281-5271-4f11-b922-249431859be7" + "CENTRALUSEUAP:20210418T163841Z:52149681-a447-462b-8131-30bcd45dce01" ], "Date": [ - "Sat, 18 Jan 2020 23:52:34 GMT" + "Sun, 18 Apr 2021 16:38:41 GMT" ], "Content-Length": [ "412" @@ -2824,7 +2628,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"8e71399a-a830-462e-a9d2-2da7ff736f0b\",\r\n \"properties\": {\r\n \"integrityKey\": \"Ca+a1ZB1ULY2hNawNVDkBg==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"vaultExtendedInfo\",\r\n \"etag\": \"58a35099-449d-4f97-bc46-9dca4f544dbb\",\r\n \"properties\": {\r\n \"integrityKey\": \"caP2DaclNQye+aYo5PRE2g==\",\r\n \"algorithm\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104extendedInformation/vaultExtendedInfo\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/extendedInformation\"\r\n}", "StatusCode": 200 }, { @@ -2834,16 +2638,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57f44287-484f-42b0-a7ca-ed02fc5086d5" + "f3786a1a-7da2-4b76-b5df-47cec3ba624a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.2.1.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.RecoveryServicesClient/4.3.1.0" ] }, "ResponseHeaders": { @@ -2857,10 +2661,10 @@ "nosniff" ], "x-ms-request-id": [ - "cb320a12-06b7-43dd-889f-b4250d80e1eb" + "aa85943d-11a6-48c7-a911-ec81606e18f4" ], "x-ms-client-request-id": [ - "57f44287-484f-42b0-a7ca-ed02fc5086d5" + "f3786a1a-7da2-4b76-b5df-47cec3ba624a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2869,19 +2673,19 @@ "Microsoft-IIS/10.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11987" ], "x-ms-correlation-request-id": [ - "cb320a12-06b7-43dd-889f-b4250d80e1eb" + "aa85943d-11a6-48c7-a911-ec81606e18f4" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235235Z:cb320a12-06b7-43dd-889f-b4250d80e1eb" + "CENTRALUSEUAP:20210418T163841Z:aa85943d-11a6-48c7-a911-ec81606e18f4" ], "Date": [ - "Sat, 18 Jan 2020 23:52:35 GMT" + "Sun, 18 Apr 2021 16:38:41 GMT" ], "Content-Length": [ - "368" + "490" ], "Content-Type": [ "application/json" @@ -2890,29 +2694,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"name\": \"A2APowershellTest104\",\r\n \"etag\": \"W/\\\"datetime'2020-01-18T23%3A52%3A35.1956845Z'\\\"\",\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104\",\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\": \"westcentralus\",\r\n \"name\": \"A2APowershellTest104\",\r\n \"etag\": \"W/\\\"datetime'2021-04-18T16%3A38%3A41.0397606Z'\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateEndpointStateForBackup\": \"None\",\r\n \"privateEndpointStateForSiteRecovery\": \"None\"\r\n },\r\n \"id\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104\",\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/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwND9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westus\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"EastUS\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "871d96b3-c7ff-446f-aa4c-8c15b8e46fc7-2020-01-18 23:52:35Z-Ps" + "b53fbce9-397d-49d5-a3f1-ebea42e3b47b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579387955815)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992755815)\\/\",\"ClientRequestId\":\"871d96b3-c7ff-446f-aa4c-8c15b8e46fc7-2020-01-18 23:52:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EyeTgKBr7XYyMTAS+VFREXIBZSHM805LQkPBckCFsss=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760321701)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365121701)\\/\",\"ClientRequestId\":\"0e98a367-0b53-4f21-a131-556a01ddf9a3-2021-04-18 16:38:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"/pZmnKQdUOfH5ihe8/BUdWbUH4rPyVb5oKIBqMpm3tQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2929,41 +2733,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/operationresults/7186a3c6-1019-4ff0-b6be-77994c0bf551?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/operationresults/a42cf619-a719-4743-b300-b4a8acc8c2ed?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationOperationStatus/7186a3c6-1019-4ff0-b6be-77994c0bf551?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationOperationStatus/a42cf619-a719-4743-b300-b4a8acc8c2ed?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "871d96b3-c7ff-446f-aa4c-8c15b8e46fc7-2020-01-18 23:52:35Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "b53fbce9-397d-49d5-a3f1-ebea42e3b47b" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1193" ], "x-ms-correlation-request-id": [ - "12142928-4781-430e-9655-f507ff01cb56" + "ab542f50-852b-4de6-840d-98d5689c003d" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235238Z:12142928-4781-430e-9655-f507ff01cb56" + "CENTRALUSEUAP:20210418T163843Z:ab542f50-852b-4de6-840d-98d5689c003d" ], "Date": [ - "Sat, 18 Jan 2020 23:52:37 GMT" + "Sun, 18 Apr 2021 16:38:43 GMT" ], "Expires": [ "-1" @@ -2976,25 +2777,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNzE4NmEzYzYtMTAxOS00ZmYwLWI2YmUtNzc5OTRjMGJmNTUxP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvYTQyY2Y2MTktYTcxOS00NzQzLWIzMDAtYjRhOGFjYzhjMmVkP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39544806-d0ca-43ea-990b-9883fd81fd5a-2020-01-18 23:52:38Z-Ps" + "b53fbce9-397d-49d5-a3f1-ebea42e3b47b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579387958295)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992758295)\\/\",\"ClientRequestId\":\"39544806-d0ca-43ea-990b-9883fd81fd5a-2020-01-18 23:52:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"40yYjPXL3a8C1TM61XRYnnkXIl2qkon/hF/s8OYHC6c=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760324103)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365124103)\\/\",\"ClientRequestId\":\"218b2192-857a-47c9-8028-296cdaccc131-2021-04-18 16:38:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ZEhpkL0OA5YeDb7o7rByBDGqckdXsnw9AoK+Ia1pSrU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3005,38 +2806,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11850" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "39544806-d0ca-43ea-990b-9883fd81fd5a-2020-01-18 23:52:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b53fbce9-397d-49d5-a3f1-ebea42e3b47b" ], "x-ms-correlation-request-id": [ - "89727242-21ce-48cb-ab10-9125d5817664" + "feff3ab6-f365-4a71-a6ea-c7f731f631c7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235238Z:89727242-21ce-48cb-ab10-9125d5817664" + "CENTRALUSEUAP:20210418T163844Z:feff3ab6-f365-4a71-a6ea-c7f731f631c7" ], "Date": [ - "Sat, 18 Jan 2020 23:52:37 GMT" + "Sun, 18 Apr 2021 16:38:43 GMT" ], "Content-Length": [ - "1341" + "1319" ], "Content-Type": [ "application/json" @@ -3045,29 +2843,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551\",\r\n \"name\": \"7186a3c6-1019-4ff0-b6be-77994c0bf551\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"871d96b3-c7ff-446f-aa4c-8c15b8e46fc7-2020-01-18 23:52:35Z-Ps ActivityId: 12142928-4781-430e-9655-f507ff01cb56\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-18T23:52:37.9991378Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:52:37.67646Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"targetObjectName\": \"a2aPrimaryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed\",\r\n \"name\": \"a42cf619-a719-4743-b300-b4a8acc8c2ed\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b53fbce9-397d-49d5-a3f1-ebea42e3b47b ActivityId: ab542f50-852b-4de6-840d-98d5689c003d\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T16:38:43.7421544Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:38:43.4924962Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"targetObjectName\": \"a2aPrimaryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNzE4NmEzYzYtMTAxOS00ZmYwLWI2YmUtNzc5OTRjMGJmNTUxP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvYTQyY2Y2MTktYTcxOS00NzQzLWIzMDAtYjRhOGFjYzhjMmVkP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3fb5eec8-d696-4041-9486-57c14715fbd4-2020-01-18 23:52:38Z-Ps" + "0305592f-9b25-4939-829d-bf39c00767a2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579387958734)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992758734)\\/\",\"ClientRequestId\":\"3fb5eec8-d696-4041-9486-57c14715fbd4-2020-01-18 23:52:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"U3N569i5Kxy2nrKn3UAH2J7BwoM/FNC9xoMQ/IAJ8Z0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760324562)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365124562)\\/\",\"ClientRequestId\":\"46c21cba-a0b7-46ef-8c6b-49f80a2e7f14-2021-04-18 16:38:44Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ih2KrlWwN5KPLM7hhmMgpzJEiDUfvQelnzaLIEmzSug=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3078,38 +2876,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11849" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3fb5eec8-d696-4041-9486-57c14715fbd4-2020-01-18 23:52:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0305592f-9b25-4939-829d-bf39c00767a2" ], "x-ms-correlation-request-id": [ - "522dfa4a-3eca-4d77-8ab4-2172239278a2" + "d91ed99e-eaf2-4be7-8999-428e259b3c42" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235239Z:522dfa4a-3eca-4d77-8ab4-2172239278a2" + "CENTRALUSEUAP:20210418T163845Z:d91ed99e-eaf2-4be7-8999-428e259b3c42" ], "Date": [ - "Sat, 18 Jan 2020 23:52:39 GMT" + "Sun, 18 Apr 2021 16:38:44 GMT" ], "Content-Length": [ - "1341" + "1319" ], "Content-Type": [ "application/json" @@ -3118,29 +2913,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551\",\r\n \"name\": \"7186a3c6-1019-4ff0-b6be-77994c0bf551\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"871d96b3-c7ff-446f-aa4c-8c15b8e46fc7-2020-01-18 23:52:35Z-Ps ActivityId: 12142928-4781-430e-9655-f507ff01cb56\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-18T23:52:37.9991378Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:52:37.67646Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"targetObjectName\": \"a2aPrimaryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed\",\r\n \"name\": \"a42cf619-a719-4743-b300-b4a8acc8c2ed\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b53fbce9-397d-49d5-a3f1-ebea42e3b47b ActivityId: ab542f50-852b-4de6-840d-98d5689c003d\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T16:38:43.7421544Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:38:43.4924962Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"targetObjectName\": \"a2aPrimaryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNzE4NmEzYzYtMTAxOS00ZmYwLWI2YmUtNzc5OTRjMGJmNTUxP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvYTQyY2Y2MTktYTcxOS00NzQzLWIzMDAtYjRhOGFjYzhjMmVkP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1025acd7-987b-4299-84b0-b2deeb557d2d-2020-01-18 23:52:59Z-Ps" + "d279a8b7-c78e-468e-bfad-d4d16d8df403" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579387979223)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992779223)\\/\",\"ClientRequestId\":\"1025acd7-987b-4299-84b0-b2deeb557d2d-2020-01-18 23:52:59Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"G2FTSZNZbh4+iJwXP6bi/gtxLGCM1K2DmX9sjgXRTNA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760345926)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365145926)\\/\",\"ClientRequestId\":\"f46d22dd-5388-4e45-9aab-01af157f277b-2021-04-18 16:39:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yEWaoanp1T6MOUJtr2S72Z9gYg45crd30p/p12omwpw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3151,38 +2946,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11848" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1025acd7-987b-4299-84b0-b2deeb557d2d-2020-01-18 23:52:59Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "d279a8b7-c78e-468e-bfad-d4d16d8df403" ], "x-ms-correlation-request-id": [ - "530e7d16-9df8-44f9-b151-f73585626558" + "a3d6c083-3482-4876-98ca-ec91faa9582a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235259Z:530e7d16-9df8-44f9-b151-f73585626558" + "CENTRALUSEUAP:20210418T163906Z:a3d6c083-3482-4876-98ca-ec91faa9582a" ], "Date": [ - "Sat, 18 Jan 2020 23:52:59 GMT" + "Sun, 18 Apr 2021 16:39:06 GMT" ], "Content-Length": [ - "1341" + "1319" ], "Content-Type": [ "application/json" @@ -3191,29 +2983,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551\",\r\n \"name\": \"7186a3c6-1019-4ff0-b6be-77994c0bf551\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"871d96b3-c7ff-446f-aa4c-8c15b8e46fc7-2020-01-18 23:52:35Z-Ps ActivityId: 12142928-4781-430e-9655-f507ff01cb56\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-18T23:52:37.9991378Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:52:37.67646Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"targetObjectName\": \"a2aPrimaryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed\",\r\n \"name\": \"a42cf619-a719-4743-b300-b4a8acc8c2ed\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b53fbce9-397d-49d5-a3f1-ebea42e3b47b ActivityId: ab542f50-852b-4de6-840d-98d5689c003d\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T16:38:43.7421544Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:38:43.4924962Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"targetObjectName\": \"a2aPrimaryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNzE4NmEzYzYtMTAxOS00ZmYwLWI2YmUtNzc5OTRjMGJmNTUxP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvYTQyY2Y2MTktYTcxOS00NzQzLWIzMDAtYjRhOGFjYzhjMmVkP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f7786d6-4c3b-4d2b-87cd-6993b0d6eb8f-2020-01-18 23:53:19Z-Ps" + "51a67a93-0ece-4e60-abe4-515e51b06142" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579387999706)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992799706)\\/\",\"ClientRequestId\":\"0f7786d6-4c3b-4d2b-87cd-6993b0d6eb8f-2020-01-18 23:53:19Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5mIUl5zsTo1ufTZDLUyRn0kRaEqJJ0mXRVUXqiHscCI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760366351)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365166351)\\/\",\"ClientRequestId\":\"afd28b4f-acd8-4437-96c3-eecd2ff90385-2021-04-18 16:39:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0IgnIFZ338WFrsjsrEpOvLN20QGiF0TtIOTjiPu7Vgs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3224,38 +3016,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11847" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "0f7786d6-4c3b-4d2b-87cd-6993b0d6eb8f-2020-01-18 23:53:19Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "51a67a93-0ece-4e60-abe4-515e51b06142" ], "x-ms-correlation-request-id": [ - "f912c490-ed08-4638-9e0b-0f7b5db39a41" + "5b95e0bf-1ef4-4b8a-90fc-9f95bea999cc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235320Z:f912c490-ed08-4638-9e0b-0f7b5db39a41" + "CENTRALUSEUAP:20210418T163926Z:5b95e0bf-1ef4-4b8a-90fc-9f95bea999cc" ], "Date": [ - "Sat, 18 Jan 2020 23:53:19 GMT" + "Sun, 18 Apr 2021 16:39:25 GMT" ], "Content-Length": [ - "1341" + "1319" ], "Content-Type": [ "application/json" @@ -3264,29 +3053,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551\",\r\n \"name\": \"7186a3c6-1019-4ff0-b6be-77994c0bf551\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"871d96b3-c7ff-446f-aa4c-8c15b8e46fc7-2020-01-18 23:52:35Z-Ps ActivityId: 12142928-4781-430e-9655-f507ff01cb56\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-18T23:52:37.9991378Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:52:37.67646Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"targetObjectName\": \"a2aPrimaryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed\",\r\n \"name\": \"a42cf619-a719-4743-b300-b4a8acc8c2ed\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b53fbce9-397d-49d5-a3f1-ebea42e3b47b ActivityId: ab542f50-852b-4de6-840d-98d5689c003d\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T16:38:43.7421544Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:38:43.4924962Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"targetObjectName\": \"a2aPrimaryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNzE4NmEzYzYtMTAxOS00ZmYwLWI2YmUtNzc5OTRjMGJmNTUxP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvYTQyY2Y2MTktYTcxOS00NzQzLWIzMDAtYjRhOGFjYzhjMmVkP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fbfde9e2-a79f-47a8-874c-c0b372861c74-2020-01-18 23:53:40Z-Ps" + "4c0c7359-52a2-4f2b-ba43-880df837c5a6" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388020281)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992820281)\\/\",\"ClientRequestId\":\"fbfde9e2-a79f-47a8-874c-c0b372861c74-2020-01-18 23:53:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"0waIQ/GZbqRYTdZE1BF7KQ6NFllGgiQ18/CmuBKlIb8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760386751)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365186751)\\/\",\"ClientRequestId\":\"1631f855-1c1e-4ff5-939d-bd978c61c527-2021-04-18 16:39:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"M/lTGIh7A8RVZlnmXxY9h/3Ygwe9ehzG1P/XCvdWk3w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3296,39 +3085,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11846" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "fbfde9e2-a79f-47a8-874c-c0b372861c74-2020-01-18 23:53:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "4c0c7359-52a2-4f2b-ba43-880df837c5a6" ], "x-ms-correlation-request-id": [ - "937fc019-05ae-4254-b2f6-f2143a07cd03" + "ea2df88f-cf33-4362-82d8-fd68c281dfab" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235340Z:937fc019-05ae-4254-b2f6-f2143a07cd03" + "CENTRALUSEUAP:20210418T163946Z:ea2df88f-cf33-4362-82d8-fd68c281dfab" ], "Date": [ - "Sat, 18 Jan 2020 23:53:39 GMT" + "Sun, 18 Apr 2021 16:39:46 GMT" ], "Content-Length": [ - "1341" + "1319" ], "Content-Type": [ "application/json" @@ -3337,29 +3123,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551\",\r\n \"name\": \"7186a3c6-1019-4ff0-b6be-77994c0bf551\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"871d96b3-c7ff-446f-aa4c-8c15b8e46fc7-2020-01-18 23:52:35Z-Ps ActivityId: 12142928-4781-430e-9655-f507ff01cb56\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-18T23:52:37.9991378Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:52:37.67646Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"targetObjectName\": \"a2aPrimaryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed\",\r\n \"name\": \"a42cf619-a719-4743-b300-b4a8acc8c2ed\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b53fbce9-397d-49d5-a3f1-ebea42e3b47b ActivityId: ab542f50-852b-4de6-840d-98d5689c003d\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T16:38:43.7421544Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:38:43.4924962Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"targetObjectName\": \"a2aPrimaryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNzE4NmEzYzYtMTAxOS00ZmYwLWI2YmUtNzc5OTRjMGJmNTUxP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvYTQyY2Y2MTktYTcxOS00NzQzLWIzMDAtYjRhOGFjYzhjMmVkP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c9a701c-ed81-4996-bb8f-66cb87fce6b3-2020-01-18 23:54:00Z-Ps" + "b491b2fb-9c9b-4335-8103-03b21a08a2aa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388040804)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992840804)\\/\",\"ClientRequestId\":\"1c9a701c-ed81-4996-bb8f-66cb87fce6b3-2020-01-18 23:54:00Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"qvidiPyisOKZcZj1kHgoGcau37WXnJe/CiHhgRkX8o4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760407147)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365207147)\\/\",\"ClientRequestId\":\"cd29177a-9762-4e59-bb87-1d2402ef1af8-2021-04-18 16:40:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"fTqyZ11nzwtM2lLYsL3bknYM9o/a3XbgzthjR8I4pck=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3370,38 +3156,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11860" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1c9a701c-ed81-4996-bb8f-66cb87fce6b3-2020-01-18 23:54:00Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b491b2fb-9c9b-4335-8103-03b21a08a2aa" ], "x-ms-correlation-request-id": [ - "e6f33ec2-4ea2-486d-8978-fc6fe520aec0" + "6e4675fa-5a97-4084-907d-a1c4ec8222cc" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235402Z:e6f33ec2-4ea2-486d-8978-fc6fe520aec0" + "CENTRALUSEUAP:20210418T164007Z:6e4675fa-5a97-4084-907d-a1c4ec8222cc" ], "Date": [ - "Sat, 18 Jan 2020 23:54:01 GMT" + "Sun, 18 Apr 2021 16:40:06 GMT" ], "Content-Length": [ - "1379" + "1357" ], "Content-Type": [ "application/json" @@ -3410,29 +3193,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/7186a3c6-1019-4ff0-b6be-77994c0bf551\",\r\n \"name\": \"7186a3c6-1019-4ff0-b6be-77994c0bf551\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"871d96b3-c7ff-446f-aa4c-8c15b8e46fc7-2020-01-18 23:52:35Z-Ps ActivityId: 12142928-4781-430e-9655-f507ff01cb56\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-18T23:53:42.3187991Z\",\r\n \"endTime\": \"2020-01-18T23:53:42.5375217Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:52:37.67646Z\",\r\n \"endTime\": \"2020-01-18T23:53:42Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"targetObjectName\": \"a2aPrimaryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/a42cf619-a719-4743-b300-b4a8acc8c2ed\",\r\n \"name\": \"a42cf619-a719-4743-b300-b4a8acc8c2ed\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b53fbce9-397d-49d5-a3f1-ebea42e3b47b ActivityId: ab542f50-852b-4de6-840d-98d5689c003d\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T16:39:49.5695886Z\",\r\n \"endTime\": \"2021-04-18T16:39:49.7345955Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:38:43.4924962Z\",\r\n \"endTime\": \"2021-04-18T16:39:49Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"targetObjectName\": \"a2aPrimaryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"a2aPrimaryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwND9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc1b88ae-4bd4-48cc-a4d9-cb671c785dc9-2020-01-18 23:54:02Z-Ps" + "bd821da8-d72d-4410-88c3-850b9c3601dd" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388042346)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992842346)\\/\",\"ClientRequestId\":\"bc1b88ae-4bd4-48cc-a4d9-cb671c785dc9-2020-01-18 23:54:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"o/TlSy6Zefu82vseQMm3RuTr9FyQGKCr0ONJUR9CvVc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760407623)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365207623)\\/\",\"ClientRequestId\":\"c2e21548-a912-4398-b9bd-e080082da771-2021-04-18 16:40:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"zhRIKVLZ0sQK5eJ1cFVsgaPxDuxdatTVRLYnZK5mnpc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3443,38 +3226,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11859" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "bc1b88ae-4bd4-48cc-a4d9-cb671c785dc9-2020-01-18 23:54:02Z-Ps 1/18/2020 11:54:02 PM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "bd821da8-d72d-4410-88c3-850b9c3601dd 4/18/2021 4:40:07 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "bc1b88ae-4bd4-48cc-a4d9-cb671c785dc9-2020-01-18 23:54:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "bd821da8-d72d-4410-88c3-850b9c3601dd" ], "x-ms-correlation-request-id": [ - "4ad7cb88-195c-4187-82a1-6b5176b808e9" + "cebdf20f-4f90-4a41-b0b1-46840b038851" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235403Z:4ad7cb88-195c-4187-82a1-6b5176b808e9" + "CENTRALUSEUAP:20210418T164007Z:cebdf20f-4f90-4a41-b0b1-46840b038851" ], "Date": [ - "Sat, 18 Jan 2020 23:54:02 GMT" + "Sun, 18 Apr 2021 16:40:06 GMT" ], "Content-Length": [ - "672" + "683" ], "Content-Type": [ "application/json" @@ -3483,29 +3263,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric104\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104\",\r\n \"properties\": {\r\n \"friendlyName\": \"West US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westus\",\r\n \"containerIds\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric104\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwND9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41ba6f33-5955-4787-963b-d61293a469c7-2020-01-18 23:55:29Z-Ps" + "3eeb4cb3-08f5-4d3e-8bb2-17a2fd85345b" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388129526)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992929526)\\/\",\"ClientRequestId\":\"41ba6f33-5955-4787-963b-d61293a469c7-2020-01-18 23:55:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"v/kvExT7pRXSByaYW68bq1oJ9E9sQu3wmySH8HPYXTA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760492206)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365292206)\\/\",\"ClientRequestId\":\"d634da1f-4b69-413d-998a-230908292684-2021-04-18 16:41:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XrOkXdnI8ib3atcbDoHVlXkSGhLnRtfaHeg+bmZoVX4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3516,38 +3296,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "11851" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "41ba6f33-5955-4787-963b-d61293a469c7-2020-01-18 23:55:29Z-Ps 1/18/2020 11:55:29 PM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "3eeb4cb3-08f5-4d3e-8bb2-17a2fd85345b 4/18/2021 4:41:32 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "41ba6f33-5955-4787-963b-d61293a469c7-2020-01-18 23:55:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "3eeb4cb3-08f5-4d3e-8bb2-17a2fd85345b" ], "x-ms-correlation-request-id": [ - "e4cfe2fc-5f7c-4371-b519-c47508f1d536" + "608e5713-1404-4429-9d4d-d5ccb0eb1dea" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235529Z:e4cfe2fc-5f7c-4371-b519-c47508f1d536" + "CENTRALUSEUAP:20210418T164132Z:608e5713-1404-4429-9d4d-d5ccb0eb1dea" ], "Date": [ - "Sat, 18 Jan 2020 23:55:29 GMT" + "Sun, 18 Apr 2021 16:41:32 GMT" ], "Content-Length": [ - "672" + "683" ], "Content-Type": [ "application/json" @@ -3556,35 +3333,35 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric104\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104\",\r\n \"properties\": {\r\n \"friendlyName\": \"West US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westus\",\r\n \"containerIds\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aPrimaryFabric104\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDQ/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"WestCentralUS\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f806ae12-c75b-4a6e-96d4-e663bfe43dd0-2020-01-18 23:54:03Z-Ps" + "5e5009f9-590a-45f4-b04b-4e7c029b9190" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388043076)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992843076)\\/\",\"ClientRequestId\":\"f806ae12-c75b-4a6e-96d4-e663bfe43dd0-2020-01-18 23:54:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OetbnPNy3zH1Aph73iALNno7v4bZbHfvavEatTy5he8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760408129)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365208129)\\/\",\"ClientRequestId\":\"873d1e62-e3d6-489c-89b7-014cd4cbe0ab-2021-04-18 16:40:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2nC/cu6QaK8POgVOMC/pOK7/q/BlY/dbNrKhVhgUDIA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "119" + "126" ] }, "ResponseHeaders": { @@ -3595,41 +3372,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104/operationresults/58cca238-7617-4935-82f0-7074fef4c637?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104/operationresults/edb7ae67-e494-4e3a-af9e-bce609da80d1?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationOperationStatus/58cca238-7617-4935-82f0-7074fef4c637?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationOperationStatus/edb7ae67-e494-4e3a-af9e-bce609da80d1?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f806ae12-c75b-4a6e-96d4-e663bfe43dd0-2020-01-18 23:54:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "5e5009f9-590a-45f4-b04b-4e7c029b9190" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1192" ], "x-ms-correlation-request-id": [ - "e0c0909d-4115-4830-910e-a8c7b8942945" + "bca7e969-26d0-4e3f-a0e9-d31121f43165" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235403Z:e0c0909d-4115-4830-910e-a8c7b8942945" + "CENTRALUSEUAP:20210418T164008Z:bca7e969-26d0-4e3f-a0e9-d31121f43165" ], "Date": [ - "Sat, 18 Jan 2020 23:54:03 GMT" + "Sun, 18 Apr 2021 16:40:08 GMT" ], "Expires": [ "-1" @@ -3642,25 +3416,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNThjY2EyMzgtNzYxNy00OTM1LTgyZjAtNzA3NGZlZjRjNjM3P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvZWRiN2FlNjctZTQ5NC00ZTNhLWFmOWUtYmNlNjA5ZGE4MGQxP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5e3b7c1-2f80-4a99-918d-ad50cef2bd8b-2020-01-18 23:54:03Z-Ps" + "5e5009f9-590a-45f4-b04b-4e7c029b9190" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388043949)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992843949)\\/\",\"ClientRequestId\":\"c5e3b7c1-2f80-4a99-918d-ad50cef2bd8b-2020-01-18 23:54:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"OI1hIbOXmhtQ3KdPI39n3NYGz+GT7+4OhJY7cp2/Tf8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760408725)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365208725)\\/\",\"ClientRequestId\":\"77e2907d-bf21-4b2b-b3dd-8100ba295223-2021-04-18 16:40:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"xHYDIbkvt9w7TnrTBiDqawkcHfaoIqlLcia9GXOmJCc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3671,38 +3445,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11858" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c5e3b7c1-2f80-4a99-918d-ad50cef2bd8b-2020-01-18 23:54:03Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5e5009f9-590a-45f4-b04b-4e7c029b9190" ], "x-ms-correlation-request-id": [ - "45e0a784-ee1b-4696-81a8-db7758af6808" + "cfd057cf-d4eb-45ca-a1bf-e9f6f6536b6f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235404Z:45e0a784-ee1b-4696-81a8-db7758af6808" + "CENTRALUSEUAP:20210418T164008Z:cfd057cf-d4eb-45ca-a1bf-e9f6f6536b6f" ], "Date": [ - "Sat, 18 Jan 2020 23:54:03 GMT" + "Sun, 18 Apr 2021 16:40:08 GMT" ], "Content-Length": [ - "759" + "1321" ], "Content-Type": [ "application/json" @@ -3711,29 +3482,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637\",\r\n \"name\": \"58cca238-7617-4935-82f0-7074fef4c637\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f806ae12-c75b-4a6e-96d4-e663bfe43dd0-2020-01-18 23:54:03Z-Ps ActivityId: e0c0909d-4115-4830-910e-a8c7b8942945\",\r\n \"scenarioName\": null,\r\n \"friendlyName\": null,\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"tasks\": [],\r\n \"errors\": [],\r\n \"allowedActions\": [],\r\n \"targetObjectId\": null,\r\n \"targetObjectName\": null,\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1\",\r\n \"name\": \"edb7ae67-e494-4e3a-af9e-bce609da80d1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"5e5009f9-590a-45f4-b04b-4e7c029b9190 ActivityId: bca7e969-26d0-4e3f-a0e9-d31121f43165\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T16:40:08.8173329Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:40:08.4379282Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"targetObjectName\": \"a2aRecoveryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNThjY2EyMzgtNzYxNy00OTM1LTgyZjAtNzA3NGZlZjRjNjM3P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvZWRiN2FlNjctZTQ5NC00ZTNhLWFmOWUtYmNlNjA5ZGE4MGQxP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2e5d113-78e1-4965-b5c0-842842626fdd-2020-01-18 23:54:04Z-Ps" + "29605a4d-25de-46a2-b006-f8ba3404cbce" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388044328)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992844328)\\/\",\"ClientRequestId\":\"c2e5d113-78e1-4965-b5c0-842842626fdd-2020-01-18 23:54:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FsPg9+nQ93G2K2jRyiXJOg52UtEIKsIXtes/oQtpcb8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760409126)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365209126)\\/\",\"ClientRequestId\":\"7a7d83c0-941e-4a09-ab68-47b82c438026-2021-04-18 16:40:09Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"f8//iaHH58WrlMrP7uUelny20Xj1QuC979EvxAqUKMY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3744,38 +3515,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11857" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c2e5d113-78e1-4965-b5c0-842842626fdd-2020-01-18 23:54:04Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "29605a4d-25de-46a2-b006-f8ba3404cbce" ], "x-ms-correlation-request-id": [ - "b61bfcc3-16a8-4cd3-becf-a003c988cf68" + "4c75c5b0-2b72-46d3-afef-acadd053f47a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235404Z:b61bfcc3-16a8-4cd3-becf-a003c988cf68" + "CENTRALUSEUAP:20210418T164009Z:4c75c5b0-2b72-46d3-afef-acadd053f47a" ], "Date": [ - "Sat, 18 Jan 2020 23:54:03 GMT" + "Sun, 18 Apr 2021 16:40:08 GMT" ], "Content-Length": [ - "1345" + "1321" ], "Content-Type": [ "application/json" @@ -3784,29 +3552,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637\",\r\n \"name\": \"58cca238-7617-4935-82f0-7074fef4c637\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f806ae12-c75b-4a6e-96d4-e663bfe43dd0-2020-01-18 23:54:03Z-Ps ActivityId: e0c0909d-4115-4830-910e-a8c7b8942945\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-18T23:54:04.2509259Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:54:03.6628809Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"targetObjectName\": \"a2aRecoveryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1\",\r\n \"name\": \"edb7ae67-e494-4e3a-af9e-bce609da80d1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"5e5009f9-590a-45f4-b04b-4e7c029b9190 ActivityId: bca7e969-26d0-4e3f-a0e9-d31121f43165\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T16:40:08.8173329Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:40:08.4379282Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"targetObjectName\": \"a2aRecoveryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNThjY2EyMzgtNzYxNy00OTM1LTgyZjAtNzA3NGZlZjRjNjM3P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvZWRiN2FlNjctZTQ5NC00ZTNhLWFmOWUtYmNlNjA5ZGE4MGQxP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e639b240-0749-48bf-ab9b-52e189c3332c-2020-01-18 23:54:24Z-Ps" + "ae4102f4-4f9e-4080-a84f-1ca3f182373c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388064797)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992864797)\\/\",\"ClientRequestId\":\"e639b240-0749-48bf-ab9b-52e189c3332c-2020-01-18 23:54:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"7hZiZIhbuVDu0fexYBCdal6fXuG4OCz7BprTMfqwO9w=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760429514)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365229514)\\/\",\"ClientRequestId\":\"7a058e75-4039-4453-84e9-4fdad617d7ee-2021-04-18 16:40:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cZBmHMj0zBinKgqicEt809n+DjKJv4As4yTuHra6cDU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3817,38 +3585,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11856" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "e639b240-0749-48bf-ab9b-52e189c3332c-2020-01-18 23:54:24Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ae4102f4-4f9e-4080-a84f-1ca3f182373c" ], "x-ms-correlation-request-id": [ - "46417a78-4719-4221-bbf2-51924d9c0a05" + "e98339fb-f95c-405b-b3d7-caa09cb6a492" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235425Z:46417a78-4719-4221-bbf2-51924d9c0a05" + "CENTRALUSEUAP:20210418T164029Z:e98339fb-f95c-405b-b3d7-caa09cb6a492" ], "Date": [ - "Sat, 18 Jan 2020 23:54:24 GMT" + "Sun, 18 Apr 2021 16:40:29 GMT" ], "Content-Length": [ - "1345" + "1321" ], "Content-Type": [ "application/json" @@ -3857,29 +3622,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637\",\r\n \"name\": \"58cca238-7617-4935-82f0-7074fef4c637\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f806ae12-c75b-4a6e-96d4-e663bfe43dd0-2020-01-18 23:54:03Z-Ps ActivityId: e0c0909d-4115-4830-910e-a8c7b8942945\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-18T23:54:04.2509259Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:54:03.6628809Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"targetObjectName\": \"a2aRecoveryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1\",\r\n \"name\": \"edb7ae67-e494-4e3a-af9e-bce609da80d1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"5e5009f9-590a-45f4-b04b-4e7c029b9190 ActivityId: bca7e969-26d0-4e3f-a0e9-d31121f43165\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T16:40:08.8173329Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:40:08.4379282Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"targetObjectName\": \"a2aRecoveryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNThjY2EyMzgtNzYxNy00OTM1LTgyZjAtNzA3NGZlZjRjNjM3P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvZWRiN2FlNjctZTQ5NC00ZTNhLWFmOWUtYmNlNjA5ZGE4MGQxP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f6c92f2-a6a6-43b9-9949-704de5f4827c-2020-01-18 23:54:45Z-Ps" + "5979fcf3-23a3-41e0-95eb-32b32cf10420" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388085300)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992885300)\\/\",\"ClientRequestId\":\"1f6c92f2-a6a6-43b9-9949-704de5f4827c-2020-01-18 23:54:45Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"2jjYiAHeoVO+O5duJPYRZT1g3GClnbwt77Q2k295oPo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760449911)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365249911)\\/\",\"ClientRequestId\":\"c3486a32-4d51-4239-9146-06a6ef530080-2021-04-18 16:40:49Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"9OttVOcvNpJZkwB0yrIZll3w/5QcxmREqwBgzt2/fro=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3890,38 +3655,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11855" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1f6c92f2-a6a6-43b9-9949-704de5f4827c-2020-01-18 23:54:45Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "5979fcf3-23a3-41e0-95eb-32b32cf10420" ], "x-ms-correlation-request-id": [ - "e50b31b7-b000-4d13-96f4-7ead4eb88fd9" + "5f971f37-3f5c-4836-b7c8-68d6bb7ec630" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235445Z:e50b31b7-b000-4d13-96f4-7ead4eb88fd9" + "CENTRALUSEUAP:20210418T164050Z:5f971f37-3f5c-4836-b7c8-68d6bb7ec630" ], "Date": [ - "Sat, 18 Jan 2020 23:54:44 GMT" + "Sun, 18 Apr 2021 16:40:49 GMT" ], "Content-Length": [ - "1345" + "1321" ], "Content-Type": [ "application/json" @@ -3930,29 +3692,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637\",\r\n \"name\": \"58cca238-7617-4935-82f0-7074fef4c637\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f806ae12-c75b-4a6e-96d4-e663bfe43dd0-2020-01-18 23:54:03Z-Ps ActivityId: e0c0909d-4115-4830-910e-a8c7b8942945\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-18T23:54:04.2509259Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:54:03.6628809Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"targetObjectName\": \"a2aRecoveryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1\",\r\n \"name\": \"edb7ae67-e494-4e3a-af9e-bce609da80d1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"5e5009f9-590a-45f4-b04b-4e7c029b9190 ActivityId: bca7e969-26d0-4e3f-a0e9-d31121f43165\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T16:40:08.8173329Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:40:08.4379282Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"targetObjectName\": \"a2aRecoveryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNThjY2EyMzgtNzYxNy00OTM1LTgyZjAtNzA3NGZlZjRjNjM3P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvZWRiN2FlNjctZTQ5NC00ZTNhLWFmOWUtYmNlNjA5ZGE4MGQxP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cba7ef9c-a902-43b7-8539-fab1103ab862-2020-01-18 23:55:05Z-Ps" + "788dd5cf-242e-4b4e-87e4-489c5ded2845" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388105797)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992905797)\\/\",\"ClientRequestId\":\"cba7ef9c-a902-43b7-8539-fab1103ab862-2020-01-18 23:55:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"RfDKpQ7WBaoUolG9NUSYp3LqPY6s4eTCEH2K3Vxj/tM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760470341)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365270341)\\/\",\"ClientRequestId\":\"926a82f0-aaf1-424e-8f22-078af9b49fda-2021-04-18 16:41:10Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"MW7D31s2a3oYB9NzxO1fsgVxA+eGb0ZoOyOKC+5FpPU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -3962,39 +3724,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11854" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "cba7ef9c-a902-43b7-8539-fab1103ab862-2020-01-18 23:55:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "788dd5cf-242e-4b4e-87e4-489c5ded2845" ], "x-ms-correlation-request-id": [ - "5699566a-33b0-4224-bc1e-12cde411203b" + "bf77ffb6-09c5-443e-9ecd-4156400b04a7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235507Z:5699566a-33b0-4224-bc1e-12cde411203b" + "CENTRALUSEUAP:20210418T164110Z:bf77ffb6-09c5-443e-9ecd-4156400b04a7" ], "Date": [ - "Sat, 18 Jan 2020 23:55:06 GMT" + "Sun, 18 Apr 2021 16:41:10 GMT" ], "Content-Length": [ - "1345" + "1321" ], "Content-Type": [ "application/json" @@ -4003,29 +3762,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637\",\r\n \"name\": \"58cca238-7617-4935-82f0-7074fef4c637\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f806ae12-c75b-4a6e-96d4-e663bfe43dd0-2020-01-18 23:54:03Z-Ps ActivityId: e0c0909d-4115-4830-910e-a8c7b8942945\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-18T23:54:04.2509259Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:54:03.6628809Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"targetObjectName\": \"a2aRecoveryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1\",\r\n \"name\": \"edb7ae67-e494-4e3a-af9e-bce609da80d1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"5e5009f9-590a-45f4-b04b-4e7c029b9190 ActivityId: bca7e969-26d0-4e3f-a0e9-d31121f43165\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T16:40:08.8173329Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:40:08.4379282Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"targetObjectName\": \"a2aRecoveryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNThjY2EyMzgtNzYxNy00OTM1LTgyZjAtNzA3NGZlZjRjNjM3P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvZWRiN2FlNjctZTQ5NC00ZTNhLWFmOWUtYmNlNjA5ZGE4MGQxP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3ee1d9b-41c1-455d-a375-88754807b66a-2020-01-18 23:55:27Z-Ps" + "814d5bef-be52-4d44-8bca-0e3990d77620" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388127510)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992927510)\\/\",\"ClientRequestId\":\"a3ee1d9b-41c1-455d-a375-88754807b66a-2020-01-18 23:55:27Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QRf3sc0iHpsO/RjHMRGxzrnYvLbWiMprx/D4dS5g5Xo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760491394)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365291394)\\/\",\"ClientRequestId\":\"620e6d7d-f93c-4593-8500-c5aea29ac68a-2021-04-18 16:41:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"JNtPMGbu8AWPaUjCWGihZenYwfOAa8cYC5govnZ1z0Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4036,38 +3795,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11853" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "a3ee1d9b-41c1-455d-a375-88754807b66a-2020-01-18 23:55:27Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "814d5bef-be52-4d44-8bca-0e3990d77620" ], "x-ms-correlation-request-id": [ - "6842f0c5-b221-47b3-b428-73fca72ae754" + "effd8cf4-3876-4e07-bda1-d8e183c3437a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235528Z:6842f0c5-b221-47b3-b428-73fca72ae754" + "CENTRALUSEUAP:20210418T164131Z:effd8cf4-3876-4e07-bda1-d8e183c3437a" ], "Date": [ - "Sat, 18 Jan 2020 23:55:28 GMT" + "Sun, 18 Apr 2021 16:41:31 GMT" ], "Content-Length": [ - "1383" + "1359" ], "Content-Type": [ "application/json" @@ -4076,29 +3832,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/58cca238-7617-4935-82f0-7074fef4c637\",\r\n \"name\": \"58cca238-7617-4935-82f0-7074fef4c637\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"f806ae12-c75b-4a6e-96d4-e663bfe43dd0-2020-01-18 23:54:03Z-Ps ActivityId: e0c0909d-4115-4830-910e-a8c7b8942945\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2020-01-18T23:55:08.2453062Z\",\r\n \"endTime\": \"2020-01-18T23:55:08.4953006Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:54:03.6628809Z\",\r\n \"endTime\": \"2020-01-18T23:55:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"targetObjectName\": \"a2aRecoveryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/edb7ae67-e494-4e3a-af9e-bce609da80d1\",\r\n \"name\": \"edb7ae67-e494-4e3a-af9e-bce609da80d1\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"5e5009f9-590a-45f4-b04b-4e7c029b9190 ActivityId: bca7e969-26d0-4e3f-a0e9-d31121f43165\",\r\n \"scenarioName\": \"CreateSite\",\r\n \"friendlyName\": \"Create a site\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"RegisterVMMTask\",\r\n \"name\": \"RegisterVmmTask\",\r\n \"startTime\": \"2021-04-18T16:41:17.3531625Z\",\r\n \"endTime\": \"2021-04-18T16:41:17.5781632Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Registering the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:40:08.4379282Z\",\r\n \"endTime\": \"2021-04-18T16:41:17Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"targetObjectName\": \"a2aRecoveryFabric104\",\r\n \"targetInstanceType\": \"Server\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"primaryVmmName\": \"a2aRecoveryFabric104\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDQ/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f902e938-5057-40dd-b509-52e7cf13dec9-2020-01-18 23:55:29Z-Ps" + "11a62936-2e3c-4142-8fd2-bb76e580730a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388129015)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992929015)\\/\",\"ClientRequestId\":\"f902e938-5057-40dd-b509-52e7cf13dec9-2020-01-18 23:55:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"nMszQ6sXX8HMhnKX+qO9w7DYqqeqKG+bbfr5tBWHaD4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760491770)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365291770)\\/\",\"ClientRequestId\":\"f706efda-3f00-4e2a-9da7-6c83f637dd64-2021-04-18 16:41:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"lAKijY6E7Hu6h9IMA0L1c5e3kPcYgTuPcJpKeYvXhWc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4109,38 +3865,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11852" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "f902e938-5057-40dd-b509-52e7cf13dec9-2020-01-18 23:55:29Z-Ps 1/18/2020 11:55:29 PM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "11a62936-2e3c-4142-8fd2-bb76e580730a 4/18/2021 4:41:31 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "f902e938-5057-40dd-b509-52e7cf13dec9-2020-01-18 23:55:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "11a62936-2e3c-4142-8fd2-bb76e580730a" ], "x-ms-correlation-request-id": [ - "b6fd19ab-2320-4d90-b3cb-9cf11392a821" + "f7b9fa7a-8d5d-4c45-b39f-474d864ff8ba" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235529Z:b6fd19ab-2320-4d90-b3cb-9cf11392a821" + "CENTRALUSEUAP:20210418T164132Z:f7b9fa7a-8d5d-4c45-b39f-474d864ff8ba" ], "Date": [ - "Sat, 18 Jan 2020 23:55:29 GMT" + "Sun, 18 Apr 2021 16:41:31 GMT" ], "Content-Length": [ - "674" + "700" ], "Content-Type": [ "application/json" @@ -4149,29 +3902,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric104\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric104\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104\",\r\n \"properties\": {\r\n \"friendlyName\": \"West Central US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westcentralus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDQ/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "38a4600e-808e-4f28-b25e-359a3bdb6caf-2020-01-18 23:55:29Z-Ps" + "75dc07e3-6543-4683-a369-a5f646338800" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388129950)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992929950)\\/\",\"ClientRequestId\":\"38a4600e-808e-4f28-b25e-359a3bdb6caf-2020-01-18 23:55:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"pck3MevUTmZoKcPyMM231YX0tU+1Z59UOIVD90nQnGE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760492622)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365292622)\\/\",\"ClientRequestId\":\"4ad35274-b773-4587-b8e2-9d6c284c3adf-2021-04-18 16:41:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"QtsyOZA51/d94qBRB3KeNhV9LYXWj3zau0MlgzTHps4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4182,38 +3935,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" + "11850" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "38a4600e-808e-4f28-b25e-359a3bdb6caf-2020-01-18 23:55:29Z-Ps 1/18/2020 11:55:30 PM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "75dc07e3-6543-4683-a369-a5f646338800 4/18/2021 4:41:32 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "38a4600e-808e-4f28-b25e-359a3bdb6caf-2020-01-18 23:55:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "75dc07e3-6543-4683-a369-a5f646338800" ], "x-ms-correlation-request-id": [ - "ef5ae8eb-5141-458d-ad6b-a6018333b7bf" + "e558d4c8-786e-4907-9807-9e21ca18faca" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235530Z:ef5ae8eb-5141-458d-ad6b-a6018333b7bf" + "CENTRALUSEUAP:20210418T164133Z:e558d4c8-786e-4907-9807-9e21ca18faca" ], "Date": [ - "Sat, 18 Jan 2020 23:55:29 GMT" + "Sun, 18 Apr 2021 16:41:33 GMT" ], "Content-Length": [ - "674" + "700" ], "Content-Type": [ "application/json" @@ -4222,29 +3972,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric104\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104\",\r\n \"properties\": {\r\n \"friendlyName\": \"East US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"eastus\",\r\n \"containerIds\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"a2aRecoveryFabric104\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics\",\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104\",\r\n \"properties\": {\r\n \"friendlyName\": \"West Central US\",\r\n \"encryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"rolloverEncryptionDetails\": {\r\n \"kekState\": \"None\",\r\n \"kekCertThumbprint\": null\r\n },\r\n \"internalIdentifier\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"bcdrState\": \"Valid\",\r\n \"customDetails\": {\r\n \"instanceType\": \"Azure\",\r\n \"location\": \"westcentralus\",\r\n \"containerIds\": [],\r\n \"zones\": []\r\n },\r\n \"healthErrorDetails\": [],\r\n \"health\": \"Normal\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDQ/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2328b198-0780-4956-8670-7afc41f150c6-2020-01-18 23:55:30Z-Ps" + "0f309b5d-04e9-45cc-bafd-66256dbf8c0e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388130383)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992930383)\\/\",\"ClientRequestId\":\"2328b198-0780-4956-8670-7afc41f150c6-2020-01-18 23:55:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"+M2ZgeWdgmFmQnnWXs6v1fcxl2FAte6Dk66vUKlmYv0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760493754)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365293754)\\/\",\"ClientRequestId\":\"1f2dbdeb-9295-4a4c-8721-e2e5f445e13e-2021-04-18 16:41:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"q9SHo8toaA9SGXRsYKhpccsoDz3+PmL5FBZ07l6IoqA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4261,41 +4011,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104/operationresults/584bfe0e-59dc-4f71-9ca0-5c5b830d21c6?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104/operationresults/b121e5ab-70b8-4bb2-9f02-70d465b63802?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/584bfe0e-59dc-4f71-9ca0-5c5b830d21c6", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/584bfe0e-59dc-4f71-9ca0-5c5b830d21c6" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b121e5ab-70b8-4bb2-9f02-70d465b63802", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b121e5ab-70b8-4bb2-9f02-70d465b63802" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationOperationStatus/584bfe0e-59dc-4f71-9ca0-5c5b830d21c6?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationOperationStatus/b121e5ab-70b8-4bb2-9f02-70d465b63802?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2328b198-0780-4956-8670-7afc41f150c6-2020-01-18 23:55:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "0f309b5d-04e9-45cc-bafd-66256dbf8c0e" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1191" ], "x-ms-correlation-request-id": [ - "09875ce2-9429-4fbd-a5cb-f5b51b751a3a" + "0f5081e8-6ade-43b9-85cd-f9bd2777e1e8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235531Z:09875ce2-9429-4fbd-a5cb-f5b51b751a3a" + "CENTRALUSEUAP:20210418T164134Z:0f5081e8-6ade-43b9-85cd-f9bd2777e1e8" ], "Date": [ - "Sat, 18 Jan 2020 23:55:30 GMT" + "Sun, 18 Apr 2021 16:41:33 GMT" ], "Expires": [ "-1" @@ -4308,25 +4055,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/584bfe0e-59dc-4f71-9ca0-5c5b830d21c6?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNTg0YmZlMGUtNTlkYy00ZjcxLTljYTAtNWM1YjgzMGQyMWM2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b121e5ab-70b8-4bb2-9f02-70d465b63802?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvYjEyMWU1YWItNzBiOC00YmIyLTlmMDItNzBkNDY1YjYzODAyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d0e92e6b-1518-40cc-854d-9e6c8455e176-2020-01-18 23:55:31Z-Ps" + "0f309b5d-04e9-45cc-bafd-66256dbf8c0e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388131158)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992931158)\\/\",\"ClientRequestId\":\"d0e92e6b-1518-40cc-854d-9e6c8455e176-2020-01-18 23:55:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"vz/H/ezwJ/7phOIyqlgeAA0tHMTkKLBEn9ZDg/gQQcI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760494403)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365294403)\\/\",\"ClientRequestId\":\"88b75730-f04b-406f-a58d-daca977cb014-2021-04-18 16:41:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"I3eNCG558YzUPfhwpi58D6J5bgZBUodgFCsPaujIDAg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4337,38 +4084,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11849" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/584bfe0e-59dc-4f71-9ca0-5c5b830d21c6" - ], - "X-Powered-By": [ - "ASP.NET" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b121e5ab-70b8-4bb2-9f02-70d465b63802" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d0e92e6b-1518-40cc-854d-9e6c8455e176-2020-01-18 23:55:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "0f309b5d-04e9-45cc-bafd-66256dbf8c0e" ], "x-ms-correlation-request-id": [ - "ffc66222-088b-42d7-bd8e-30e26208aadd" + "735a9a50-384a-423a-a376-30806b3624da" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235531Z:ffc66222-088b-42d7-bd8e-30e26208aadd" + "CENTRALUSEUAP:20210418T164134Z:735a9a50-384a-423a-a376-30806b3624da" ], "Date": [ - "Sat, 18 Jan 2020 23:55:31 GMT" + "Sun, 18 Apr 2021 16:41:34 GMT" ], "Content-Length": [ - "1831" + "1807" ], "Content-Type": [ "application/json" @@ -4377,29 +4121,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/584bfe0e-59dc-4f71-9ca0-5c5b830d21c6\",\r\n \"name\": \"584bfe0e-59dc-4f71-9ca0-5c5b830d21c6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"2328b198-0780-4956-8670-7afc41f150c6-2020-01-18 23:55:30Z-Ps ActivityId: 09875ce2-9429-4fbd-a5cb-f5b51b751a3a\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-01-18T23:55:31.1406191Z\",\r\n \"endTime\": \"2020-01-18T23:55:31.2187542Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-01-18T23:55:31.2187542Z\",\r\n \"endTime\": \"2020-01-18T23:55:31.2187542Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:55:30.7825482Z\",\r\n \"endTime\": \"2020-01-18T23:55:31Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b502bb19-00ab-5c2c-99a9-a5c0cec4e67b\",\r\n \"targetObjectName\": \"A2APrimaryContainer104\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"primaryVmmName\": \"West US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b121e5ab-70b8-4bb2-9f02-70d465b63802\",\r\n \"name\": \"b121e5ab-70b8-4bb2-9f02-70d465b63802\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"0f309b5d-04e9-45cc-bafd-66256dbf8c0e ActivityId: 0f5081e8-6ade-43b9-85cd-f9bd2777e1e8\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-18T16:41:34.3255549Z\",\r\n \"endTime\": \"2021-04-18T16:41:34.3805525Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-18T16:41:34.3805525Z\",\r\n \"endTime\": \"2021-04-18T16:41:34.3805525Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:41:34.0519399Z\",\r\n \"endTime\": \"2021-04-18T16:41:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"46b20966-150c-5690-b74d-d859c485c331\",\r\n \"targetObjectName\": \"A2APrimaryContainer104\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/584bfe0e-59dc-4f71-9ca0-5c5b830d21c6?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNTg0YmZlMGUtNTlkYy00ZjcxLTljYTAtNWM1YjgzMGQyMWM2P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b121e5ab-70b8-4bb2-9f02-70d465b63802?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvYjEyMWU1YWItNzBiOC00YmIyLTlmMDItNzBkNDY1YjYzODAyP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7f2bdac2-057e-4073-9aeb-59e08e7db33b-2020-01-18 23:55:31Z-Ps" + "ececba33-f0b4-4454-a3a5-33a8ef1264bb" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388131565)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992931565)\\/\",\"ClientRequestId\":\"7f2bdac2-057e-4073-9aeb-59e08e7db33b-2020-01-18 23:55:31Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"TZ5y2aPCDmr//PYV3xL9Y3TUy58/1JCElAmzl8w87As=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760494789)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365294789)\\/\",\"ClientRequestId\":\"f38a729c-6612-4ae4-8ae5-7dc824fda59c-2021-04-18 16:41:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GBqFv3kMmjRjG4tmYfg1XBdzq0rWYsicYiA/kdBjVa0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4410,38 +4154,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" + "11848" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/584bfe0e-59dc-4f71-9ca0-5c5b830d21c6" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b121e5ab-70b8-4bb2-9f02-70d465b63802" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7f2bdac2-057e-4073-9aeb-59e08e7db33b-2020-01-18 23:55:31Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "ececba33-f0b4-4454-a3a5-33a8ef1264bb" ], "x-ms-correlation-request-id": [ - "cf06ea04-f3f7-4d5e-b081-327123ccc140" + "daf6f689-4f3d-4031-a730-0e702bef7c12" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235532Z:cf06ea04-f3f7-4d5e-b081-327123ccc140" + "CENTRALUSEUAP:20210418T164135Z:daf6f689-4f3d-4031-a730-0e702bef7c12" ], "Date": [ - "Sat, 18 Jan 2020 23:55:32 GMT" + "Sun, 18 Apr 2021 16:41:34 GMT" ], "Content-Length": [ - "1831" + "1807" ], "Content-Type": [ "application/json" @@ -4450,29 +4191,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/584bfe0e-59dc-4f71-9ca0-5c5b830d21c6\",\r\n \"name\": \"584bfe0e-59dc-4f71-9ca0-5c5b830d21c6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"2328b198-0780-4956-8670-7afc41f150c6-2020-01-18 23:55:30Z-Ps ActivityId: 09875ce2-9429-4fbd-a5cb-f5b51b751a3a\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-01-18T23:55:31.1406191Z\",\r\n \"endTime\": \"2020-01-18T23:55:31.2187542Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-01-18T23:55:31.2187542Z\",\r\n \"endTime\": \"2020-01-18T23:55:31.2187542Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:55:30.7825482Z\",\r\n \"endTime\": \"2020-01-18T23:55:31Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"b502bb19-00ab-5c2c-99a9-a5c0cec4e67b\",\r\n \"targetObjectName\": \"A2APrimaryContainer104\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"primaryVmmName\": \"West US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b121e5ab-70b8-4bb2-9f02-70d465b63802\",\r\n \"name\": \"b121e5ab-70b8-4bb2-9f02-70d465b63802\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"0f309b5d-04e9-45cc-bafd-66256dbf8c0e ActivityId: 0f5081e8-6ade-43b9-85cd-f9bd2777e1e8\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-18T16:41:34.3255549Z\",\r\n \"endTime\": \"2021-04-18T16:41:34.3805525Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-18T16:41:34.3805525Z\",\r\n \"endTime\": \"2021-04-18T16:41:34.3805525Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:41:34.0519399Z\",\r\n \"endTime\": \"2021-04-18T16:41:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"46b20966-150c-5690-b74d-d859c485c331\",\r\n \"targetObjectName\": \"A2APrimaryContainer104\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDQ/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDQ/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c066003f-1a70-4990-9091-87f6eaeb1ecf-2020-01-18 23:55:32Z-Ps" + "981d15a3-a5fa-4d75-a5b1-1dfdbfe0f085" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388132692)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992932692)\\/\",\"ClientRequestId\":\"c066003f-1a70-4990-9091-87f6eaeb1ecf-2020-01-18 23:55:32Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"It46meCOemWBCxoPY5jXvC5FjsdhTkAJ7O2b00hJ480=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760495203)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365295203)\\/\",\"ClientRequestId\":\"e0d62fda-15d0-4aae-936b-702b6e117773-2021-04-18 16:41:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"UmeXsO4Xb1KdlrEZ0vlf6rYdn/nshINUpHD7hI39AE4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4483,35 +4224,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" + "11847" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "c066003f-1a70-4990-9091-87f6eaeb1ecf-2020-01-18 23:55:32Z-Ps 1/18/2020 11:55:32 PM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "981d15a3-a5fa-4d75-a5b1-1dfdbfe0f085 4/18/2021 4:41:35 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "c066003f-1a70-4990-9091-87f6eaeb1ecf-2020-01-18 23:55:32Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "981d15a3-a5fa-4d75-a5b1-1dfdbfe0f085" ], "x-ms-correlation-request-id": [ - "1940e7c2-ad2d-4864-9759-69f29a91d5ff" + "95b278cc-7e09-4d27-b362-8c68d1eea101" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235533Z:1940e7c2-ad2d-4864-9759-69f29a91d5ff" + "CENTRALUSEUAP:20210418T164135Z:95b278cc-7e09-4d27-b362-8c68d1eea101" ], "Date": [ - "Sat, 18 Jan 2020 23:55:32 GMT" + "Sun, 18 Apr 2021 16:41:34 GMT" ], "Content-Length": [ "580" @@ -4523,29 +4261,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104\",\r\n \"name\": \"A2APrimaryContainer104\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"West US\",\r\n \"friendlyName\": \"A2APrimaryContainer104\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104\",\r\n \"name\": \"A2APrimaryContainer104\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"East US\",\r\n \"friendlyName\": \"A2APrimaryContainer104\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104/replicationProtectionContainerMappings?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDQvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAxOC0wNy0xMA==", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104/replicationProtectionContainerMappings?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDQvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3M/YXBpLXZlcnNpb249MjAyMS0wMi0xMA==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5413c1a9-4b74-4dd6-8087-a3a8e75ec9bb-2020-01-18 23:55:33Z-Ps" + "981d15a3-a5fa-4d75-a5b1-1dfdbfe0f085" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388133065)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992933065)\\/\",\"ClientRequestId\":\"5413c1a9-4b74-4dd6-8087-a3a8e75ec9bb-2020-01-18 23:55:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"hJzSSuVS+c7MpLRBOwi7fM8c0xc/YeLDcasw0HJSosI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760495621)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365295621)\\/\",\"ClientRequestId\":\"0af8fee9-4de6-408b-b11d-c20bf097d4f9-2021-04-18 16:41:35Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SMY04/SE+4IggQAvDW7ghFG/iX2H/VGDZ3DeKqGYLKg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4556,35 +4294,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" + "11846" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "5413c1a9-4b74-4dd6-8087-a3a8e75ec9bb-2020-01-18 23:55:33Z-Ps 1/18/2020 11:55:33 PM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "981d15a3-a5fa-4d75-a5b1-1dfdbfe0f085 4/18/2021 4:41:35 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "5413c1a9-4b74-4dd6-8087-a3a8e75ec9bb-2020-01-18 23:55:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "981d15a3-a5fa-4d75-a5b1-1dfdbfe0f085" ], "x-ms-correlation-request-id": [ - "d6d2d035-308e-4e6e-80b4-7607d2d20a4d" + "7fe77049-2bec-4e2a-8bc4-f303b07634fa" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235533Z:d6d2d035-308e-4e6e-80b4-7607d2d20a4d" + "CENTRALUSEUAP:20210418T164135Z:7fe77049-2bec-4e2a-8bc4-f303b07634fa" ], "Date": [ - "Sat, 18 Jan 2020 23:55:32 GMT" + "Sun, 18 Apr 2021 16:41:35 GMT" ], "Content-Length": [ "28" @@ -4600,25 +4335,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104/replicationProtectionContainers/A2ARecoveryContainer104?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDQvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjEwND9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104/replicationProtectionContainers/A2ARecoveryContainer104?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDQvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjEwND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "803ca35e-2bc1-41ce-8b29-c69c3c8903ef-2020-01-18 23:55:33Z-Ps" + "27108c32-ed84-4609-8b16-ee1e56c326cd" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388133508)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992933508)\\/\",\"ClientRequestId\":\"803ca35e-2bc1-41ce-8b29-c69c3c8903ef-2020-01-18 23:55:33Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NsDdSOGcSV9biOtI2zQG9UvAMk5K4bwvMbXd1QiiwmQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760496067)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365296067)\\/\",\"ClientRequestId\":\"445b190a-7100-4f6b-98c7-005ebe3d1971-2021-04-18 16:41:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"R4vPjUDL1FwO4Lr7KIZlX5BM0qSf1CUrIHGjjBDJ3hI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4635,41 +4370,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104/replicationProtectionContainers/A2ARecoveryContainer104/operationresults/35ca87f1-5899-4f71-849d-e3492c704d88?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104/replicationProtectionContainers/A2ARecoveryContainer104/operationresults/b122f47d-e05e-4c66-8bfc-a249f4e694a6?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/35ca87f1-5899-4f71-849d-e3492c704d88", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/35ca87f1-5899-4f71-849d-e3492c704d88" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b122f47d-e05e-4c66-8bfc-a249f4e694a6", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b122f47d-e05e-4c66-8bfc-a249f4e694a6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationOperationStatus/35ca87f1-5899-4f71-849d-e3492c704d88?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationOperationStatus/b122f47d-e05e-4c66-8bfc-a249f4e694a6?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "803ca35e-2bc1-41ce-8b29-c69c3c8903ef-2020-01-18 23:55:33Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "27108c32-ed84-4609-8b16-ee1e56c326cd" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1190" ], "x-ms-correlation-request-id": [ - "07a75142-bbe1-4b71-aec9-71728cb31102" + "10577292-4dd3-4f9b-b6c4-ab5126627b4a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235534Z:07a75142-bbe1-4b71-aec9-71728cb31102" + "CENTRALUSEUAP:20210418T164136Z:10577292-4dd3-4f9b-b6c4-ab5126627b4a" ], "Date": [ - "Sat, 18 Jan 2020 23:55:33 GMT" + "Sun, 18 Apr 2021 16:41:35 GMT" ], "Expires": [ "-1" @@ -4682,25 +4414,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/35ca87f1-5899-4f71-849d-e3492c704d88?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvMzVjYTg3ZjEtNTg5OS00ZjcxLTg0OWQtZTM0OTJjNzA0ZDg4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b122f47d-e05e-4c66-8bfc-a249f4e694a6?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvYjEyMmY0N2QtZTA1ZS00YzY2LThiZmMtYTI0OWY0ZTY5NGE2P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48ce772a-5313-4b22-80ed-49063fa20100-2020-01-18 23:55:34Z-Ps" + "27108c32-ed84-4609-8b16-ee1e56c326cd" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388134160)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992934160)\\/\",\"ClientRequestId\":\"48ce772a-5313-4b22-80ed-49063fa20100-2020-01-18 23:55:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"NXIq292LokgwHfJETFgrT15Q04m3JnsB3Q/VJtvasJc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760496613)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365296613)\\/\",\"ClientRequestId\":\"edd3c126-17e8-4d6e-a4b2-a24807f80854-2021-04-18 16:41:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"e84x7O3qZPfA8HKVTtb08VCkfOx71pzJpC4g8JkFK6M=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4711,38 +4443,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11845" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/35ca87f1-5899-4f71-849d-e3492c704d88" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b122f47d-e05e-4c66-8bfc-a249f4e694a6" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "48ce772a-5313-4b22-80ed-49063fa20100-2020-01-18 23:55:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "27108c32-ed84-4609-8b16-ee1e56c326cd" ], "x-ms-correlation-request-id": [ - "d9334f9a-b8d2-43fa-b59f-723a01a662d5" + "40fcc411-114b-400c-bcf8-d994437668d2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235534Z:d9334f9a-b8d2-43fa-b59f-723a01a662d5" + "CENTRALUSEUAP:20210418T164136Z:40fcc411-114b-400c-bcf8-d994437668d2" ], "Date": [ - "Sat, 18 Jan 2020 23:55:33 GMT" + "Sun, 18 Apr 2021 16:41:35 GMT" ], "Content-Length": [ - "1794" + "1816" ], "Content-Type": [ "application/json" @@ -4751,29 +4480,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/35ca87f1-5899-4f71-849d-e3492c704d88\",\r\n \"name\": \"35ca87f1-5899-4f71-849d-e3492c704d88\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"803ca35e-2bc1-41ce-8b29-c69c3c8903ef-2020-01-18 23:55:33Z-Ps ActivityId: 07a75142-bbe1-4b71-aec9-71728cb31102\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-01-18T23:55:34.1990756Z\",\r\n \"endTime\": \"2020-01-18T23:55:34.1522253Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-01-18T23:55:34.1522253Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:55:33.8773015Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"8f0f4420-f14d-5455-a84e-0b294659408f\",\r\n \"targetObjectName\": \"A2ARecoveryContainer104\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b122f47d-e05e-4c66-8bfc-a249f4e694a6\",\r\n \"name\": \"b122f47d-e05e-4c66-8bfc-a249f4e694a6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"27108c32-ed84-4609-8b16-ee1e56c326cd ActivityId: 10577292-4dd3-4f9b-b6c4-ab5126627b4a\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-18T16:41:36.5470743Z\",\r\n \"endTime\": \"2021-04-18T16:41:36.6220704Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-18T16:41:36.6220704Z\",\r\n \"endTime\": \"2021-04-18T16:41:36.6220704Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:41:36.3419055Z\",\r\n \"endTime\": \"2021-04-18T16:41:36Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"1f6693e6-5468-559e-8690-08c05b29f49e\",\r\n \"targetObjectName\": \"A2ARecoveryContainer104\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/35ca87f1-5899-4f71-849d-e3492c704d88?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvMzVjYTg3ZjEtNTg5OS00ZjcxLTg0OWQtZTM0OTJjNzA0ZDg4P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b122f47d-e05e-4c66-8bfc-a249f4e694a6?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvYjEyMmY0N2QtZTA1ZS00YzY2LThiZmMtYTI0OWY0ZTY5NGE2P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b157ce6b-0904-4928-8301-e1972e73609c-2020-01-18 23:55:34Z-Ps" + "b49b4383-9372-4aea-9dac-31b28bfebe78" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388134561)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992934561)\\/\",\"ClientRequestId\":\"b157ce6b-0904-4928-8301-e1972e73609c-2020-01-18 23:55:34Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"AeoG+fRcDmG5Keey3P3g3qn+OZkealDxIUk59B8awLc=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760497002)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365297002)\\/\",\"ClientRequestId\":\"8c3d5022-05cc-48ef-873c-7014f10f9130-2021-04-18 16:41:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3ulz/K26Vbbr7nRpNxqHDgAEAKHXppkejYLvMhHc7Qk=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4784,38 +4513,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" + "11844" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/35ca87f1-5899-4f71-849d-e3492c704d88" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b122f47d-e05e-4c66-8bfc-a249f4e694a6" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b157ce6b-0904-4928-8301-e1972e73609c-2020-01-18 23:55:34Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b49b4383-9372-4aea-9dac-31b28bfebe78" ], "x-ms-correlation-request-id": [ - "08481050-97c0-43ae-ab51-04bd7160be7a" + "32e8f554-6811-4be0-8af7-dbdc276716d7" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235536Z:08481050-97c0-43ae-ab51-04bd7160be7a" + "CENTRALUSEUAP:20210418T164137Z:32e8f554-6811-4be0-8af7-dbdc276716d7" ], "Date": [ - "Sat, 18 Jan 2020 23:55:35 GMT" + "Sun, 18 Apr 2021 16:41:37 GMT" ], "Content-Length": [ - "1832" + "1816" ], "Content-Type": [ "application/json" @@ -4824,29 +4550,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/35ca87f1-5899-4f71-849d-e3492c704d88\",\r\n \"name\": \"35ca87f1-5899-4f71-849d-e3492c704d88\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"803ca35e-2bc1-41ce-8b29-c69c3c8903ef-2020-01-18 23:55:33Z-Ps ActivityId: 07a75142-bbe1-4b71-aec9-71728cb31102\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2020-01-18T23:55:34.1990756Z\",\r\n \"endTime\": \"2020-01-18T23:55:34.4803206Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2020-01-18T23:55:34.4803206Z\",\r\n \"endTime\": \"2020-01-18T23:55:34.4803206Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:55:33.8773015Z\",\r\n \"endTime\": \"2020-01-18T23:55:34Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"8f0f4420-f14d-5455-a84e-0b294659408f\",\r\n \"targetObjectName\": \"A2ARecoveryContainer104\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"primaryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b122f47d-e05e-4c66-8bfc-a249f4e694a6\",\r\n \"name\": \"b122f47d-e05e-4c66-8bfc-a249f4e694a6\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"27108c32-ed84-4609-8b16-ee1e56c326cd ActivityId: 10577292-4dd3-4f9b-b6c4-ab5126627b4a\",\r\n \"scenarioName\": \"CreateCloud\",\r\n \"friendlyName\": \"Create protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CreateCloudPreflightChecksTask\",\r\n \"name\": \"CreateCloudPreflightChecksTask\",\r\n \"startTime\": \"2021-04-18T16:41:36.5470743Z\",\r\n \"endTime\": \"2021-04-18T16:41:36.6220704Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for protection container creation\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateCloudTask\",\r\n \"name\": \"CreateCloudTask\",\r\n \"startTime\": \"2021-04-18T16:41:36.6220704Z\",\r\n \"endTime\": \"2021-04-18T16:41:36.6220704Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating protection container\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:41:36.3419055Z\",\r\n \"endTime\": \"2021-04-18T16:41:36Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"1f6693e6-5468-559e-8690-08c05b29f49e\",\r\n \"targetObjectName\": \"A2ARecoveryContainer104\",\r\n \"targetInstanceType\": \"ProtectionContainer\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"primaryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104/replicationProtectionContainers/A2ARecoveryContainer104?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDQvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjEwND9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104/replicationProtectionContainers/A2ARecoveryContainer104?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDQvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjEwND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ef9e820-0b99-406b-a6a2-fdba5f68d3d7-2020-01-18 23:55:36Z-Ps" + "051b18ee-166c-42eb-a6df-cfc2fb88d967" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388136543)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992936543)\\/\",\"ClientRequestId\":\"7ef9e820-0b99-406b-a6a2-fdba5f68d3d7-2020-01-18 23:55:36Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yyoCsL8ILvLam3Ga7qI8oYHOen5TtiMPAOfJrQBVEHQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760497389)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365297389)\\/\",\"ClientRequestId\":\"382c5b01-ebf9-4f7d-aac7-601983deb3fd-2021-04-18 16:41:37Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"EIGExP4/dkbkS8pLhkOPGBXahsJeAAopP7dwAHp2fak=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4857,38 +4583,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" + "11843" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "7ef9e820-0b99-406b-a6a2-fdba5f68d3d7-2020-01-18 23:55:36Z-Ps 1/18/2020 11:55:38 PM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "051b18ee-166c-42eb-a6df-cfc2fb88d967 4/18/2021 4:41:37 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "7ef9e820-0b99-406b-a6a2-fdba5f68d3d7-2020-01-18 23:55:36Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "051b18ee-166c-42eb-a6df-cfc2fb88d967" ], "x-ms-correlation-request-id": [ - "ef402e9b-d83f-4cf6-9f7a-79562d01e0ed" + "c1f5902e-9099-490a-af5d-c580880dd5e9" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235538Z:ef402e9b-d83f-4cf6-9f7a-79562d01e0ed" + "CENTRALUSEUAP:20210418T164138Z:c1f5902e-9099-490a-af5d-c580880dd5e9" ], "Date": [ - "Sat, 18 Jan 2020 23:55:37 GMT" + "Sun, 18 Apr 2021 16:41:38 GMT" ], "Content-Length": [ - "584" + "592" ], "Content-Type": [ "application/json" @@ -4897,29 +4620,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104/replicationProtectionContainers/A2ARecoveryContainer104\",\r\n \"name\": \"A2ARecoveryContainer104\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"East US\",\r\n \"friendlyName\": \"A2ARecoveryContainer104\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104/replicationProtectionContainers/A2ARecoveryContainer104\",\r\n \"name\": \"A2ARecoveryContainer104\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers\",\r\n \"properties\": {\r\n \"fabricFriendlyName\": \"West Central US\",\r\n \"friendlyName\": \"A2ARecoveryContainer104\",\r\n \"fabricType\": \"Azure\",\r\n \"protectedItemCount\": 0,\r\n \"pairingStatus\": \"NotPaired\",\r\n \"role\": \"\",\r\n \"fabricSpecificDetails\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104/replicationProtectionContainers/A2ARecoveryContainer104/replicationProtectionContainerMappings?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDQvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjEwNC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104/replicationProtectionContainers/A2ARecoveryContainer104/replicationProtectionContainerMappings?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUmVjb3ZlcnlGYWJyaWMxMDQvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVycy9BMkFSZWNvdmVyeUNvbnRhaW5lcjEwNC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJNYXBwaW5ncz9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89c2f4bd-77ae-4da8-935d-cf483cfe11d2-2020-01-18 23:55:38Z-Ps" + "051b18ee-166c-42eb-a6df-cfc2fb88d967" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388138808)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992938808)\\/\",\"ClientRequestId\":\"89c2f4bd-77ae-4da8-935d-cf483cfe11d2-2020-01-18 23:55:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Nn8xxWmgguVp84jwB7zOnHZ0paXa4djOUGxK9+K82Cg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760498708)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365298708)\\/\",\"ClientRequestId\":\"7270e1f1-5766-4e74-8c15-e2535edc9d88-2021-04-18 16:41:38Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"SlDo1IKwcbpVY+Igkczr45U0fMCFNvSXVSDDvjYjy3Q=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -4930,35 +4653,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" + "11842" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "89c2f4bd-77ae-4da8-935d-cf483cfe11d2-2020-01-18 23:55:38Z-Ps 1/18/2020 11:55:39 PM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "051b18ee-166c-42eb-a6df-cfc2fb88d967 4/18/2021 4:41:38 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "89c2f4bd-77ae-4da8-935d-cf483cfe11d2-2020-01-18 23:55:38Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "051b18ee-166c-42eb-a6df-cfc2fb88d967" ], "x-ms-correlation-request-id": [ - "06ba7792-7503-46b8-a632-8d1114366f5d" + "5559c1f9-2a21-4a8c-b983-e922d9582c3f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235539Z:06ba7792-7503-46b8-a632-8d1114366f5d" + "CENTRALUSEUAP:20210418T164138Z:5559c1f9-2a21-4a8c-b983-e922d9582c3f" ], "Date": [ - "Sat, 18 Jan 2020 23:55:38 GMT" + "Sun, 18 Apr 2021 16:41:38 GMT" ], "Content-Length": [ "28" @@ -4974,25 +4694,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationPolicies/TestA2APolicy1104?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxMTA0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationPolicies/TestA2APolicy1104?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxMTA0P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"A2A\",\r\n \"recoveryPointHistory\": 720,\r\n \"crashConsistentFrequencyInMinutes\": 5,\r\n \"appConsistentFrequencyInMinutes\": 0,\r\n \"multiVmSyncStatus\": \"Enable\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3841ca8a-2ee8-4c2c-a019-b44ac29e5bf7-2020-01-18 23:55:39Z-Ps" + "b97c15d9-a12d-4341-907c-786f8d68d6fa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388139304)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992939304)\\/\",\"ClientRequestId\":\"3841ca8a-2ee8-4c2c-a019-b44ac29e5bf7-2020-01-18 23:55:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"3+nxtXr9rWX/AuEY2o0gZnju1vviXN09RHZ2Ql6i0f4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760499129)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365299129)\\/\",\"ClientRequestId\":\"767347f1-8c0e-4413-ab45-0da4e9e6a83f-2021-04-18 16:41:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HSfu/Og0MpVEM3LmzMMn143qt4dkavKR40xqZ7Ob0Jg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5009,40 +4729,37 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationPolicies/TestA2APolicy1104/operationresults/4b75be94-976c-469b-ab2a-7c7aac2fdf0f?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationPolicies/TestA2APolicy1104/operationresults/6bf7895d-f198-4615-80f7-c8f39f983c3b?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "3841ca8a-2ee8-4c2c-a019-b44ac29e5bf7-2020-01-18 23:55:39Z-Ps 1/18/2020 11:55:39 PM" + "b97c15d9-a12d-4341-907c-786f8d68d6fa 4/18/2021 4:41:39 PM" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationOperationStatus/4b75be94-976c-469b-ab2a-7c7aac2fdf0f?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationOperationStatus/6bf7895d-f198-4615-80f7-c8f39f983c3b?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "3841ca8a-2ee8-4c2c-a019-b44ac29e5bf7-2020-01-18 23:55:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "b97c15d9-a12d-4341-907c-786f8d68d6fa" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1189" ], "x-ms-correlation-request-id": [ - "321c45ba-defe-4ad7-9a82-91e1f1f3636b" + "a2324531-8fc0-4b4b-abf2-363a9749d651" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235539Z:321c45ba-defe-4ad7-9a82-91e1f1f3636b" + "CENTRALUSEUAP:20210418T164139Z:a2324531-8fc0-4b4b-abf2-363a9749d651" ], "Date": [ - "Sat, 18 Jan 2020 23:55:38 GMT" + "Sun, 18 Apr 2021 16:41:39 GMT" ], "Expires": [ "-1" @@ -5055,25 +4772,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/4b75be94-976c-469b-ab2a-7c7aac2fdf0f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNGI3NWJlOTQtOTc2Yy00NjliLWFiMmEtN2M3YWFjMmZkZjBmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/6bf7895d-f198-4615-80f7-c8f39f983c3b?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNmJmNzg5NWQtZjE5OC00NjE1LTgwZjctYzhmMzlmOTgzYzNiP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d22a9f58-5534-4e92-bbfe-f3b82a7d051a-2020-01-18 23:55:39Z-Ps" + "b97c15d9-a12d-4341-907c-786f8d68d6fa" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388139924)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992939924)\\/\",\"ClientRequestId\":\"d22a9f58-5534-4e92-bbfe-f3b82a7d051a-2020-01-18 23:55:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"BSiMyDKQav5JYTy1NNG6Lns6KY1donqS4hwU59c2aW4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760499732)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365299732)\\/\",\"ClientRequestId\":\"4ab4d363-5729-481b-a37c-ef2d5a7d3312-2021-04-18 16:41:39Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ydoPgrQ9blJL6ltX7TmxCOiDZUmdQOfhEcFPOXzVLGQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5084,38 +4801,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11841" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/4b75be94-976c-469b-ab2a-7c7aac2fdf0f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/6bf7895d-f198-4615-80f7-c8f39f983c3b" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d22a9f58-5534-4e92-bbfe-f3b82a7d051a-2020-01-18 23:55:39Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "b97c15d9-a12d-4341-907c-786f8d68d6fa" ], "x-ms-correlation-request-id": [ - "05bee512-d6e8-4a18-bce5-bc78ed6baffb" + "76376a0e-5637-4076-ab68-475bc6836e35" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235540Z:05bee512-d6e8-4a18-bce5-bc78ed6baffb" + "CENTRALUSEUAP:20210418T164139Z:76376a0e-5637-4076-ab68-475bc6836e35" ], "Date": [ - "Sat, 18 Jan 2020 23:55:39 GMT" + "Sun, 18 Apr 2021 16:41:39 GMT" ], "Content-Length": [ - "1750" + "1733" ], "Content-Type": [ "application/json" @@ -5124,29 +4838,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/4b75be94-976c-469b-ab2a-7c7aac2fdf0f\",\r\n \"name\": \"4b75be94-976c-469b-ab2a-7c7aac2fdf0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3841ca8a-2ee8-4c2c-a019-b44ac29e5bf7-2020-01-18 23:55:39Z-Ps ActivityId: 321c45ba-defe-4ad7-9a82-91e1f1f3636b\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2020-01-18T23:55:39.9457138Z\",\r\n \"endTime\": \"2020-01-18T23:55:40.0550874Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2020-01-18T23:55:40.0550874Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:55:39.6512588Z\",\r\n \"endTime\": \"2020-01-18T23:55:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3f0b21e6-43c4-509d-ab5b-b4275342c38e\",\r\n \"targetObjectName\": \"TestA2APolicy1104\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/6bf7895d-f198-4615-80f7-c8f39f983c3b\",\r\n \"name\": \"6bf7895d-f198-4615-80f7-c8f39f983c3b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b97c15d9-a12d-4341-907c-786f8d68d6fa ActivityId: a2324531-8fc0-4b4b-abf2-363a9749d651\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2021-04-18T16:41:39.5005878Z\",\r\n \"endTime\": \"2021-04-18T16:41:39.5705889Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2021-04-18T16:41:39.5705889Z\",\r\n \"endTime\": \"2021-04-18T16:41:39.5705889Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:41:39.3909283Z\",\r\n \"endTime\": \"2021-04-18T16:41:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"69e27928-6c36-511a-b72b-11af29f2fccf\",\r\n \"targetObjectName\": \"TestA2APolicy1104\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/4b75be94-976c-469b-ab2a-7c7aac2fdf0f?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNGI3NWJlOTQtOTc2Yy00NjliLWFiMmEtN2M3YWFjMmZkZjBmP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/6bf7895d-f198-4615-80f7-c8f39f983c3b?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNmJmNzg5NWQtZjE5OC00NjE1LTgwZjctYzhmMzlmOTgzYzNiP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d6622ddd-b0ef-477c-95d3-4347e3e2a8d7-2020-01-18 23:55:40Z-Ps" + "defe36cc-fa7d-45e4-9b8c-59aa29e3ce82" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388140319)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992940319)\\/\",\"ClientRequestId\":\"d6622ddd-b0ef-477c-95d3-4347e3e2a8d7-2020-01-18 23:55:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bTNJeu4Jwkq4X5q4lFLa8CBIHXOr9paYFFgxRGpecPQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760500124)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365300124)\\/\",\"ClientRequestId\":\"3774956e-5990-4677-b734-fd4888990240-2021-04-18 16:41:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Uze/Tb3n62KgEFGdf/sVXPXLg7vFBCEWZmHj/5LHlVE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5157,38 +4871,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" + "11840" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/4b75be94-976c-469b-ab2a-7c7aac2fdf0f" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/6bf7895d-f198-4615-80f7-c8f39f983c3b" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d6622ddd-b0ef-477c-95d3-4347e3e2a8d7-2020-01-18 23:55:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "defe36cc-fa7d-45e4-9b8c-59aa29e3ce82" ], "x-ms-correlation-request-id": [ - "8965e620-b78f-471d-8c17-6c5015664c4e" + "544bbce6-07d6-4934-a0b6-6920ed5e8ec1" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235540Z:8965e620-b78f-471d-8c17-6c5015664c4e" + "CENTRALUSEUAP:20210418T164140Z:544bbce6-07d6-4934-a0b6-6920ed5e8ec1" ], "Date": [ - "Sat, 18 Jan 2020 23:55:39 GMT" + "Sun, 18 Apr 2021 16:41:39 GMT" ], "Content-Length": [ - "1757" + "1733" ], "Content-Type": [ "application/json" @@ -5197,29 +4908,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/4b75be94-976c-469b-ab2a-7c7aac2fdf0f\",\r\n \"name\": \"4b75be94-976c-469b-ab2a-7c7aac2fdf0f\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"3841ca8a-2ee8-4c2c-a019-b44ac29e5bf7-2020-01-18 23:55:39Z-Ps ActivityId: 321c45ba-defe-4ad7-9a82-91e1f1f3636b\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2020-01-18T23:55:39.9457138Z\",\r\n \"endTime\": \"2020-01-18T23:55:40.1050097Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2020-01-18T23:55:40.1050097Z\",\r\n \"endTime\": \"2020-01-18T23:55:40.1050097Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:55:39.6512588Z\",\r\n \"endTime\": \"2020-01-18T23:55:40Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3f0b21e6-43c4-509d-ab5b-b4275342c38e\",\r\n \"targetObjectName\": \"TestA2APolicy1104\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/6bf7895d-f198-4615-80f7-c8f39f983c3b\",\r\n \"name\": \"6bf7895d-f198-4615-80f7-c8f39f983c3b\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b97c15d9-a12d-4341-907c-786f8d68d6fa ActivityId: a2324531-8fc0-4b4b-abf2-363a9749d651\",\r\n \"scenarioName\": \"AddProtectionProfile\",\r\n \"friendlyName\": \"Create replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"name\": \"AddProtectionProfilePreflightsCheckTask\",\r\n \"startTime\": \"2021-04-18T16:41:39.5005878Z\",\r\n \"endTime\": \"2021-04-18T16:41:39.5705889Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"AddProtectionProfileTask\",\r\n \"name\": \"AddProtectionProfileTask\",\r\n \"startTime\": \"2021-04-18T16:41:39.5705889Z\",\r\n \"endTime\": \"2021-04-18T16:41:39.5705889Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Creating the replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:41:39.3909283Z\",\r\n \"endTime\": \"2021-04-18T16:41:39Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"69e27928-6c36-511a-b72b-11af29f2fccf\",\r\n \"targetObjectName\": \"TestA2APolicy1104\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {}\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationPolicies/TestA2APolicy1104?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxMTA0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationPolicies/TestA2APolicy1104?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxMTA0P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "625c5684-b1b1-4222-b616-2bf155f98536-2020-01-18 23:55:40Z-Ps" + "73d73400-fe5a-462c-9c76-6442a445bc92" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388140761)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992940761)\\/\",\"ClientRequestId\":\"625c5684-b1b1-4222-b616-2bf155f98536-2020-01-18 23:55:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"rgpdzbimNet/sR7Z+JGx+Vax3uxk9/n7cvlfEDuVdBg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760500710)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365300710)\\/\",\"ClientRequestId\":\"f20d06d5-881b-4b7a-bc2c-550dbae97fd3-2021-04-18 16:41:40Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"P9PDbKES7G738IdvCiaKjNhh0Z0lor6ThU6g1Ap3/5s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5230,35 +4941,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" + "11839" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "625c5684-b1b1-4222-b616-2bf155f98536-2020-01-18 23:55:40Z-Ps 1/18/2020 11:55:41 PM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "73d73400-fe5a-462c-9c76-6442a445bc92 4/18/2021 4:41:40 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "625c5684-b1b1-4222-b616-2bf155f98536-2020-01-18 23:55:40Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "73d73400-fe5a-462c-9c76-6442a445bc92" ], "x-ms-correlation-request-id": [ - "892b7d43-1527-4735-b518-a7b586578b63" + "64e99c02-479d-4a42-814d-58dd2f99e521" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235541Z:892b7d43-1527-4735-b518-a7b586578b63" + "CENTRALUSEUAP:20210418T164140Z:64e99c02-479d-4a42-814d-58dd2f99e521" ], "Date": [ - "Sat, 18 Jan 2020 23:55:40 GMT" + "Sun, 18 Apr 2021 16:41:40 GMT" ], "Content-Length": [ "557" @@ -5274,25 +4982,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationPolicies/TestA2APolicy1104?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxMTA0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationPolicies/TestA2APolicy1104?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvblBvbGljaWVzL1Rlc3RBMkFQb2xpY3kxMTA0P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac20538f-2ea7-4a39-bc12-c9e92cd02100-2020-01-18 23:57:29Z-Ps" + "a039c31b-7d00-41fe-afcc-261944918c2a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388249246)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579993049246)\\/\",\"ClientRequestId\":\"ac20538f-2ea7-4a39-bc12-c9e92cd02100-2020-01-18 23:57:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"4DcGJrpGDMN2n4pClEtakrMfi0b8YCl8H43793V7Z6s=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760626869)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365426869)\\/\",\"ClientRequestId\":\"5eba34d8-2995-43a1-9db1-5ee16e376185-2021-04-18 16:43:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"j9G/eeLbnhKS7CDa9zWJz6a6IJGUrrGLsuhGWnYzG3Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5303,35 +5011,32 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" + "11827" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "ac20538f-2ea7-4a39-bc12-c9e92cd02100-2020-01-18 23:57:29Z-Ps 1/18/2020 11:57:29 PM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "a039c31b-7d00-41fe-afcc-261944918c2a 4/18/2021 4:43:47 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "ac20538f-2ea7-4a39-bc12-c9e92cd02100-2020-01-18 23:57:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a039c31b-7d00-41fe-afcc-261944918c2a" ], "x-ms-correlation-request-id": [ - "db7bd8dd-5e4d-4886-a498-25adeb9f3476" + "b6143ae2-b400-46df-9a83-0cc9026a22b0" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235729Z:db7bd8dd-5e4d-4886-a498-25adeb9f3476" + "CENTRALUSEUAP:20210418T164347Z:b6143ae2-b400-46df-9a83-0cc9026a22b0" ], "Date": [ - "Sat, 18 Jan 2020 23:57:29 GMT" + "Sun, 18 Apr 2021 16:43:46 GMT" ], "Content-Length": [ "557" @@ -5347,25 +5052,25 @@ "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104/replicationProtectionContainerMappings/A2APCM104?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDQvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUENNMTA0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104/replicationProtectionContainerMappings/A2APCM104?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDQvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUENNMTA0P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104/replicationProtectionContainers/A2ARecoveryContainer104\",\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationPolicies/TestA2APolicy1104\",\r\n \"providerSpecificInput\": {\r\n \"instanceType\": \"ReplicationProviderSpecificContainerMappingInput\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d0cd7d26-7b5c-46d0-b51b-9629a637d902-2020-01-18 23:55:41Z-Ps" + "e1264c3b-b6d9-444d-adf3-09eafcaf3411" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388141138)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992941138)\\/\",\"ClientRequestId\":\"d0cd7d26-7b5c-46d0-b51b-9629a637d902-2020-01-18 23:55:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"R4SVnL4i8wYy670644q9pPl4OMc6687mRkfmPf1TiWM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760501128)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365301128)\\/\",\"ClientRequestId\":\"fac58bf2-409e-4e42-999b-63680a3d96e9-2021-04-18 16:41:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Op/kZL52GLAl9sbY/NAKqVuKPmJOP1V0brNv6SwvgMM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5382,41 +5087,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104/replicationProtectionContainerMappings/A2APCM104/operationresults/b9b3bb01-f927-4926-8c48-84cbbc67cc49?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104/replicationProtectionContainerMappings/A2APCM104/operationresults/8d6cee63-f194-4034-9b37-abb108775dbe?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationOperationStatus/b9b3bb01-f927-4926-8c48-84cbbc67cc49?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationOperationStatus/8d6cee63-f194-4034-9b37-abb108775dbe?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d0cd7d26-7b5c-46d0-b51b-9629a637d902-2020-01-18 23:55:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "e1264c3b-b6d9-444d-adf3-09eafcaf3411" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1188" ], "x-ms-correlation-request-id": [ - "8ff1da91-b40a-419a-a44f-3a94ad30aaa2" + "59e1083e-fd05-44b6-b5fb-033c3bb3c39c" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235541Z:8ff1da91-b40a-419a-a44f-3a94ad30aaa2" + "CENTRALUSEUAP:20210418T164141Z:59e1083e-fd05-44b6-b5fb-033c3bb3c39c" ], "Date": [ - "Sat, 18 Jan 2020 23:55:40 GMT" + "Sun, 18 Apr 2021 16:41:41 GMT" ], "Expires": [ "-1" @@ -5429,25 +5131,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvYjliM2JiMDEtZjkyNy00OTI2LThjNDgtODRjYmJjNjdjYzQ5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvOGQ2Y2VlNjMtZjE5NC00MDM0LTliMzctYWJiMTA4Nzc1ZGJlP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49929906-638f-44f8-9183-1e9e0211182b-2020-01-18 23:55:41Z-Ps" + "e1264c3b-b6d9-444d-adf3-09eafcaf3411" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388141916)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992941916)\\/\",\"ClientRequestId\":\"49929906-638f-44f8-9183-1e9e0211182b-2020-01-18 23:55:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"IclYD3rL3lGPDrYJ2kqp8ugox3/VIEfhTil21NGyCgU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760501797)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365301797)\\/\",\"ClientRequestId\":\"084f120c-2ad7-44e6-987b-b2b0adee167a-2021-04-18 16:41:41Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"PXY5asMsNVn+FPxSAKS3lTVMtcYpUSc8LYX9av9UkCU=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5458,38 +5160,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" + "11838" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "49929906-638f-44f8-9183-1e9e0211182b-2020-01-18 23:55:41Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e1264c3b-b6d9-444d-adf3-09eafcaf3411" ], "x-ms-correlation-request-id": [ - "3d3fb4b1-7176-42fc-9c52-2c7bf458a32b" + "c2d0eaf6-89cc-4330-ac2d-d1b91a1cf236" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235542Z:3d3fb4b1-7176-42fc-9c52-2c7bf458a32b" + "CENTRALUSEUAP:20210418T164142Z:c2d0eaf6-89cc-4330-ac2d-d1b91a1cf236" ], "Date": [ - "Sat, 18 Jan 2020 23:55:41 GMT" + "Sun, 18 Apr 2021 16:41:41 GMT" ], "Content-Length": [ - "2893" + "2891" ], "Content-Type": [ "application/json" @@ -5498,29 +5197,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49\",\r\n \"name\": \"b9b3bb01-f927-4926-8c48-84cbbc67cc49\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d0cd7d26-7b5c-46d0-b51b-9629a637d902-2020-01-18 23:55:41Z-Ps ActivityId: 8ff1da91-b40a-419a-a44f-3a94ad30aaa2\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-18T23:55:42.0630493Z\",\r\n \"endTime\": \"2020-01-18T23:55:42.1099295Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-01-18T23:55:42.1099295Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:55:41.5730701Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"3f0b21e6-43c4-509d-ab5b-b4275342c38e\",\r\n \"targetObjectName\": \"TestA2APolicy1104\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"b502bb19-00ab-5c2c-99a9-a5c0cec4e67b\",\r\n \"primaryCloudName\": \"A2APrimaryContainer104\",\r\n \"recoveryCloudId\": \"8f0f4420-f14d-5455-a84e-0b294659408f\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer104\",\r\n \"primaryVmmId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe\",\r\n \"name\": \"8d6cee63-f194-4034-9b37-abb108775dbe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e1264c3b-b6d9-444d-adf3-09eafcaf3411 ActivityId: 59e1083e-fd05-44b6-b5fb-033c3bb3c39c\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T16:41:41.672232Z\",\r\n \"endTime\": \"2021-04-18T16:41:41.7722386Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T16:41:41.7722386Z\",\r\n \"endTime\": \"2021-04-18T16:41:41.8022413Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T16:41:41.8022413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:41:41.459126Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"69e27928-6c36-511a-b72b-11af29f2fccf\",\r\n \"targetObjectName\": \"TestA2APolicy1104\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"46b20966-150c-5690-b74d-d859c485c331\",\r\n \"primaryCloudName\": \"A2APrimaryContainer104\",\r\n \"recoveryCloudId\": \"1f6693e6-5468-559e-8690-08c05b29f49e\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer104\",\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvYjliM2JiMDEtZjkyNy00OTI2LThjNDgtODRjYmJjNjdjYzQ5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvOGQ2Y2VlNjMtZjE5NC00MDM0LTliMzctYWJiMTA4Nzc1ZGJlP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f5c4a15-c0e0-4a41-b496-5a1f53f53a15-2020-01-18 23:55:42Z-Ps" + "058261dd-bc5a-471e-90cb-beededa72eb7" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388142303)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992942303)\\/\",\"ClientRequestId\":\"1f5c4a15-c0e0-4a41-b496-5a1f53f53a15-2020-01-18 23:55:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"FeZpjvqdSH5BtYL6BWyK2ZSSTqznKrrT41QDpI9BJFg=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760502186)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365302186)\\/\",\"ClientRequestId\":\"e21db65c-9cb2-418c-a71e-8f917d29e1e3-2021-04-18 16:41:42Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"bsXlnc/vw5ux0dQyRZaiSO9bDCh/11eHXmknPlU21Z8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5531,38 +5230,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11837" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "1f5c4a15-c0e0-4a41-b496-5a1f53f53a15-2020-01-18 23:55:42Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "058261dd-bc5a-471e-90cb-beededa72eb7" ], "x-ms-correlation-request-id": [ - "412bb501-9441-4d05-8c07-b0c383cb83b2" + "b97063f5-3c03-4943-b320-8ea353c9edf8" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235542Z:412bb501-9441-4d05-8c07-b0c383cb83b2" + "CENTRALUSEUAP:20210418T164142Z:b97063f5-3c03-4943-b320-8ea353c9edf8" ], "Date": [ - "Sat, 18 Jan 2020 23:55:41 GMT" + "Sun, 18 Apr 2021 16:41:41 GMT" ], "Content-Length": [ - "2909" + "2891" ], "Content-Type": [ "application/json" @@ -5571,29 +5267,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49\",\r\n \"name\": \"b9b3bb01-f927-4926-8c48-84cbbc67cc49\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d0cd7d26-7b5c-46d0-b51b-9629a637d902-2020-01-18 23:55:41Z-Ps ActivityId: 8ff1da91-b40a-419a-a44f-3a94ad30aaa2\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-18T23:55:42.0630493Z\",\r\n \"endTime\": \"2020-01-18T23:55:42.1880519Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-01-18T23:55:42.1880519Z\",\r\n \"endTime\": \"2020-01-18T23:55:42.2349211Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-01-18T23:55:42.2349211Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:55:41.5730701Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"3f0b21e6-43c4-509d-ab5b-b4275342c38e\",\r\n \"targetObjectName\": \"TestA2APolicy1104\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"b502bb19-00ab-5c2c-99a9-a5c0cec4e67b\",\r\n \"primaryCloudName\": \"A2APrimaryContainer104\",\r\n \"recoveryCloudId\": \"8f0f4420-f14d-5455-a84e-0b294659408f\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer104\",\r\n \"primaryVmmId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe\",\r\n \"name\": \"8d6cee63-f194-4034-9b37-abb108775dbe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e1264c3b-b6d9-444d-adf3-09eafcaf3411 ActivityId: 59e1083e-fd05-44b6-b5fb-033c3bb3c39c\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T16:41:41.672232Z\",\r\n \"endTime\": \"2021-04-18T16:41:41.7722386Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T16:41:41.7722386Z\",\r\n \"endTime\": \"2021-04-18T16:41:41.8022413Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T16:41:41.8022413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:41:41.459126Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"69e27928-6c36-511a-b72b-11af29f2fccf\",\r\n \"targetObjectName\": \"TestA2APolicy1104\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"46b20966-150c-5690-b74d-d859c485c331\",\r\n \"primaryCloudName\": \"A2APrimaryContainer104\",\r\n \"recoveryCloudId\": \"1f6693e6-5468-559e-8690-08c05b29f49e\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer104\",\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvYjliM2JiMDEtZjkyNy00OTI2LThjNDgtODRjYmJjNjdjYzQ5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvOGQ2Y2VlNjMtZjE5NC00MDM0LTliMzctYWJiMTA4Nzc1ZGJlP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ef97679-1a63-423b-b858-019c3e526206-2020-01-18 23:56:02Z-Ps" + "e5f3b952-6f8f-42dc-97fa-00d691d1da54" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388162799)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992962799)\\/\",\"ClientRequestId\":\"5ef97679-1a63-423b-b858-019c3e526206-2020-01-18 23:56:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"HtJ5yn+kEXjk6H7uDZJ6oev21qTkJofdKnQ7oZhGOHs=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760522697)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365322697)\\/\",\"ClientRequestId\":\"69ce863e-ee24-41ad-8d41-564459f4f536-2021-04-18 16:42:02Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"XweTcAs7jWZs8MQ76e9wWVQnaxcPIhP9KRyVWvmqkRE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5604,38 +5300,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11836" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "5ef97679-1a63-423b-b858-019c3e526206-2020-01-18 23:56:02Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e5f3b952-6f8f-42dc-97fa-00d691d1da54" ], "x-ms-correlation-request-id": [ - "099d96b7-ef4b-4c95-a28a-fc4668fa6455" + "707ba933-75aa-4360-a82b-2c0e3c94b362" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235603Z:099d96b7-ef4b-4c95-a28a-fc4668fa6455" + "CENTRALUSEUAP:20210418T164202Z:707ba933-75aa-4360-a82b-2c0e3c94b362" ], "Date": [ - "Sat, 18 Jan 2020 23:56:02 GMT" + "Sun, 18 Apr 2021 16:42:02 GMT" ], "Content-Length": [ - "2909" + "2891" ], "Content-Type": [ "application/json" @@ -5644,29 +5337,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49\",\r\n \"name\": \"b9b3bb01-f927-4926-8c48-84cbbc67cc49\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d0cd7d26-7b5c-46d0-b51b-9629a637d902-2020-01-18 23:55:41Z-Ps ActivityId: 8ff1da91-b40a-419a-a44f-3a94ad30aaa2\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-18T23:55:42.0630493Z\",\r\n \"endTime\": \"2020-01-18T23:55:42.1880519Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-01-18T23:55:42.1880519Z\",\r\n \"endTime\": \"2020-01-18T23:55:42.2349211Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-01-18T23:55:42.2349211Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:55:41.5730701Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"3f0b21e6-43c4-509d-ab5b-b4275342c38e\",\r\n \"targetObjectName\": \"TestA2APolicy1104\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"b502bb19-00ab-5c2c-99a9-a5c0cec4e67b\",\r\n \"primaryCloudName\": \"A2APrimaryContainer104\",\r\n \"recoveryCloudId\": \"8f0f4420-f14d-5455-a84e-0b294659408f\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer104\",\r\n \"primaryVmmId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe\",\r\n \"name\": \"8d6cee63-f194-4034-9b37-abb108775dbe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e1264c3b-b6d9-444d-adf3-09eafcaf3411 ActivityId: 59e1083e-fd05-44b6-b5fb-033c3bb3c39c\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T16:41:41.672232Z\",\r\n \"endTime\": \"2021-04-18T16:41:41.7722386Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T16:41:41.7722386Z\",\r\n \"endTime\": \"2021-04-18T16:41:41.8022413Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T16:41:41.8022413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:41:41.459126Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"69e27928-6c36-511a-b72b-11af29f2fccf\",\r\n \"targetObjectName\": \"TestA2APolicy1104\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"46b20966-150c-5690-b74d-d859c485c331\",\r\n \"primaryCloudName\": \"A2APrimaryContainer104\",\r\n \"recoveryCloudId\": \"1f6693e6-5468-559e-8690-08c05b29f49e\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer104\",\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvYjliM2JiMDEtZjkyNy00OTI2LThjNDgtODRjYmJjNjdjYzQ5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvOGQ2Y2VlNjMtZjE5NC00MDM0LTliMzctYWJiMTA4Nzc1ZGJlP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de2c905f-d4ec-4ecb-8964-85cde89ac082-2020-01-18 23:56:23Z-Ps" + "e004907b-9cb9-4986-8e5b-b07221fd0f23" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388183347)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579992983347)\\/\",\"ClientRequestId\":\"de2c905f-d4ec-4ecb-8964-85cde89ac082-2020-01-18 23:56:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"YaN49nDEBoxCGzKp5GMlpmj76BOE3qM57mIv8Hl4eEM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760543101)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365343101)\\/\",\"ClientRequestId\":\"717189ed-d0e4-4ab9-aac5-307c07ea713c-2021-04-18 16:42:23Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"y5jG44duXBnY+s00oKWf66PVSxLj6QaM7t8y8f7Q9fw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5677,38 +5370,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11835" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "de2c905f-d4ec-4ecb-8964-85cde89ac082-2020-01-18 23:56:23Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "e004907b-9cb9-4986-8e5b-b07221fd0f23" ], "x-ms-correlation-request-id": [ - "b7e3e2da-ea76-4bd9-8beb-f7fa0424a6e4" + "b20dea94-33fd-4e76-b0ff-cf76f9e680a2" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235623Z:b7e3e2da-ea76-4bd9-8beb-f7fa0424a6e4" + "CENTRALUSEUAP:20210418T164223Z:b20dea94-33fd-4e76-b0ff-cf76f9e680a2" ], "Date": [ - "Sat, 18 Jan 2020 23:56:23 GMT" + "Sun, 18 Apr 2021 16:42:23 GMT" ], "Content-Length": [ - "2909" + "2891" ], "Content-Type": [ "application/json" @@ -5717,29 +5407,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49\",\r\n \"name\": \"b9b3bb01-f927-4926-8c48-84cbbc67cc49\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d0cd7d26-7b5c-46d0-b51b-9629a637d902-2020-01-18 23:55:41Z-Ps ActivityId: 8ff1da91-b40a-419a-a44f-3a94ad30aaa2\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-18T23:55:42.0630493Z\",\r\n \"endTime\": \"2020-01-18T23:55:42.1880519Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-01-18T23:55:42.1880519Z\",\r\n \"endTime\": \"2020-01-18T23:55:42.2349211Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-01-18T23:55:42.2349211Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:55:41.5730701Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"3f0b21e6-43c4-509d-ab5b-b4275342c38e\",\r\n \"targetObjectName\": \"TestA2APolicy1104\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"b502bb19-00ab-5c2c-99a9-a5c0cec4e67b\",\r\n \"primaryCloudName\": \"A2APrimaryContainer104\",\r\n \"recoveryCloudId\": \"8f0f4420-f14d-5455-a84e-0b294659408f\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer104\",\r\n \"primaryVmmId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe\",\r\n \"name\": \"8d6cee63-f194-4034-9b37-abb108775dbe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e1264c3b-b6d9-444d-adf3-09eafcaf3411 ActivityId: 59e1083e-fd05-44b6-b5fb-033c3bb3c39c\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T16:41:41.672232Z\",\r\n \"endTime\": \"2021-04-18T16:41:41.7722386Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T16:41:41.7722386Z\",\r\n \"endTime\": \"2021-04-18T16:41:41.8022413Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T16:41:41.8022413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:41:41.459126Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"69e27928-6c36-511a-b72b-11af29f2fccf\",\r\n \"targetObjectName\": \"TestA2APolicy1104\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"46b20966-150c-5690-b74d-d859c485c331\",\r\n \"primaryCloudName\": \"A2APrimaryContainer104\",\r\n \"recoveryCloudId\": \"1f6693e6-5468-559e-8690-08c05b29f49e\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer104\",\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvYjliM2JiMDEtZjkyNy00OTI2LThjNDgtODRjYmJjNjdjYzQ5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvOGQ2Y2VlNjMtZjE5NC00MDM0LTliMzctYWJiMTA4Nzc1ZGJlP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbacd019-0e55-4276-9406-1a57c7daa037-2020-01-18 23:56:43Z-Ps" + "a8fd5c70-7c51-45a4-a3c2-a2e711068caf" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388203911)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579993003911)\\/\",\"ClientRequestId\":\"bbacd019-0e55-4276-9406-1a57c7daa037-2020-01-18 23:56:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"81+8d3mRYOatxy2P12lck4MQB0tEempY2Jd1Y+Xx4BY=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760563562)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365363562)\\/\",\"ClientRequestId\":\"64b7b417-5a97-47af-8581-77f372ea4ba0-2021-04-18 16:42:43Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"kiKprcjUqnPoWCCWmY1ObAbmqVyARsINb87o9j3VfOw=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5749,39 +5439,36 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11834" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "bbacd019-0e55-4276-9406-1a57c7daa037-2020-01-18 23:56:43Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "a8fd5c70-7c51-45a4-a3c2-a2e711068caf" ], "x-ms-correlation-request-id": [ - "ca052fb8-52ff-41c0-925d-8f48ead8f48c" + "5b924dac-1018-4d7f-8a43-e6b360da4476" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235644Z:ca052fb8-52ff-41c0-925d-8f48ead8f48c" + "CENTRALUSEUAP:20210418T164243Z:5b924dac-1018-4d7f-8a43-e6b360da4476" ], "Date": [ - "Sat, 18 Jan 2020 23:56:44 GMT" + "Sun, 18 Apr 2021 16:42:43 GMT" ], "Content-Length": [ - "2909" + "2891" ], "Content-Type": [ "application/json" @@ -5790,29 +5477,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49\",\r\n \"name\": \"b9b3bb01-f927-4926-8c48-84cbbc67cc49\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d0cd7d26-7b5c-46d0-b51b-9629a637d902-2020-01-18 23:55:41Z-Ps ActivityId: 8ff1da91-b40a-419a-a44f-3a94ad30aaa2\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-18T23:55:42.0630493Z\",\r\n \"endTime\": \"2020-01-18T23:55:42.1880519Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-01-18T23:55:42.1880519Z\",\r\n \"endTime\": \"2020-01-18T23:55:42.2349211Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-01-18T23:55:42.2349211Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:55:41.5730701Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"3f0b21e6-43c4-509d-ab5b-b4275342c38e\",\r\n \"targetObjectName\": \"TestA2APolicy1104\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"b502bb19-00ab-5c2c-99a9-a5c0cec4e67b\",\r\n \"primaryCloudName\": \"A2APrimaryContainer104\",\r\n \"recoveryCloudId\": \"8f0f4420-f14d-5455-a84e-0b294659408f\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer104\",\r\n \"primaryVmmId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe\",\r\n \"name\": \"8d6cee63-f194-4034-9b37-abb108775dbe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e1264c3b-b6d9-444d-adf3-09eafcaf3411 ActivityId: 59e1083e-fd05-44b6-b5fb-033c3bb3c39c\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T16:41:41.672232Z\",\r\n \"endTime\": \"2021-04-18T16:41:41.7722386Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T16:41:41.7722386Z\",\r\n \"endTime\": \"2021-04-18T16:41:41.8022413Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T16:41:41.8022413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:41:41.459126Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"69e27928-6c36-511a-b72b-11af29f2fccf\",\r\n \"targetObjectName\": \"TestA2APolicy1104\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"46b20966-150c-5690-b74d-d859c485c331\",\r\n \"primaryCloudName\": \"A2APrimaryContainer104\",\r\n \"recoveryCloudId\": \"1f6693e6-5468-559e-8690-08c05b29f49e\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer104\",\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvYjliM2JiMDEtZjkyNy00OTI2LThjNDgtODRjYmJjNjdjYzQ5P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvOGQ2Y2VlNjMtZjE5NC00MDM0LTliMzctYWJiMTA4Nzc1ZGJlP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6613ca20-f389-4886-ac3d-054a64cd4633-2020-01-18 23:57:04Z-Ps" + "f66147e2-5e2b-47dd-9cf9-61fc497d37c2" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388224406)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579993024406)\\/\",\"ClientRequestId\":\"6613ca20-f389-4886-ac3d-054a64cd4633-2020-01-18 23:57:04Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"GI+0vtZKy/WeYdBgXpZPgGZGjpxAVgYPCeGq4K+KukE=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760583936)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365383936)\\/\",\"ClientRequestId\":\"fd38820a-8668-4830-97ec-567d421b1b46-2021-04-18 16:43:03Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"m4PHkb0rCu3x7o7ITW6/tOwqiEjFc0Vi+JAnLYuNzLo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5822,39 +5509,106 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11833" + ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "6613ca20-f389-4886-ac3d-054a64cd4633-2020-01-18 23:57:04Z-Ps" + "f66147e2-5e2b-47dd-9cf9-61fc497d37c2" + ], + "x-ms-correlation-request-id": [ + "3e490214-22c9-41e3-9047-d0a810f7be2d" + ], + "x-ms-routing-request-id": [ + "CENTRALUSEUAP:20210418T164304Z:3e490214-22c9-41e3-9047-d0a810f7be2d" + ], + "Date": [ + "Sun, 18 Apr 2021 16:43:03 GMT" + ], + "Content-Length": [ + "2891" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe\",\r\n \"name\": \"8d6cee63-f194-4034-9b37-abb108775dbe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e1264c3b-b6d9-444d-adf3-09eafcaf3411 ActivityId: 59e1083e-fd05-44b6-b5fb-033c3bb3c39c\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T16:41:41.672232Z\",\r\n \"endTime\": \"2021-04-18T16:41:41.7722386Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T16:41:41.7722386Z\",\r\n \"endTime\": \"2021-04-18T16:41:41.8022413Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T16:41:41.8022413Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:41:41.459126Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"69e27928-6c36-511a-b72b-11af29f2fccf\",\r\n \"targetObjectName\": \"TestA2APolicy1104\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"46b20966-150c-5690-b74d-d859c485c331\",\r\n \"primaryCloudName\": \"A2APrimaryContainer104\",\r\n \"recoveryCloudId\": \"1f6693e6-5468-559e-8690-08c05b29f49e\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer104\",\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvOGQ2Y2VlNjMtZjE5NC00MDM0LTliMzctYWJiMTA4Nzc1ZGJlP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "707204b9-d531-4120-a1a4-abc9327e77e6" + ], + "Accept-Language": [ + "en-US" + ], + "Agent-Authentication": [ + "{\"NotBeforeTimestamp\":\"\\/Date(1618760604334)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365404334)\\/\",\"ClientRequestId\":\"bb1b29ac-c4fb-442e-b9b0-35c0fdf81764-2021-04-18 16:43:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"jxYx0SAYbXdjWxQrOsrFefV3kwniieGktVnLXE8l9/8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + ], + "User-Agent": [ + "FxVersion/4.6.29916.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11832" + ], + "Server": [ + "Microsoft-IIS/10.0", + "Kestrel" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-client-request-id": [ + "707204b9-d531-4120-a1a4-abc9327e77e6" ], "x-ms-correlation-request-id": [ - "f41e0029-04fd-4a7f-9b46-cd4ef17288bc" + "54fb8c5d-48a5-4e25-88d7-b8756366fcbd" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235705Z:f41e0029-04fd-4a7f-9b46-cd4ef17288bc" + "CENTRALUSEUAP:20210418T164324Z:54fb8c5d-48a5-4e25-88d7-b8756366fcbd" ], "Date": [ - "Sat, 18 Jan 2020 23:57:05 GMT" + "Sun, 18 Apr 2021 16:43:23 GMT" ], "Content-Length": [ - "2952" + "2937" ], "Content-Type": [ "application/json" @@ -5863,29 +5617,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/b9b3bb01-f927-4926-8c48-84cbbc67cc49\",\r\n \"name\": \"b9b3bb01-f927-4926-8c48-84cbbc67cc49\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"d0cd7d26-7b5c-46d0-b51b-9629a637d902-2020-01-18 23:55:41Z-Ps ActivityId: 8ff1da91-b40a-419a-a44f-3a94ad30aaa2\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-18T23:55:42.0630493Z\",\r\n \"endTime\": \"2020-01-18T23:55:42.1880519Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2020-01-18T23:55:42.1880519Z\",\r\n \"endTime\": \"2020-01-18T23:56:50.0977192Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2020-01-18T23:56:50.0977192Z\",\r\n \"endTime\": \"2020-01-18T23:56:50.175822Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"2020-01-18T23:56:50.175822Z\",\r\n \"endTime\": \"2020-01-18T23:56:50.175822Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:55:41.5730701Z\",\r\n \"endTime\": \"2020-01-18T23:56:50Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"3f0b21e6-43c4-509d-ab5b-b4275342c38e\",\r\n \"targetObjectName\": \"TestA2APolicy1104\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"b502bb19-00ab-5c2c-99a9-a5c0cec4e67b\",\r\n \"primaryCloudName\": \"A2APrimaryContainer104\",\r\n \"recoveryCloudId\": \"8f0f4420-f14d-5455-a84e-0b294659408f\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer104\",\r\n \"primaryVmmId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/8d6cee63-f194-4034-9b37-abb108775dbe\",\r\n \"name\": \"8d6cee63-f194-4034-9b37-abb108775dbe\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"e1264c3b-b6d9-444d-adf3-09eafcaf3411 ActivityId: 59e1083e-fd05-44b6-b5fb-033c3bb3c39c\",\r\n \"scenarioName\": \"AssociateProtectionProfile\",\r\n \"friendlyName\": \"Associate replication policy\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"CloudPairingWfPreflightChecksTask\",\r\n \"name\": \"CloudPairingPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T16:41:41.672232Z\",\r\n \"endTime\": \"2021-04-18T16:41:41.7722386Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Check protection prerequisites\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareSiteTask\",\r\n \"name\": \"CloudPairingPrepareSite\",\r\n \"startTime\": \"2021-04-18T16:41:41.7722386Z\",\r\n \"endTime\": \"2021-04-18T16:43:08.5249753Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare the server\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPrepareCloudForPairingTask\",\r\n \"name\": \"CloudPairingPrepareCloud\",\r\n \"startTime\": \"2021-04-18T16:43:08.5249753Z\",\r\n \"endTime\": \"2021-04-18T16:43:08.6199795Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prepare for configuring protection\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CloudPairingWfPairCloudsTask\",\r\n \"name\": \"CloudPairingPairClouds\",\r\n \"startTime\": \"2021-04-18T16:43:08.6199795Z\",\r\n \"endTime\": \"2021-04-18T16:43:08.6199795Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Configure the protection settings\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:41:41.459126Z\",\r\n \"endTime\": \"2021-04-18T16:43:08Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"69e27928-6c36-511a-b72b-11af29f2fccf\",\r\n \"targetObjectName\": \"TestA2APolicy1104\",\r\n \"targetInstanceType\": \"ProtectionProfile\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryCloudId\": \"46b20966-150c-5690-b74d-d859c485c331\",\r\n \"primaryCloudName\": \"A2APrimaryContainer104\",\r\n \"recoveryCloudId\": \"1f6693e6-5468-559e-8690-08c05b29f49e\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer104\",\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104/replicationProtectionContainerMappings/A2APCM104?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDQvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUENNMTA0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104/replicationProtectionContainerMappings/A2APCM104?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDQvcmVwbGljYXRpb25Qcm90ZWN0aW9uQ29udGFpbmVyTWFwcGluZ3MvQTJBUENNMTA0P2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "37ca28b3-6b5f-483a-ae15-67753ccc5319-2020-01-18 23:57:05Z-Ps" + "c7874be0-21c7-4c0b-b399-b6c5e376da84" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388225725)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579993025725)\\/\",\"ClientRequestId\":\"37ca28b3-6b5f-483a-ae15-67753ccc5319-2020-01-18 23:57:05Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"1keMkZIhosE8Bewn2V+v2lErcAdG82j14/tzkDuCYbI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760604713)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365404713)\\/\",\"ClientRequestId\":\"df6bdbfc-35c6-4b49-8558-5758e78b4f8f-2021-04-18 16:43:24Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"5bANC8q2CJ05FGbPYOgpI64XXTPFO8PBNshRu/lVJD8=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -5896,38 +5650,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11831" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "37ca28b3-6b5f-483a-ae15-67753ccc5319-2020-01-18 23:57:05Z-Ps 1/18/2020 11:57:07 PM" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "c7874be0-21c7-4c0b-b399-b6c5e376da84 4/18/2021 4:43:24 PM" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "37ca28b3-6b5f-483a-ae15-67753ccc5319-2020-01-18 23:57:05Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c7874be0-21c7-4c0b-b399-b6c5e376da84" ], "x-ms-correlation-request-id": [ - "f7fac4b4-ad6c-4522-97dc-96b5eb6baec4" + "b047f01f-59dc-405a-820f-5e8f3a30e64a" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235707Z:f7fac4b4-ad6c-4522-97dc-96b5eb6baec4" + "CENTRALUSEUAP:20210418T164324Z:b047f01f-59dc-405a-820f-5e8f3a30e64a" ], "Date": [ - "Sat, 18 Jan 2020 23:57:06 GMT" + "Sun, 18 Apr 2021 16:43:24 GMT" ], "Content-Length": [ - "1424" + "1432" ], "Content-Type": [ "application/json" @@ -5936,29 +5687,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104/replicationProtectionContainerMappings/A2APCM104\",\r\n \"name\": \"A2APCM104\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104/replicationProtectionContainers/A2ARecoveryContainer104\",\r\n \"targetProtectionContainerFriendlyName\": \"A2ARecoveryContainer104\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"agentAutoUpdateStatus\": \"Disabled\",\r\n \"automationAccountArmId\": null,\r\n \"scheduleName\": null,\r\n \"jobScheduleName\": null\r\n },\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationPolicies/TestA2APolicy1104\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"A2APrimaryContainer104\",\r\n \"sourceFabricFriendlyName\": \"West US\",\r\n \"targetFabricFriendlyName\": \"East US\",\r\n \"policyFriendlyName\": \"TestA2APolicy1104\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104/replicationProtectionContainerMappings/A2APCM104\",\r\n \"name\": \"A2APCM104\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings\",\r\n \"properties\": {\r\n \"targetProtectionContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104/replicationProtectionContainers/A2ARecoveryContainer104\",\r\n \"targetProtectionContainerFriendlyName\": \"A2ARecoveryContainer104\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"agentAutoUpdateStatus\": \"Disabled\",\r\n \"automationAccountArmId\": null,\r\n \"scheduleName\": null,\r\n \"jobScheduleName\": null\r\n },\r\n \"health\": \"Normal\",\r\n \"healthErrorDetails\": [],\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationPolicies/TestA2APolicy1104\",\r\n \"state\": \"Paired\",\r\n \"sourceProtectionContainerFriendlyName\": \"A2APrimaryContainer104\",\r\n \"sourceFabricFriendlyName\": \"East US\",\r\n \"targetFabricFriendlyName\": \"West Central US\",\r\n \"policyFriendlyName\": \"TestA2APolicy1104\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ANetworkMapping104?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNC9yZXBsaWNhdGlvbk5ldHdvcmtzL2F6dXJlTmV0d29yay9yZXBsaWNhdGlvbk5ldHdvcmtNYXBwaW5ncy9BMkFOZXR3b3JrTWFwcGluZzEwND9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ANetworkMapping104?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNC9yZXBsaWNhdGlvbk5ldHdvcmtzL2F6dXJlTmV0d29yay9yZXBsaWNhdGlvbk5ldHdvcmtNYXBwaW5ncy9BMkFOZXR3b3JrTWFwcGluZzEwND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"recoveryFabricName\": \"a2aRecoveryFabric104\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104/providers/Microsoft.Network/virtualNetworks/A2ARecoveryNetwork104\",\r\n \"fabricSpecificDetails\": {\r\n \"instanceType\": \"AzureToAzure\",\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Network/virtualNetworks/a2aVM104\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b98653f6-8007-4f02-a182-13a1df144adf-2020-01-18 23:57:07Z-Ps" + "474ae976-4686-44ba-ab19-37102ed2fefe" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388227243)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579993027243)\\/\",\"ClientRequestId\":\"b98653f6-8007-4f02-a182-13a1df144adf-2020-01-18 23:57:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"LNBGahG0C7g1/Ri4QOjQrdETAB3xyDsfqDWMoLbtvwQ=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760605159)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365405159)\\/\",\"ClientRequestId\":\"32963b11-4043-4c7c-af28-a3ec7d7b3228-2021-04-18 16:43:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"ML9QgYs8x5Lr619jaox4TpXxGhdul0IdhFfknYYtygA=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -5975,40 +5726,37 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ANetworkMapping104/operationresults/985b3f49-c546-4cd4-a340-a4c22504c814?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationNetworks/azureNetwork/replicationNetworkMappings/A2ANetworkMapping104/operationresults/382f7ba4-0cd5-44f9-a5be-26791720a9f3?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "b98653f6-8007-4f02-a182-13a1df144adf-2020-01-18 23:57:07Z-Ps 1/18/2020 11:57:07 PM" + "474ae976-4686-44ba-ab19-37102ed2fefe 4/18/2021 4:43:25 PM" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationOperationStatus/985b3f49-c546-4cd4-a340-a4c22504c814?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationOperationStatus/382f7ba4-0cd5-44f9-a5be-26791720a9f3?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "b98653f6-8007-4f02-a182-13a1df144adf-2020-01-18 23:57:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "474ae976-4686-44ba-ab19-37102ed2fefe" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1187" ], "x-ms-correlation-request-id": [ - "1e484c85-5949-463c-8eb3-645ec3f30a99" + "5e40d6f5-5400-448e-b014-f2c485c3605f" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235707Z:1e484c85-5949-463c-8eb3-645ec3f30a99" + "CENTRALUSEUAP:20210418T164325Z:5e40d6f5-5400-448e-b014-f2c485c3605f" ], "Date": [ - "Sat, 18 Jan 2020 23:57:07 GMT" + "Sun, 18 Apr 2021 16:43:24 GMT" ], "Expires": [ "-1" @@ -6021,25 +5769,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/985b3f49-c546-4cd4-a340-a4c22504c814?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvOTg1YjNmNDktYzU0Ni00Y2Q0LWEzNDAtYTRjMjI1MDRjODE0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/382f7ba4-0cd5-44f9-a5be-26791720a9f3?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvMzgyZjdiYTQtMGNkNS00NGY5LWE1YmUtMjY3OTE3MjBhOWYzP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d20cceb8-7921-4e68-85b4-f904f5d065ad-2020-01-18 23:57:07Z-Ps" + "474ae976-4686-44ba-ab19-37102ed2fefe" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388227912)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579993027912)\\/\",\"ClientRequestId\":\"d20cceb8-7921-4e68-85b4-f904f5d065ad-2020-01-18 23:57:07Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"P/oVWwUID3xhITGPlxL+54eg8G2doJM5PwNiB9dUvYM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760605711)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365405711)\\/\",\"ClientRequestId\":\"1368b1fc-ae0d-45f2-9eb3-3d6f301198c4-2021-04-18 16:43:25Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Gt3THc6P8A1aN0knWun81pRDhPx5WqmT/6SMhbdEM2U=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6050,38 +5798,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11830" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/985b3f49-c546-4cd4-a340-a4c22504c814" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/382f7ba4-0cd5-44f9-a5be-26791720a9f3" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "d20cceb8-7921-4e68-85b4-f904f5d065ad-2020-01-18 23:57:07Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "474ae976-4686-44ba-ab19-37102ed2fefe" ], "x-ms-correlation-request-id": [ - "ca9fae6d-0a18-45ce-9bd7-f185a2682146" + "fcb07ca7-0156-40ad-b377-f4b01924fc84" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235708Z:ca9fae6d-0a18-45ce-9bd7-f185a2682146" + "CENTRALUSEUAP:20210418T164325Z:fcb07ca7-0156-40ad-b377-f4b01924fc84" ], "Date": [ - "Sat, 18 Jan 2020 23:57:07 GMT" + "Sun, 18 Apr 2021 16:43:25 GMT" ], "Content-Length": [ - "2196" + "2179" ], "Content-Type": [ "application/json" @@ -6090,29 +5835,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/985b3f49-c546-4cd4-a340-a4c22504c814\",\r\n \"name\": \"985b3f49-c546-4cd4-a340-a4c22504c814\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b98653f6-8007-4f02-a182-13a1df144adf-2020-01-18 23:57:07Z-Ps ActivityId: 1e484c85-5949-463c-8eb3-645ec3f30a99\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"fbbd4b8e-b972-4fde-b6fc-d0b01d59a552\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2020-01-18T23:57:07.8643271Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"be63722b-4b1c-469d-9173-bd2603655251\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:57:07.621312Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2avm104\",\r\n \"targetObjectName\": \"a2avm104\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm104/providers/microsoft.network/virtualnetworks/a2avm104\",\r\n \"primaryNetworkName\": \"a2avm104\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg104/providers/microsoft.network/virtualnetworks/a2arecoverynetwork104\",\r\n \"primaryVmmId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/382f7ba4-0cd5-44f9-a5be-26791720a9f3\",\r\n \"name\": \"382f7ba4-0cd5-44f9-a5be-26791720a9f3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"474ae976-4686-44ba-ab19-37102ed2fefe ActivityId: 5e40d6f5-5400-448e-b014-f2c485c3605f\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"8905b2ce-f942-4a9f-a0b5-7173af246346\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-18T16:43:25.74463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"78679da6-978d-4f15-a49a-23b5ffe67f4c\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:43:25.4622447Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2avm104\",\r\n \"targetObjectName\": \"a2avm104\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm104/providers/microsoft.network/virtualnetworks/a2avm104\",\r\n \"primaryNetworkName\": \"a2avm104\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg104/providers/microsoft.network/virtualnetworks/a2arecoverynetwork104\",\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/985b3f49-c546-4cd4-a340-a4c22504c814?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvOTg1YjNmNDktYzU0Ni00Y2Q0LWEzNDAtYTRjMjI1MDRjODE0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/382f7ba4-0cd5-44f9-a5be-26791720a9f3?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvMzgyZjdiYTQtMGNkNS00NGY5LWE1YmUtMjY3OTE3MjBhOWYzP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8adf86ec-fcee-4c82-a40c-c6c1d25b9251-2020-01-18 23:57:08Z-Ps" + "da7653fa-c57b-4405-b7d8-3e05d986003e" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388228303)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579993028303)\\/\",\"ClientRequestId\":\"8adf86ec-fcee-4c82-a40c-c6c1d25b9251-2020-01-18 23:57:08Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"Rnjq4w+94T5AKVZpmVM/MJ5JnEqYf8x+NlXa6qA22h4=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760606074)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365406074)\\/\",\"ClientRequestId\":\"10769fb6-a0e8-4576-97ef-cc94831f10d6-2021-04-18 16:43:26Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"itCc/buOpSfkdpNVa0qvN0Zb3ghFtfiv8RhsrhC47+o=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6123,38 +5868,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" + "11829" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/985b3f49-c546-4cd4-a340-a4c22504c814" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/382f7ba4-0cd5-44f9-a5be-26791720a9f3" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "8adf86ec-fcee-4c82-a40c-c6c1d25b9251-2020-01-18 23:57:08Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "da7653fa-c57b-4405-b7d8-3e05d986003e" ], "x-ms-correlation-request-id": [ - "e521f307-f54d-4e5b-a4e4-ea8fde8bb134" + "bba6f188-756e-4d6e-90c5-0f34c6c37c94" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235708Z:e521f307-f54d-4e5b-a4e4-ea8fde8bb134" + "CENTRALUSEUAP:20210418T164326Z:bba6f188-756e-4d6e-90c5-0f34c6c37c94" ], "Date": [ - "Sat, 18 Jan 2020 23:57:07 GMT" + "Sun, 18 Apr 2021 16:43:25 GMT" ], "Content-Length": [ - "2196" + "2179" ], "Content-Type": [ "application/json" @@ -6163,29 +5905,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/985b3f49-c546-4cd4-a340-a4c22504c814\",\r\n \"name\": \"985b3f49-c546-4cd4-a340-a4c22504c814\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b98653f6-8007-4f02-a182-13a1df144adf-2020-01-18 23:57:07Z-Ps ActivityId: 1e484c85-5949-463c-8eb3-645ec3f30a99\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"fbbd4b8e-b972-4fde-b6fc-d0b01d59a552\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2020-01-18T23:57:07.8643271Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"be63722b-4b1c-469d-9173-bd2603655251\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:57:07.621312Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2avm104\",\r\n \"targetObjectName\": \"a2avm104\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm104/providers/microsoft.network/virtualnetworks/a2avm104\",\r\n \"primaryNetworkName\": \"a2avm104\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg104/providers/microsoft.network/virtualnetworks/a2arecoverynetwork104\",\r\n \"primaryVmmId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/382f7ba4-0cd5-44f9-a5be-26791720a9f3\",\r\n \"name\": \"382f7ba4-0cd5-44f9-a5be-26791720a9f3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"474ae976-4686-44ba-ab19-37102ed2fefe ActivityId: 5e40d6f5-5400-448e-b014-f2c485c3605f\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"8905b2ce-f942-4a9f-a0b5-7173af246346\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-18T16:43:25.74463Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"78679da6-978d-4f15-a49a-23b5ffe67f4c\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:43:25.4622447Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"a2avm104\",\r\n \"targetObjectName\": \"a2avm104\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm104/providers/microsoft.network/virtualnetworks/a2avm104\",\r\n \"primaryNetworkName\": \"a2avm104\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg104/providers/microsoft.network/virtualnetworks/a2arecoverynetwork104\",\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/985b3f49-c546-4cd4-a340-a4c22504c814?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvOTg1YjNmNDktYzU0Ni00Y2Q0LWEzNDAtYTRjMjI1MDRjODE0P2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/382f7ba4-0cd5-44f9-a5be-26791720a9f3?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvMzgyZjdiYTQtMGNkNS00NGY5LWE1YmUtMjY3OTE3MjBhOWYzP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fb1adce-e627-4732-a542-371ac3447bbd-2020-01-18 23:57:28Z-Ps" + "c7bce793-3e05-4e33-9ac0-c3cfd8208c2c" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388248798)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579993048798)\\/\",\"ClientRequestId\":\"8fb1adce-e627-4732-a542-371ac3447bbd-2020-01-18 23:57:28Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"cbC6B60iTAtja/NxSpnxPotO5UoKXyv1eG9TEArWe7Y=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760626454)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365426454)\\/\",\"ClientRequestId\":\"c50ce227-db54-4df4-b84c-21a7e4761427-2021-04-18 16:43:46Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"WIeuiUJmJ7sdv2OAR07X3RhBodDV74GFewv+9gc9rbI=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6196,38 +5938,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11828" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/985b3f49-c546-4cd4-a340-a4c22504c814" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/382f7ba4-0cd5-44f9-a5be-26791720a9f3" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "8fb1adce-e627-4732-a542-371ac3447bbd-2020-01-18 23:57:28Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "c7bce793-3e05-4e33-9ac0-c3cfd8208c2c" ], "x-ms-correlation-request-id": [ - "7d13dd10-bef2-437b-a239-f85b48aba1f3" + "87d9d4c4-021f-4ebb-b838-4916f2c9d2b5" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235729Z:7d13dd10-bef2-437b-a239-f85b48aba1f3" + "CENTRALUSEUAP:20210418T164346Z:87d9d4c4-021f-4ebb-b838-4916f2c9d2b5" ], "Date": [ - "Sat, 18 Jan 2020 23:57:28 GMT" + "Sun, 18 Apr 2021 16:43:46 GMT" ], "Content-Length": [ - "2218" + "2201" ], "Content-Type": [ "application/json" @@ -6236,29 +5975,29 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/985b3f49-c546-4cd4-a340-a4c22504c814\",\r\n \"name\": \"985b3f49-c546-4cd4-a340-a4c22504c814\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"b98653f6-8007-4f02-a182-13a1df144adf-2020-01-18 23:57:07Z-Ps ActivityId: 1e484c85-5949-463c-8eb3-645ec3f30a99\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"fbbd4b8e-b972-4fde-b6fc-d0b01d59a552\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2020-01-18T23:57:07.8643271Z\",\r\n \"endTime\": \"2020-01-18T23:57:09.2579167Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"be63722b-4b1c-469d-9173-bd2603655251\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:57:07.621312Z\",\r\n \"endTime\": \"2020-01-18T23:57:09Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm104\",\r\n \"targetObjectName\": \"a2avm104\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm104/providers/microsoft.network/virtualnetworks/a2avm104\",\r\n \"primaryNetworkName\": \"a2avm104\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg104/providers/microsoft.network/virtualnetworks/a2arecoverynetwork104\",\r\n \"primaryVmmId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/382f7ba4-0cd5-44f9-a5be-26791720a9f3\",\r\n \"name\": \"382f7ba4-0cd5-44f9-a5be-26791720a9f3\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"474ae976-4686-44ba-ab19-37102ed2fefe ActivityId: 5e40d6f5-5400-448e-b014-f2c485c3605f\",\r\n \"scenarioName\": \"NetworkPairing\",\r\n \"friendlyName\": \"Map Networks\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"8905b2ce-f942-4a9f-a0b5-7173af246346\",\r\n \"name\": \"ModifyVMNetworksPairingStatusTask\",\r\n \"startTime\": \"2021-04-18T16:43:25.74463Z\",\r\n \"endTime\": \"2021-04-18T16:43:27.1813928Z\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Map network\",\r\n \"state\": \"Succeeded\",\r\n \"stateDescription\": \"Completed\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"78679da6-978d-4f15-a49a-23b5ffe67f4c\",\r\n \"name\": \"VMNetworksUpdateVMNicsTask\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Attach network (0)\",\r\n \"state\": \"Other\",\r\n \"stateDescription\": \"Skipped\",\r\n \"taskType\": \"GroupTaskDetails\",\r\n \"customDetails\": null,\r\n \"groupTaskCustomDetails\": {\r\n \"instanceType\": \"GroupTaskDetails\",\r\n \"childTasks\": []\r\n },\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:43:25.4622447Z\",\r\n \"endTime\": \"2021-04-18T16:43:27Z\",\r\n \"allowedActions\": [],\r\n \"targetObjectId\": \"a2avm104\",\r\n \"targetObjectName\": \"a2avm104\",\r\n \"targetInstanceType\": \"Network\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/a2avm104/providers/microsoft.network/virtualnetworks/a2avm104\",\r\n \"primaryNetworkName\": \"a2avm104\",\r\n \"recoveryNetworkId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourcegroups/recrg104/providers/microsoft.network/virtualnetworks/a2arecoverynetwork104\",\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104/replicationProtectedItems/a2aVM104?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDQvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwND9hcGktdmVyc2lvbj0yMDE4LTA3LTEw", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104/replicationProtectedItems/a2aVM104?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkZhYnJpY3MvYTJhUHJpbWFyeUZhYnJpYzEwNC9yZXBsaWNhdGlvblByb3RlY3Rpb25Db250YWluZXJzL0EyQVByaW1hcnlDb250YWluZXIxMDQvcmVwbGljYXRpb25Qcm90ZWN0ZWRJdGVtcy9hMmFWTTEwND9hcGktdmVyc2lvbj0yMDIxLTAyLTEw", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationPolicies/TestA2APolicy1104\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/virtualMachines/a2aVM104\",\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104/replicationProtectionContainers/A2ARecoveryContainer104\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104\",\r\n \"vmDisks\": [],\r\n \"vmManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/disks/a2aVM104_OsDisk_1_40571b9bff534e03b979b7758a5b3610\",\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Storage/storageAccounts/cache104\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/cmkDELwrg/providers/Microsoft.Compute/diskEncryptionSets/cmkdiskSe1dEL2\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"policyId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationPolicies/TestA2APolicy1104\",\r\n \"providerSpecificDetails\": {\r\n \"instanceType\": \"A2A\",\r\n \"fabricObjectId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/virtualMachines/a2aVM104\",\r\n \"recoveryContainerId\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aRecoveryFabric104/replicationProtectionContainers/A2ARecoveryContainer104\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104\",\r\n \"vmDisks\": [],\r\n \"vmManagedDisks\": [\r\n {\r\n \"diskId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Compute/disks/a2aVM104_OsDisk_1_2be099117e8c4f09a7b15577f0337655\",\r\n \"primaryStagingAzureStorageAccountId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/a2aVM104/providers/Microsoft.Storage/storageAccounts/cache104\",\r\n \"recoveryResourceGroupId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/recRG104\",\r\n \"recoveryReplicaDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryTargetDiskAccountType\": \"Premium_LRS\",\r\n \"recoveryDiskEncryptionSetId\": \"/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/cmkDELwrg/providers/Microsoft.Compute/diskEncryptionSets/cmkdiskSe1dEL2\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "dc15b097-0d0e-4892-a34b-55065e04e2fd-2020-01-18 23:57:29Z-Ps" + "a039c31b-7d00-41fe-afcc-261944918c2a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388249586)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579993049586)\\/\",\"ClientRequestId\":\"dc15b097-0d0e-4892-a34b-55065e04e2fd-2020-01-18 23:57:29Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"tWiib3nQgloyDC74+PimMZCWdIhVyEKjo2s724ztXGM=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760627229)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365427229)\\/\",\"ClientRequestId\":\"8bf5c51b-8970-4167-8a2d-ea196f838c05-2021-04-18 16:43:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"sVcqe/ePA8gfTzi1+8d2I50O4p0iHODo6iXboZfoKx0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -6275,41 +6014,38 @@ "no-cache" ], "Location": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104/replicationProtectedItems/a2aVM104/operationresults/852dfcae-9342-413f-8070-651c03fc628a?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationFabrics/a2aPrimaryFabric104/replicationProtectionContainers/A2APrimaryContainer104/replicationProtectedItems/a2aVM104/operationresults/71915b56-ba25-4c61-85bf-de81036f1f2d?api-version=2021-02-10" ], "Retry-After": [ "30" ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/852dfcae-9342-413f-8070-651c03fc628a", - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/852dfcae-9342-413f-8070-651c03fc628a" + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/71915b56-ba25-4c61-85bf-de81036f1f2d", + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/71915b56-ba25-4c61-85bf-de81036f1f2d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationOperationStatus/852dfcae-9342-413f-8070-651c03fc628a?api-version=2018-07-10" + "https://centraluseuap.management.azure.com/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationOperationStatus/71915b56-ba25-4c61-85bf-de81036f1f2d?api-version=2021-02-10" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "dc15b097-0d0e-4892-a34b-55065e04e2fd-2020-01-18 23:57:29Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Powered-By": [ - "ASP.NET" + "a039c31b-7d00-41fe-afcc-261944918c2a" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1186" ], "x-ms-correlation-request-id": [ - "def998b3-50b4-4cbe-abf3-8df7d0627015" + "580731fe-effb-4ca2-90ac-6b3cf9a5b531" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235730Z:def998b3-50b4-4cbe-abf3-8df7d0627015" + "CENTRALUSEUAP:20210418T164347Z:580731fe-effb-4ca2-90ac-6b3cf9a5b531" ], "Date": [ - "Sat, 18 Jan 2020 23:57:29 GMT" + "Sun, 18 Apr 2021 16:43:47 GMT" ], "Expires": [ "-1" @@ -6322,25 +6058,25 @@ "StatusCode": 202 }, { - "RequestUri": "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/852dfcae-9342-413f-8070-651c03fc628a?api-version=2018-07-10", - "EncodedRequestUri": "L1N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvODUyZGZjYWUtOTM0Mi00MTNmLTgwNzAtNjUxYzAzZmM2MjhhP2FwaS12ZXJzaW9uPTIwMTgtMDctMTA=", + "RequestUri": "/subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/71915b56-ba25-4c61-85bf-de81036f1f2d?api-version=2021-02-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTA5MDk5YjItOWQyYy00NjM2LWI0M2UtYmQ1Y2FmYjZiZTY5L3Jlc291cmNlR3JvdXBzL0EyQVBvd2Vyc2hlbGxUZXN0UmcxMDQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZWNvdmVyeVNlcnZpY2VzL3ZhdWx0cy9BMkFQb3dlcnNoZWxsVGVzdDEwNC9yZXBsaWNhdGlvbkpvYnMvNzE5MTViNTYtYmEyNS00YzYxLTg1YmYtZGU4MTAzNmYxZjJkP2FwaS12ZXJzaW9uPTIwMjEtMDItMTA=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e64e42f-b3ba-432c-8751-944fac5681b5-2020-01-18 23:57:30Z-Ps" + "a039c31b-7d00-41fe-afcc-261944918c2a" ], "Accept-Language": [ "en-US" ], "Agent-Authentication": [ - "{\"NotBeforeTimestamp\":\"\\/Date(1579388250430)\\/\",\"NotAfterTimestamp\":\"\\/Date(1579993050430)\\/\",\"ClientRequestId\":\"2e64e42f-b3ba-432c-8751-944fac5681b5-2020-01-18 23:57:30Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"h30WIEaBb2LGvAfV+MRutG43VA24r1rmskoUNGDPWyo=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" + "{\"NotBeforeTimestamp\":\"\\/Date(1618760627902)\\/\",\"NotAfterTimestamp\":\"\\/Date(1619365427902)\\/\",\"ClientRequestId\":\"64b2352f-3af2-4282-9556-25d07b939947-2021-04-18 16:43:47Z-Ps\",\"HashFunction\":\"HMACSHA256\",\"Hmac\":\"yZQUl97aemJytyjtCv58IpNFulvve7Glt7LZwDQH/V0=\",\"Version\":{\"Major\":1,\"Minor\":2,\"Build\":-1,\"Revision\":-1,\"MajorRevision\":-1,\"MinorRevision\":-1},\"PropertyBag\":{}}" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29916.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.0.5.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.RecoveryServices.SiteRecovery.SiteRecoveryManagementClient/2.1.3.0" ] }, "ResponseHeaders": { @@ -6351,38 +6087,35 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" + "11826" ], "Server": [ "Microsoft-IIS/10.0", "Kestrel" ], - "x-ms-request-id": [ - "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/852dfcae-9342-413f-8070-651c03fc628a" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-request-id": [ + "/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/71915b56-ba25-4c61-85bf-de81036f1f2d" ], "X-Content-Type-Options": [ "nosniff" ], "x-ms-client-request-id": [ - "2e64e42f-b3ba-432c-8751-944fac5681b5-2020-01-18 23:57:30Z-Ps" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "a039c31b-7d00-41fe-afcc-261944918c2a" ], "x-ms-correlation-request-id": [ - "d543e44a-fa5c-46bf-a311-b3235ac7a34b" + "4bcaeb9c-9c11-4861-bbe7-175a5b8e0518" ], "x-ms-routing-request-id": [ - "SOUTHINDIA:20200118T235730Z:d543e44a-fa5c-46bf-a311-b3235ac7a34b" + "CENTRALUSEUAP:20210418T164348Z:4bcaeb9c-9c11-4861-bbe7-175a5b8e0518" ], "Date": [ - "Sat, 18 Jan 2020 23:57:30 GMT" + "Sun, 18 Apr 2021 16:43:47 GMT" ], "Content-Length": [ - "3378" + "3363" ], "Content-Type": [ "application/json" @@ -6391,13 +6124,13 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/852dfcae-9342-413f-8070-651c03fc628a\",\r\n \"name\": \"852dfcae-9342-413f-8070-651c03fc628a\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"dc15b097-0d0e-4892-a34b-55065e04e2fd-2020-01-18 23:57:29Z-Ps ActivityId: def998b3-50b4-4cbe-abf3-8df7d0627015\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2020-01-18T23:57:30.3003747Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2020-01-18T23:57:30.087838Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"654e64ac-906e-57a9-a3d7-cfd4868a88ff\",\r\n \"targetObjectName\": \"a2avm104\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"654e64ac-906e-57a9-a3d7-cfd4868a88ff\",\r\n \"primaryVmName\": \"a2avm104\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm104\",\r\n \"protectionProfileId\": \"3f0b21e6-43c4-509d-ab5b-b4275342c38e\",\r\n \"primaryCloudId\": \"b502bb19-00ab-5c2c-99a9-a5c0cec4e67b\",\r\n \"primaryCloudName\": \"A2APrimaryContainer104\",\r\n \"recoveryCloudId\": \"8f0f4420-f14d-5455-a84e-0b294659408f\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer104\",\r\n \"primaryVmmId\": \"4603bbe0-b199-58df-bb50-b16c9e3bf6de\",\r\n \"primaryVmmName\": \"West US\",\r\n \"recoveryVmmId\": \"810c90f0-0965-5aae-8570-d37e4942c4e9\",\r\n \"recoveryVmmName\": \"East US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/Subscriptions/509099b2-9d2c-4636-b43e-bd5cafb6be69/resourceGroups/A2APowershellTestRg104/providers/Microsoft.RecoveryServices/vaults/A2APowershellTest104/replicationJobs/71915b56-ba25-4c61-85bf-de81036f1f2d\",\r\n \"name\": \"71915b56-ba25-4c61-85bf-de81036f1f2d\",\r\n \"type\": \"Microsoft.RecoveryServices/vaults/replicationJobs\",\r\n \"properties\": {\r\n \"activityId\": \"a039c31b-7d00-41fe-afcc-261944918c2a ActivityId: 580731fe-effb-4ca2-90ac-6b3cf9a5b531\",\r\n \"scenarioName\": \"EnableDr\",\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"tasks\": [\r\n {\r\n \"taskId\": \"EnableProtectionPreflightChecksTask\",\r\n \"name\": \"EnableProtectionPrerequisitesCheck\",\r\n \"startTime\": \"2021-04-18T16:43:47.9783823Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Prerequisites check for enabling protection\",\r\n \"state\": \"InProgress\",\r\n \"stateDescription\": \"InProgress\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"CreateProtectionTargetTask\",\r\n \"name\": \"CreateProtectionTarget\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Installing Mobility Service and preparing target\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"EnableProtectionTask\",\r\n \"name\": \"EnableProtection\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Enable replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"StartInitialReplicationTask\",\r\n \"name\": \"VmStartInitialReplication\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Starting initial replication\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n },\r\n {\r\n \"taskId\": \"UpdateDraStateTask\",\r\n \"name\": \"UpdateDraState\",\r\n \"startTime\": \"0001-01-01T00:00:00\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n \"allowedActions\": [],\r\n \"friendlyName\": \"Updating the provider states\",\r\n \"state\": \"NotStarted\",\r\n \"stateDescription\": \"NotStarted\",\r\n \"taskType\": \"TaskDetails\",\r\n \"customDetails\": {\r\n \"instanceType\": \"TaskDetails\"\r\n },\r\n \"groupTaskCustomDetails\": null,\r\n \"errors\": []\r\n }\r\n ],\r\n \"errors\": [],\r\n \"startTime\": \"2021-04-18T16:43:47.5998738Z\",\r\n \"allowedActions\": [\r\n \"Cancel\"\r\n ],\r\n \"targetObjectId\": \"654e64ac-906e-57a9-a3d7-cfd4868a88ff\",\r\n \"targetObjectName\": \"a2avm104\",\r\n \"targetInstanceType\": \"ProtectionEntity\",\r\n \"customDetails\": {\r\n \"instanceType\": \"AsrJobDetails\",\r\n \"affectedObjectDetails\": {\r\n \"primaryVmId\": \"654e64ac-906e-57a9-a3d7-cfd4868a88ff\",\r\n \"primaryVmName\": \"a2avm104\",\r\n \"recoveryVmId\": \"\",\r\n \"recoveryVmName\": \"a2avm104\",\r\n \"protectionProfileId\": \"69e27928-6c36-511a-b72b-11af29f2fccf\",\r\n \"primaryCloudId\": \"46b20966-150c-5690-b74d-d859c485c331\",\r\n \"primaryCloudName\": \"A2APrimaryContainer104\",\r\n \"recoveryCloudId\": \"1f6693e6-5468-559e-8690-08c05b29f49e\",\r\n \"recoveryCloudName\": \"A2ARecoveryContainer104\",\r\n \"primaryVmmId\": \"d3397cf2-feeb-5121-93f0-f05784534e33\",\r\n \"primaryVmmName\": \"East US\",\r\n \"recoveryVmmId\": \"b0588266-d83f-59c2-bcbb-b47eec594933\",\r\n \"recoveryVmmName\": \"West Central US\",\r\n \"primaryFabricProviderId\": \"Azure\",\r\n \"recoveryFabricProviderId\": \"Azure\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 } ], "Names": {}, "Variables": { "SubscriptionId": "509099b2-9d2c-4636-b43e-bd5cafb6be69", - "NamingSuffix": "a838f095-dc46-436d-aa09-e2a3cd5f6f05" + "NamingSuffix": "c43c0cd1-87a1-4bb0-96af-5cae17e0abce" } } \ No newline at end of file